      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      :root {
        --bg-primary: #0a0a0a;
        --bg-secondary: #111111;
        --bg-glass: rgba(17, 17, 17, 0.6);
        --text-primary: #ffffff;
        --text-secondary: #b3b3b3;
        --text-muted: #666666;
        --border: rgba(255, 255, 255, 0.1);
        --border-hover: rgba(255, 255, 255, 0.2);
        --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        --shadow-glow: 0 0 25px rgba(255, 255, 255, 0.1);
      }

      body {
        font-family: 'Inter', -apple-system, sans-serif;
        background: var(--bg-primary);
        color: var(--text-primary);
        line-height: 1.6;
        overflow-x: hidden;
      }

      /*navbar */
      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;

        padding: 1rem 2rem;
        backdrop-filter: blur(20px);
        background: rgba(10, 10, 10, 0.6);
        border-bottom: 1px solid var(--border);
      }

      .nav-container {
        max-width: 1200px;
        margin: auto;

        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .menu-toggle {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
      }

      /* logo */
      .nav-logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.05em;
      }

      .nav-logo img {
        width: 100px;
        height: 32px;
      }

      /* links */
      .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
      }

      .nav-links a {
        text-decoration: none;
        color: var(--text-secondary);
        font-weight: 500;
        transition: 0.3s;
      }

      .nav-links a:hover {
        color: var(--text-primary);
      }

      /* button */
      .nav-btn {
        padding: 0.6rem 1.2rem;
        background: var(--text-primary);
        color: var(--bg-primary);
        border-radius: 0.75rem;
        font-weight: 600;
        text-decoration: none;
        transition: 0.3s;
      }

      .nav-btn:hover {
        transform: translateY(-2px);
      }

      /* Smooth scrolling */
      html {
        scroll-behavior: smooth;
      }

      /* Glassmorphism */
      .glass {
        background: var(--bg-glass);
        backdrop-filter: blur(10px);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      /* Hero Section */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
        position: relative;
      }

      .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
                            radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
                            radial-gradient(circle at 40% 40%, rgba(255,255,255,0.02) 0%, transparent 50%);
        pointer-events: none;
      }

      .hero-content {
        text-align: center;
        max-width: 48rem;
        z-index: 2;
        opacity: 0;
        transform: translateY(2rem);
        animation: fadeInUp 1.2s ease forwards;
      }

      .gnvr-logo {
        width: 10rem;
        height: 10rem;
        margin: 2rem auto 0.2rem;
        background: linear-gradient(135deg, var(--text-primary), #e5e5e5);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 4rem;
        font-weight: 900;
        letter-spacing: -0.05em;
        position: relative;
      }

      .gnvr-logo img {
          width: 100%;
          height: 100%;
          object-fit: contain;
      }

      .gnvr-logo::after {
        content: '';
        position: absolute;
        inset: -0.5rem;
        background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1), transparent);
        border-radius: 1rem;
        padding: 1rem;
        filter: blur(20px);
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .gnvr-logo:hover::after {
        opacity: 1;
      }

      #vanta-bg {
        position: relative;
        z-index: 0;
        min-height: 100vh;
      }

      .hero-content {
        position: relative;
        z-index: 2;
      }

      .hero h1 {
        font-size: clamp(3rem, 8vw, 6rem);
        font-weight: 900;
        margin-bottom: 1.5rem;
        letter-spacing: -0.03em;

        /* Smooth premium gradient */
        background: linear-gradient(
          120deg,
          #ffffff,
          #e7e7e7
        );
        background-size: 300% 100%;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

        position: relative; 
        display: inline-block;

        animation: floatText 6s ease-in-out infinite,
                  gradientFlow 15s ease-in-out infinite;

        transition: transform 0.4s ease;
      }

      @keyframes gradientFlow {
        0% {
          background-position: 0% 50%;
        }
        50% {
          background-position: 100% 50%;
        }
        100% {
          background-position: 0% 50%;
        }
      }

      .hero h1:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 0 25px rgba(255,255,255,0.25));
      }

      @keyframes floatText {
        0%, 100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-10px);
        }
      }
      
      .hero-subtitle {
        font-size: clamp(1.125rem, 2.5vw, 1.5rem);
        color: var(--text-secondary);
        max-width: 36rem;
        margin: 0 auto 3.5rem;
        font-weight: 400;
      }

      .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.25rem 3rem;
        background: var(--text-primary);
        color: var(--bg-primary);
        font-size: 1.125rem;
        font-weight: 600;
        border-radius: 1rem;
        text-decoration: none;
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-glow);
      }

      .btn-primary:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 35px 60px -12px rgba(255,255,255,0.15);
        border-color: var(--text-primary);
        background: var(--text-primary);
      }

      .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
      }

      .btn-primary:hover::before {
        left: 100%;
      }

      /* Sections */
      .section {
        padding: 4rem 1rem;
        scroll-margin-top: 100px;
      }

      .container {
        max-width: 80rem;
        margin: 0 auto;
      }

      .section-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 800;
        text-align: center;
        margin-bottom: 4rem;
        position: relative;
      }

      .section-title::after {
        content: '';
        position: absolute;
        bottom: -1rem;
        left: 50%;
        transform: translateX(-50%);
        width: 3rem;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--text-primary), transparent);
      }

      /* Stats */
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
      }

      .stat-card {
        padding: 3rem 2rem;
        text-align: center;
        border-radius: 1.5rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: translateY(2rem);
      }

      .stat-card.animated {
        opacity: 1;
        transform: translateY(0);
      }

      .stat-card:hover {
        transform: translateY(-12px);
        border-color: var(--border-hover);
        box-shadow: var(--shadow-glow);
      }

      .stat-icon {
        font-size: 2rem;
        margin: 0 auto 1.5rem;
        color: var(--text-secondary);
        opacity: 0.6;
        transition: all 0.3s ease;
      }

      .stat-card:hover .stat-icon {
        color: var(--text-primary);
        opacity: 1;
      }

      .stat-value {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 900;
        margin-bottom: 0.5rem;
      }

      .stat-value::after {
        content: "+";
      }

      .stat-values {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 900;
        margin-bottom: 0.5rem;
      }

      .stat-label {
        color: var(--text-secondary);
        font-weight: 500;
        font-size: 1.125rem;
      }

      /* Description */
      .description {
        max-width: 40rem;
        margin: 0 auto;
        text-align: center;
        font-size: 1.25rem;
        color: var(--text-secondary);
        line-height: 1.7;
      }

      /* Features */
      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
        gap: 2rem;
      }

      .feature-card {
        padding: 3rem 2.5rem;
        border-radius: 1.5rem;
        transition: all 0.4s ease;
        cursor: pointer;
      }

      .feature-card:hover {
        transform: translateY(-8px);
        border-color: var(--border-hover);
      }

      .feature-icon {
        font-size: 4rem;
        margin: 0 auto 2rem;
        color: var(--text-secondary);
        opacity: 0.5;
        transition: all 0.3s ease;
        font-size: 2rem;
      }

      .feature-card:hover .feature-icon {
        color: var(--text-primary);
        opacity: 1;
        transform: scale(1.1);
      }

      .feature-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-align: center;
      }

      .feature-desc {
        color: var(--text-secondary);
        text-align: center;
        font-size: 1rem;
      }

      /* visiob */
      .vision-mission-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }

      .vm-card {
        padding: 3rem 2.5rem;
        border-radius: 1.5rem;
        text-align: center;
        transition: all 0.4s ease;
      }

      .vm-card:hover {
        transform: translateY(-10px);
        border-color: var(--border-hover);
        box-shadow: var(--shadow-glow);
      }

      .vm-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: var(--text-secondary);
        opacity: 0.6;
        transition: 0.3s;
      }

      .vm-card:hover .vm-icon {
        color: var(--text-primary);
        opacity: 1;
        transform: scale(1.1);
      }

      .vm-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
      }

      .vm-desc {
        color: var(--text-secondary);
        font-size: 1rem;
      }

      /* staff list */
      .staff-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }

      .staff-card {
        padding: 2.5rem 2rem;
        border-radius: 1.5rem;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      }

      .staff-card:hover {
        transform: translateY(-10px);
        border-color: var(--border-hover);
        box-shadow: var(--shadow-glow);
      }

      /* Avatar bulat + shadow */
      .staff-card img {
        width: calc(80% + 4rem); /* nutup padding kiri + kanan */
        margin-left: -2rem;
        margin-right: -2rem;

        height: 20rem;
        object-fit: cover;
        border-radius: 0.75rem;

        margin-bottom: 1.5rem;

        box-shadow: 
          0 0 20px rgba(255,255,255,0.15),
          0 10px 30px rgba(0,0,0,0.6);

        transition: all 0.3s ease;
      }

      .staff-name {
        font-family: 'Inter', sans-serif;
        font-size: 1.7rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
        text-transform: uppercase;
      }

      .staff-role {
        color: var(--text-secondary);
        font-size: 1rem;
      }

      .extra-container {
        display: contents; 
      }

      .extra-staff {
        display: none;
      }

      .extra-staff.show {
        display: block;
      }

      /* wrapper tombol biar center di grid */
      .see-more-wrapper {
        grid-column: 1 / -1; /* full lebar grid */
        display: flex;
        justify-content: center;
        margin-top: 1.5rem;
      }

      /* tombol glass premium */
      #seeMoreBtn {
        padding: 0.9rem 2.2rem;
        
        background: rgba(255, 255, 255, 0.06); /* blend background */
        border: 1px solid rgba(255, 255, 255, 0.12);

        color: var(--text-secondary);
        font-weight: 600;

        border-radius: 999px;

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);

        cursor: pointer;
        transition: all 0.3s ease;

        letter-spacing: 0.5px;
      }

      /* hover biar tetap subtle, bukan norak */
      #seeMoreBtn:hover {
        background: rgba(255, 255, 255, 0.12);
        color: var(--text-primary);
        transform: translateY(-2px);
        box-shadow: 0 0 25px rgba(255,255,255,0.08);
      }

      /* active click feel */
      #seeMoreBtn:active {
        transform: scale(0.96);
      }

      /* Moments */
      .moments-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
        gap: 1.5rem;
      }

      .moment-card {
        border-radius: 1.25rem;
        overflow: hidden;
        transition: all 0.4s ease;
        position: relative;
      }

      .moment-title {
        font-size: 1rem;
        font-weight: 700;
        margin-top: 1rem;
        color: var(--text-primary);
      }

      .moment-desc {
        font-size: 0.85rem;
        color: var(--text-secondary);
        margin-top: 0.3rem;
      }

      .moment-card:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: var(--shadow-glow);
      }

      .moment-image {
        height: 14rem;
        position: relative;
        overflow: hidden;
      }

      .moment-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
      }

      .moment-card:hover .moment-image img {
        filter: grayscale(50%) contrast(1.3) brightness(1);
        transform: scale(1.05);
      }

      .live-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: rgba(255, 255, 255, 0.95);
        color: var(--bg-primary);
        padding: 0.375rem 0.875rem;
        border-radius: 1rem;
        font-size: 0.75rem;
        font-weight: 700;
        backdrop-filter: blur(10px);
      }

      .moment-footer {
        padding: 1.5rem;
      }

      .moment-views {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-secondary);
        font-size: 0.875rem;
      }

      /* Discord Card */
      .discord-preview {
        max-width: 36rem;
        margin: 0 auto;
      }

      .discord-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
      }

      .discord-icon {
        width: 5rem;
        height: 5rem;
        background: linear-gradient(135deg, var(--text-primary), #e5e5e5);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 2rem;
        font-weight: 900;
      }

      .discord-emojis {
        display: flex;
        gap: 0.5rem;
        font-size: 2rem;
        margin: 2rem 0;
        justify-content: center;
      }

      .online-stats {
        text-align: center;
        margin: 2rem 0;
      }

      .online-indicator {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--text-secondary);
        font-weight: 600;
        font-size: 1.125rem;
      }

      .online-dot {
        width: 0.75rem;
        height: 0.75rem;
        background: var(--text-primary);
        border-radius: 50%;
        animation: pulse 2s infinite;
      }

      /* Final CTA */
      .final-cta {
        text-align: center;
        padding: 8rem 1rem;
      }

      .cta-title {
        font-size: clamp(2.5rem, 7vw, 4.5rem);
        font-weight: 900;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, var(--text-primary), #e5e5e5);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      /* Footer */
      footer {
        padding: 4rem 1rem 2rem;
        text-align: center;
        border-top: 1px solid var(--border);
      }

      .footer-logo {
        width: 4rem;
        height: 4rem;
        margin: 0 auto 1.5rem;
        background: linear-gradient(135deg, var(--text-primary), #e5e5e5);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 1.75rem;
        font-weight: 900;
      }

      .footer-logo img {
          width: 100%;
          height: 100%;
          object-fit: contain;
      }
      
      /* popup */
      .popup {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;

        opacity: 1;
        transition: 0.25s ease;
      }

      .popup.hidden {
        opacity: 0;
        pointer-events: none;
      }

      /* card animation */
      .popup-card {
        width: 500px;
        max-height: 85vh;  /* biar responsive */
        border-radius: 1.5rem;
        height: auto;      /* 🔥 penting */
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: relative;

        transform: scale(0.9);
        transition: 0.25s ease;
      }

      .popup:not(.hidden) .popup-card {
        transform: scale(1);
      }

      /* X button */
      .popup-close {
        position: absolute;
        top: 12px;
        right: 12px;

        width: 38px;
        height: 38px;

        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.15);

        background: rgba(0,0,0,0.4);
        color: white;

        display: flex;
        align-items: center;
        justify-content: center;

        cursor: pointer;
        z-index: 10;

        transition: 0.3s;
      }

      .popup-close:hover {
        background: rgba(255,255,255,0.15);
        transform: scale(1.1);
      }

      /* Banner */
      .popup-banner {
        height: 150px;
        background: linear-gradient(135deg, #222, #111);
        border-bottom: 1px solid var(--border);
      }

      /* Avatar */
      .popup-avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin-top: -80px;
        border: 3px solid var(--bg-secondary);
        object-fit: cover;

        box-shadow: 0 0 20px rgba(255,255,255,0.1);

      }

      /* WRAPPER posisi di atas banner */
     .popup-avatar-wrapper {
        position: relative;
        display: inline-block;
      }

        /* bubble */
      .popup-quote {
        position: absolute;
        top: -70px;
        left: 80px;

        padding: 0.5rem 1rem;
        border-radius: 999px;

        background: linear-gradient(135deg, #2c2c2c, #404040);
        color: #e4e6eb;

        font-size: 0.85rem;
        white-space: nowrap;

        box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        border: 1px solid rgba(255,255,255,0.08);
      }

      /* Wrapper text */
      .popup-user {
        display: flex;
        flex-direction: column;
        align-items: center; /* 🔥 center semuanya */
        text-align: center;
      }


      /* Content */
      .popup-content {
        padding: 1.5rem;
        align-items: stretch;

        display: flex;
        flex-direction: column;
        height: 100%;
      }

      /* Display name */
      #popupName {
        font-size: 1.3rem;
        font-weight: 700;
      }

      /* Username (@user) */
      #popupUsername {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin-top: 0.2rem;
      }

      /* SECTION jadi relative biar label bisa absolute */
      .popup-section {
        position: relative;

        padding: 1rem 1.2rem 1rem; /* atas dikasih ruang buat label */
        margin-bottom: 2rem; /* ini jarak antar section */
        margin-top: 1.2rem;
        width: 100%;
        min-height: 80px;

        background: linear-gradient(135deg, #1a1a1a, #111);
        border-radius: 1.2rem;

        border: 1px solid rgba(255,255,255,0.06);
        box-shadow: 0 4px 12px rgba(0,0,0,0.4);
      }

      .popup-section.bio-section {
        display: flex;
        flex-direction: column;
        width: 100%;
      }

      /* LABEL floating kiri atas */
      .popup-label {
        position: absolute;
        top: -18px;
        left: 14px;

        font-size: 0.6rem;
        letter-spacing: 1.2px;
        text-transform: uppercase;

        color: var(--text-muted);

        background: transparent; /* biar nutup border */
        padding: 0 6px;

        pointer-events: none;
      }

      /* Roles full width */
      .popup-roles {
        display: flex;
        flex-wrap: wrap;
        gap: 0.45rem;
      }

      /* Role badge */
      .popup-roles span {
        background: rgba(255,255,255,0.05);
        padding: 0.4rem 0.8rem;
        border-radius: 999px;

        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.3px;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.4);

        color: var(--text-secondary);

        transition: all 0.25s ease;
        cursor: default;
      }

      /* Hover effect (clean & subtle) */
      .popup-roles span:hover {
        background: rgba(255,255,255,0.12);
        color: var(--text-primary);
      }

      /* Bio */
      .popup-bio {
        font-size: 1.1rem;
        color: var(--text-secondary);
        line-height: 1.5;
      }

      /* BIO SECTION SCROLLABLE */
      #popupBio {
        width: 100%;
        max-height: 220px;      /* batas tinggi */
        overflow-y: auto;       /* scroll atas bawah */
        overflow-x: hidden;

        word-wrap: break-word;
        white-space: pre-wrap;  /* biar enter tetap kebaca */

        padding-right: 8px;
        line-height: 1.6;

        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.2) transparent;
      }

      /* optional: biar scrollbar lebih clean */
      #popupBio::-webkit-scrollbar {
        width: 6px;
      }

      #popupBio::-webkit-scrollbar-track {
        background: transparent;
      }

      #popupBio::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.2);
        border-radius: 10px;
      }

      #popupBio::-webkit-scrollbar-thumb:hover {
        background: rgba(255,255,255,0.35);
      }

      /* Buttons */
      .popup-actions {
        display: flex;
        gap: 0.6rem;
        justify-content: center;
        margin-top: 1.2rem;
      }

      .popup-actions a {
        padding: 0.5rem 1rem;
        border-radius: 0.6rem;
        font-size: 0.8rem;
        text-decoration: none;

        background: rgba(255,255,255,0.05);
        border: 1px solid var(--border);
        color: var(--text-secondary);

        transition: 0.3s;
      }

      .popup-actions a:hover {
        background: rgba(255,255,255,0.12);
        color: var(--text-primary);
      }

      .popup-footer-info {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;

        margin-top: auto; /* dorong ke paling bawah */
        padding-top: 1rem;
      }

      .popup-footer-info::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;

        background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.15),
            transparent
        );
      }

      /* item jadi rapih horizontal */
      .info-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      /* icon */
      .info-item i {
        font-size: 0.9rem;
        color: var(--text-secondary);
        opacity: 0.8;
      }

      /* text */
      .info-item p {
        font-size: 0.75rem;
        color: var(--text-secondary);
        margin: 0;
      }

      /* titik pemisah */
      .dot-separator {
        color: var(--text-muted);
        font-size: 1.2rem;
        opacity: 0.6;
      }

      .info-img {
        width: 20px;
        height: 20px;
        object-fit: contain;
        opacity: 0.8;
      }

      /* Tablet & HP */
      @media (max-width: 900px) {
        .navbar {
          padding: 0.6rem 1rem;
        }

        .nav-logo {
          margin: 0;
          padding: 0;
        }

        .nav-logo img {
          width: 80px; /* kecilin dikit */
          height: auto;
          display: block;
        }

        .nav-links {
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;

          flex-direction: column;
          background: rgba(10,10,10,0.95);
          backdrop-filter: blur(20px);

          padding: 1.5rem 0;
          gap: 1.5rem;

          text-align: center;

          opacity: 0;
          pointer-events: none;
          transform: translateY(-10px);
          transition: 0.3s;
        }

        .nav-links.active {
          opacity: 1;
          pointer-events: all;
          transform: translateY(0);
        }

        .menu-toggle {
          display: block;
        }

        .nav-btn {
          display: none;
        }

        .vision-mission-grid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 768px) {
        .glass {
          backdrop-filter: none;
          background: rgba(17,17,17,0.9);
        }

        .hero {
          padding-top: 3rem; /* biar gak ketutup navbar */
        }

        .gnvr-logo {
          width: 12rem;
          height: 12rem;
        }

        .popup-quote {
          top: -65px;
          left: 47px;
        }

        .hero h1 {
          font-size: 2.5rem;
        }

        .hero-subtitle {
          font-size: 1rem;
          padding: 0 1rem;
        }

        .btn-primary {
          padding: 1rem 2rem;
          font-size: 1rem;
        }

        .section {
          padding: 3rem 1rem;
        }

        .section-title {
          margin-bottom: 2.5rem;
        }

        .stats-grid,
        .features-grid {
          gap: 1.5rem;
        }

        .stats-grid, .features-grid, .moments-grid {
          grid-template-columns: 1fr;
        }
        
        .discord-header {
          flex-direction: column;
          text-align: center;
        }

      }

      /* ==========================
        POPUP RESPONSIVE FIX
      ========================== */

      @media (max-width: 1024px) {
        .popup-card {
          width: 90%;
          height: auto;
          max-height: 85vh;
        }

        .popup-content {
          padding: 1.2rem;
        }

        .popup-avatar {
          width: 90px;
          height: 90px;
          margin-top: -60px;
        }

        #popupName {
          font-size: 1.1rem;
        }

        #popupUsername {
          font-size: 0.75rem;
        }

        .popup-section {
          padding: 0.8rem 1rem;
        }

        .staff-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 600px) {
        .popup-card {
          width: 95%;
          max-height: 90vh;
          border-radius: 1rem;
        }

        .popup-banner {
          height: 120px;
        }

        .popup-avatar {
          width: 80px;
          height: 80px;
          margin-top: -50px;
        }

        .popup-roles {
          justify-content: flex-start;
        }

        .popup-footer-info {
          flex-direction: row;     /* tetap horizontal */
          flex-wrap: wrap;         /* kalau sempit, turun tapi tetap rapih */
          justify-content: center;
          gap: 0.6rem;
        }

        .dot-separator {
          display: inline;         /* tetap tampil */
        }

        .popup-actions {
          flex-direction: column;
        }

        .staff-grid {
          grid-template-columns: 1fr;
        }
      }

      /* Animations */
      @keyframes fadeInUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
      }

      /* Scroll Animations */
      .animate-on-scroll {
        opacity: 0;
        transform: translateY(3rem);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      }

      .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
      }
