        @font-face {
  font-family: 'Roboto-Regular';
  src: url('../fonts/Roboto-Regular.ttf') format('opentype');
  font-style: normal;
}
    
    /* RESET */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
body {
    min-height: 100vh;
    background: url('../../assets/images/d8680b1c1576ecc8.svg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto-Regular';
    padding: 2rem 1rem;
}
    .discord-card {
      background: #36393f;
      border-radius: 8px;
      padding: 2rem;
      width: 100%;
      max-width: 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .server-stats {
    width: 100%;
    text-align: center;
    padding: 12px 15px;
}

.server-stats h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    font-family: Arial, sans-serif;
}

    .avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      margin-bottom: 0.75rem;
    }

    .invite-text {
      font-size: 13px;
      color: #b9bbbe;
      margin-bottom: 0.25rem;
    }

    .server-name {
      font-size: 22px;
      font-weight: 900;
      color: #ffffff;
      margin: 0 0 0.4rem;
    }

    .server-stats {
      display: flex;
      gap: 16px;
      margin-bottom: 1.25rem;
      font-size: 13px;
    }

    .stat-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      display: inline-block;
      margin-right: 4px;
      vertical-align: middle;
    }

    .divider {
      width: 100%;
      height: 0.5px;
      background: #4f545c;
      margin-bottom: 1.25rem;
    }

    /* Age Gate */
    .age-gate-box {
      width: 100%;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 0;
    }

    .age-gate-title {
      font-size: 22px;
      font-weight: 900;
      color: #ffffff;
      text-align: center;
      text-transform: uppercase;
      line-height: 1.2;
      margin-bottom: 1.25rem;
      letter-spacing: 0.01em;
    }

    .age-gate-btns {
      display: flex;
      gap: 12px;
      width: 100%;
    }

    .btn-over,
    .btn-exit {
      flex: 1;
      padding: 11px;
      background: #5b4fcf;
      color: #ffffff;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.15s;
    }

    .btn-over:hover,
    .btn-exit:hover {
      background: #4a3fbf;
    }

    /* Main Section (hidden initially) */
    .main-section {
      width: 100%;
      display: none;
      flex-direction: column;
      align-items: center;
    }

    .age-section {
      width: 100%;
      margin-bottom: 1.25rem;
    }

    .age-label {
      font-size: 12px;
      font-weight: 500;
      color: #b9bbbe;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 0.5rem;
      display: block;
    }

    .age-input {
      width: 100%;
      background: #40444b;
      border: 1px solid #202225;
      border-radius: 4px;
      padding: 10px 12px;
      color: #dcddde;
      font-size: 16px;
      outline: none;
      transition: border-color 0.15s;
    }

    .age-input:focus {
      border-color: #7289da;
    }

    .age-input::placeholder {
      color: #72767d;
    }

    .tos-text {
      font-size: 12px;
      color: #72767d;
      text-align: center;
      margin-bottom: 1.25rem;
      line-height: 1.5;
    }

    .tos-text a {
      color: #00b0f4;
      text-decoration: none;
    }

    .tos-text a:hover {
      text-decoration: underline;
    }

    .btn-primary {
      width: 100%;
      padding: 11px;
      background: #5865f2;
      color: #ffffff;
      border: none;
      border-radius: 4px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      margin-bottom: 0.75rem;
      transition: background 0.15s;
    }

    .btn-primary:hover {
      background: #4752c4;
    }

    .btn-secondary {
      width: 100%;
      padding: 11px;
      background: transparent;
      color: #dcddde;
      border: 1px solid #4f545c;
      border-radius: 4px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      margin-bottom: 1rem;
      transition: background 0.15s;
    }

    .btn-secondary:hover {
      background: rgba(79, 84, 92, 0.2);
    }

    .login-link {
      font-size: 14px;
      color: #00b0f4;
      text-decoration: none;
      cursor: pointer;
    }

    .login-link:hover {
      text-decoration: underline;
    }
 