
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background: radial-gradient(circle, #222 0%, #000 70%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone Frame */

.phone {
    width: 390px;position: relative;
    max-width: 95%;
    background: #1b1b1b;
    border-radius: 40px;
    padding: 25px 18px 35px;
    box-shadow: 0 0 50px rgba(255,255,255,0.1);
    border: 6px solid #111;
}

/* Header */

.header {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.header img {
    width: 120px;
    margin-bottom: 10px;
}

.header h1 {
    font-size: 22px;
    font-weight: 700;
}

.header span {
    color: #e10600;
}

/* Profile */

.profile {
    text-align: center;
    margin-bottom: 25px;
}

.profile img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #e10600;
    object-fit: cover;
}

/* Buttons */

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Button Base */

.link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 14px 8px;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    transition: 0.25s ease;
}

.link-btn img {
    width: 65px;
}

.link-btn span {
    flex: 1;
    margin-left: 15px;
    margin-right: 5px;
    font-size: 14px;
}

.link-btn strong {
    background: rgba(0,0,0,0.4);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* Colors */

.blue {
    background: linear-gradient(135deg,#0050ff,#008cff);
}

.red {
    background: linear-gradient(135deg,#b00000,#ff1a1a);
}

.purple {
    background: linear-gradient(135deg,#6a00ff,#b066ff);
}

.gold {
    background: linear-gradient(135deg,#c28b00,#ffd65c);
}

.green {
    background: linear-gradient(135deg,#00a33d,#00ff6a);
}

/* Hover */

.link-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 20px rgba(255,255,255,0.15);
}

/* Socials */

.socials {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 25px 0;
}

.socials a {
    color: white;
    font-size: 22px;
    transition: 0.2s;
}

.socials a:hover {
    color: #e10600;
}

/* Footer */

.footer {
    text-align: center;
    color: #aaa;
    font-size: 11px;
    margin-top:25px;
}

.footer span {
    color: white;
    font-weight: 600;
}

.shop-btn{
  width:100%;
  padding:16px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,#ff0000,#b30000);
  color:white;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
}

#toast{
  position:fixed;
  bottom:-80px;
  left:50%;
  transform:translateX(-50%);
  background:#111;
  color:white;
  padding:14px 22px;
  border-radius:25px;
  font-size:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.4);
  transition:0.4s ease;
  z-index:9999;
}

#toast.show{
  bottom:40px;
}

.redirect-box{
  text-align:center;
  color:white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.redirect-box h2{
  margin-top:20px;
  font-size:18px;
}

.redirect-box p{
  margin-top:6px;
  font-size:14px;
  color:#aaa;
}

/* Loader */
.spinner{
  width:48px;
  height:48px;
  border:4px solid rgba(255,255,255,0.2);
  border-top:4px solid #e10600;
  border-radius:50%;
  animation:spin 0.8s linear infinite;
}

@keyframes spin{
  to{ transform:rotate(360deg); }
}
#redirect-screen{
  position:absolute;
  inset:0;

  display:flex;
  justify-content:center;
  align-items:center;

  background:#1b1b1b;
  border-radius:40px;
  z-index:20;

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transition:opacity .3s ease;
}

#redirect-screen.show{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
