body{
    background-color: #1A9BD0;
}

:root{
      --bg:#0e0d12;         /* page background */
      --card:#1b1620;       /* card background */
      --text:#f3f5fb;       /* main text */
      --muted:#b9bfd3;      /* secondary text */
      --accent:#a88bff;     /* buttons highlight */
      --accent-2:#6ee7ff;   /* subtle gradient tint */
      --ring:rgba(255,255,255,.18);
      --radius:18px;
      --shadow:0 10px 35px rgba(0,0,0,.45);
      --bs-btn-padding-y: 1rem;
      --bs-btn-padding-x: 15rem;
      --bs-btn-font-size: 1.3rem;
      --min-width: 1rem;
      --bs-btn-border-radius: var(--bs-border-radius-xl);
    }
    *{box-sizing:border-box}
html, body { height: 100%; }
body{
  margin: 0;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 28px 14px;
  color: var(--text);
  background: var(--bg); /* cor de fundo base */
}

body::before{
  content: "";
  position: fixed; inset: 0; z-index: -1;  /* atrás de tudo */
  background:
    radial-gradient(120% 120% at 15% 10%, #996c53 0 60%, transparent 60%),
    radial-gradient(120% 120% at 85% 90%, #3A5A40 0 60%, transparent 60%),
    var(--bg);
  background-repeat: no-repeat;
  pointer-events: none;
  color:var(--text);
      font:15px/1.55 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      display:grid; place-items:center; padding:28px 14px;
}


    .wrap{width:100%; max-width:760px}

    .card{
      background:linear-gradient(180deg, #996c53) , var(--card);
      border:1px solid var(--ring);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
      isolation:isolate;
    }

    /* Header */
    .header{
      position:relative;
      padding:18px 18px 12px;
    }
    .cover{
      position:relative; height:240px; border-radius:14px; overflow:hidden; background:#111;
    }
    .cover img{width:100%; height:100%; object-fit:cover; display:block; filter:saturate(1.05)}
    /* Subtle blur behind header content */
    .cover::after{
      content:""; position:absolute; inset:auto 0 0; height:60%;
      background:linear-gradient(180deg, transparent, rgba(0,0,0,.7));
    }

    .profile{
      display:flex; align-items:flex-end; gap:14px;
      margin-top:-48px; position:relative; padding:0 6px;
    }
    .avatar{width:84px; height:84px; border-radius:50px; overflow:hidden; border:2px solid rgba(255,255,255,.6); box-shadow:0 6px 18px rgba(0,0,0,.45)}
    .avatar img{width:100%; height:100%; object-fit:cover; display:block}
    .title{margin:0}
    .name{color:#ffffff; font-size:22px; font-weight:800; letter-spacing:.2px}
    .tag{color:#ffffff; font-size:13px; margin-top:4px}

    .icons{display:flex; gap:10px; align-items:center; margin:12px 6px 0}
    .icon{
      width:36px; height:36px; border-radius:10px; display:grid; place-items:center;
      border:1px solid var(--ring); background:rgba(255,255,255,.03); cursor:pointer;
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
      text-decoration:none;
    }
    .icon:hover{transform:translateY(-2px); background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.28)}
    .icon svg{width:18px; height:18px; fill:currentColor; color:#fff}

    /* Media block (use for Twitch/YouTube embed or remove) */
    .media{padding:12px 18px 4px}
    .player{position:relative; width:100%; aspect-ratio:16/9; background:#0e0e12; border:1px solid var(--ring); border-radius:14px; overflow:hidden}
    .player iframe{position:absolute; inset:0; width:100%; height:100%; border:0}

    /* Links */
    .links{padding:10px 18px 18px}
    .links h3{font-size:20px; text-transform:uppercase; letter-spacing:.16em; color:var(--muted); margin:14px 4px}
    .link{
      display:flex; align-items:center; gap:12px;
      width:100%; padding:12px 14px; margin:10px 0; text-decoration:none;
      color:var(--text); background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      border:1px solid var(--ring); border-radius:14px; transition:transform .12s ease, box-shadow .2s ease, border-color .2s ease;
      text-align: center
    }
    .link:hover{transform:translateY(-1px); border-color:rgba(255,255,255,.3); box-shadow:0 10px 25px rgba(0,0,0,.35)}
    .chip{font-size:12px; color:#0b1320; background:linear-gradient(90deg,var(--accent), var(--accent-2)); padding:6px 10px; border-radius:999px; font-weight:700}
    .link .label{font-weight:700}
    .link .sub{font-size:12px; color:var(--muted)}
    .bubble{width:60px; height:60px; border-radius:999px; background:rgba(255,255,255,.08); display:grid; place-items:center; border:1px solid var(--ring); text-align: center;}

    /* Footer */
    .footer{padding:16px; color:#ffffff; text-align:center; font-size:12px}






/* Button size*/
.btn-xxl{
  --btn-h: 72px;
  height: var(--btn-h);
  padding: 0 1.25rem;
  display: flex;                 /* align icon + text on one line */
  align-items: center;           /* vertical centering */
  justify-content: center;       /* keep the whole group centered */
  gap: .75rem;                   /* space between pieces */
  font-size: 1.25rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Give every SVG the same box so they align perfectly */
.btn-xxl .btn-icon{
  width: 28px;                   /* same size for all icons */
  height: 28px;
  display: block;                /* remove inline baseline wiggle */
  flex: 0 0 28px;                /* reserve identical width */
  fill: currentColor;
}


/* Optional: use a consistent divider instead of the '|' character */
.btn-xxl .btn-sep{
  width: 1px;
  height: 1.25em;                /* matches text height */
  background: currentColor;
  opacity: .35;
}

/* Keep label tidy */
.btn-xxl .btn-label{ line-height: 1; }

/* Your existing visual style */
.btn-skyverse{
  background: #eee;
  color: #121212;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  text-decoration: none;
}
.btn-skyverse:hover{
  background: #f6f6f6;
  border-color: rgba(0,0,0,.2);
  text-decoration: none;
}

iframe{
  padding: 2rem;
}

/* ===========================
   TABLET (≤ 992px)
   =========================== */
@media (max-width: 991.98px) {
  body{ padding:22px 12px; }
  .wrap{ max-width:680px; }

  .cover{ height:210px; border-radius:12px; }
  .profile{ margin-top:-42px; gap:12px; }
  .avatar{ width:76px; height:76px; border-radius:44px; }
  .name{ font-size:20px; }
  .tag{ font-size:12px; }

  .icons{ gap:8px; }
  .icon{ width:34px; height:34px; border-radius:9px; }

  .links h3{ font-size:18px; letter-spacing:.14em; }

  /* Buttons: identical size, slightly shorter on tablet */
  .btn-xxl{
    --btn-h:64px;
    padding:0 1rem;
    gap:.65rem;
    font-size:1.1rem;
  }
  .btn-xxl .btn-icon{ width:24px; height:24px; flex-basis:24px; }
}

/* ===========================
   MOBILE (≤ 576px)
   =========================== */
@media (max-width: 575.98px) {
  body{ padding:18px 10px; }
  .wrap{ max-width:100%; }

  .header{ padding:14px 12px 10px; }
  .cover{ height:180px; border-radius:10px; }
  .profile{ margin-top:-36px; padding:0 4px; gap:10px; }
  .avatar{ width:90px; height:64px; border-radius:36px; }
  .name{ font-size:18px; }

  .icons{ margin-top:8px; }
  .icon{ width:32px; height:32px; border-radius:8px; }



  /* Buttons: compact on phones */
  .box{
    padding: 0 1rem 0 1rem;
  }

  .btn-xxl{
    --btn-h:56px;
    font-size:1rem;
    padding: .9rem;
    gap:.55rem;
  }
  
  .btn-xxl .btn-icon{ width:22px; height:22px;}

  .footer{font-size:11px; padding:12px; }
}



/* Styles */
.border_radius{
  border-radius: 1rem;
}











