/* ========================= RESET & BASE ========================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    width: 100%;
    background: #0a0000;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #fff;
    overflow-x: hidden;
}
.skip-link {
    position: absolute;
    left: 12px;
    top: -48px;
    z-index: 200;
    background: #ff1a1a;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 12px;
}

/* ========================= BACKGROUND ========================= */
.universe { position: fixed; width: 100%; height: 100vh; top: 0; left: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.universe::before {
    content: "";
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 18% 25%, rgba(255, 30, 30, 0.12) 0%, rgba(255, 30, 30, 0) 42%),
        radial-gradient(circle at 82% 18%, rgba(200, 0, 0, 0.18) 0%, rgba(200, 0, 0, 0) 46%),
        radial-gradient(circle at 70% 72%, rgba(255, 50, 50, 0.14) 0%, rgba(255, 50, 50, 0) 45%);
    filter: blur(26px);
    animation: nebulaDrift 22s ease-in-out infinite alternate;
    opacity: 0.85;
}
.universe::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 60, 60, 0.18) 1px, transparent 1px),
        radial-gradient(rgba(255, 40, 40, 0.1) 1px, transparent 1px);
    background-size: 44px 44px, 72px 72px;
    background-position: 0 0, 22px 18px;
    opacity: 0.24;
}
.particles-container { position: fixed; inset: 0; pointer-events: none; z-index: 2; }
.snow-container { position: fixed; inset: 0; pointer-events: none; z-index: 3; }
.star { position: absolute; background: white; border-radius: 50%; box-shadow: 0 0 6px rgba(255,255,255,0.5); animation: twinkle 4s infinite ease-in-out; }
@keyframes twinkle { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.7; } }
.particle { position: absolute; pointer-events: none; border-radius: 50%; }
.particle.small  { width: 3px; height: 3px; background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%); box-shadow: 0 0 6px rgba(255,255,255,0.6); }
.particle.medium { width: 6px; height: 6px; background: radial-gradient(circle, rgba(220,220,220,0.7) 0%, transparent 70%); box-shadow: 0 0 12px rgba(220,220,220,0.5); }
.particle.large  { width: 10px; height: 10px; background: radial-gradient(circle, rgba(190,190,190,0.6) 0%, transparent 70%); box-shadow: 0 0 20px rgba(190,190,190,0.4); }
.particle.red    { width: 5px; height: 5px; background: radial-gradient(circle, #ff3b3b 0%, transparent 70%); box-shadow: 0 0 10px rgba(255,0,0,0.35); }
.particle.green  { width: 5px; height: 5px; background: radial-gradient(circle, #ff6b6b 0%, transparent 70%); box-shadow: 0 0 10px rgba(255,60,60,0.35); }
.snowflake { position: absolute; top: -10px; border-radius: 50%; background: rgba(255,255,255,0.85); box-shadow: 0 0 5px rgba(255,255,255,0.3); animation: snowfall linear infinite; }
.shooting-star {
    position: absolute;
    width: 120px;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95));
    transform: rotate(-32deg);
    opacity: 0;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9));
    animation: shooting-star linear infinite;
}
@keyframes snowfall { 0% { transform: translateY(-10px) translateX(0); opacity: 0; } 10% { opacity: 0.8; } 90% { opacity: 0.5; } 100% { transform: translateY(105vh) translateX(var(--drift, 30px)); opacity: 0; } }
@keyframes float-particle { 0% { transform: translateY(0) rotate(0deg); opacity: 0; } 20% { opacity: 0.9; } 80% { opacity: 0.7; } 100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; } }
@keyframes nebulaDrift {
    0% { transform: translate3d(-1.5%, -1.5%, 0) scale(1); }
    100% { transform: translate3d(1.5%, 1.5%, 0) scale(1.07); }
}
@keyframes shooting-star {
    0% { transform: translate3d(0, 0, 0) rotate(-32deg); opacity: 0; }
    8% { opacity: 1; }
    100% { transform: translate3d(-420px, 230px, 0) rotate(-32deg); opacity: 0; }
}

/* ========================= NAVBAR ========================= */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 60px;
    background: linear-gradient(180deg, rgba(10,0,0,0.82), rgba(10,0,0,0.7));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,30,30,0.1);
}
.nav-logo { display: inline-block; font-size: 1rem; font-weight: 900; letter-spacing: 3px; color: #ff1a1a; text-transform: uppercase; text-decoration: none; transition: text-shadow 0.2s ease, color 0.2s ease; }
.nav-logo span { color: #666; }
.nav-logo:hover { color: #ff3333; text-shadow: 0 0 16px rgba(255,30,30,0.6); }
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: color 0.2s ease; }
.nav-links a:hover { color: #ff1a1a; }
.nav-discord { display: flex; align-items: center; gap: 8px; padding: 9px 22px; border-radius: 50px; background: rgba(255,30,30,0.12); border: 1px solid rgba(255,30,30,0.3); color: #fff; text-decoration: none; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; transition: all 0.25s ease; }
.nav-discord:hover { background: rgba(255,30,30,0.25); border-color: rgba(255,30,30,0.6); box-shadow: 0 0 24px rgba(255,30,30,0.35); }
.discord-icon-nav { width: 17px; height: 17px; object-fit: contain; filter: brightness(1.2); }

/* ========================= HERO ========================= */
.hero-section { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; z-index: 5; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: brightness(0.18) grayscale(40%) contrast(1.1) sepia(20%); opacity: 0.62; transform: scale(1.05); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 28%, rgba(255, 30, 30, 0.12) 0%, rgba(255, 30, 30, 0) 38%),
        radial-gradient(circle at 76% 20%, rgba(200, 0, 0, 0.1) 0%, rgba(200, 0, 0, 0) 42%),
        linear-gradient(to bottom, rgba(10,0,0,0.32) 0%, rgba(10,0,0,0.16) 35%, rgba(10,0,0,0.2) 60%, rgba(10,0,0,0.95) 100%);
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,50,50,0.2) 1px, transparent 1px),
        radial-gradient(rgba(255,30,30,0.12) 1px, transparent 1px);
    background-size: 70px 70px, 110px 110px;
    background-position: 0 0, 24px 36px;
    opacity: 0.16;
    pointer-events: none;
    z-index: 1;
}
.hero-content { position: relative; z-index: 10; text-align: center; padding: 0 24px; max-width: 820px; margin-top: -80px; }
.hero-tagline { font-size: 0.68rem; font-weight: 700; letter-spacing: 5px; color: rgba(255,255,255,0.4); margin-bottom: 16px; text-transform: uppercase; }
.hero-title { font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 900; letter-spacing: 2px; color: #fff; line-height: 1.05; margin-bottom: 20px; text-shadow: 0 2px 80px rgba(0,0,0,0.8), 0 0 36px rgba(255,30,30,0.5), 0 0 90px rgba(255,30,30,0.22); }
.hero-title span { color: #ff1a1a; }
.hero-desc { font-size: 0.96rem; color: rgba(255,255,255,0.55); line-height: 1.78; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary,
.btn-secondary {
    position: relative;
    overflow: visible;
}
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; background: linear-gradient(135deg, #ff1a1a, #cc1414); color: #fff; border: none; border-radius: 10px; font-size: 0.82rem; font-weight: 700; letter-spacing: 1px; cursor: pointer; text-decoration: none; font-family: 'Inter', sans-serif; transition: all 0.22s ease; box-shadow: 0 0 24px rgba(255,30,30,0.5), 0 0 60px rgba(255,30,30,0.2), 0 12px 30px rgba(0,0,0,0.36); }
.btn-primary:hover { background: linear-gradient(135deg, #ff3333, #e01818); color: #ffffff; transform: translateY(-2px); box-shadow: 0 0 42px rgba(255,30,30,0.78), 0 0 95px rgba(255,30,30,0.34), 0 14px 34px rgba(0,0,0,0.45); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; background: rgba(255,30,30,0.1); color: #fff; border: 1.5px solid rgba(255,30,30,0.5); border-radius: 10px; font-size: 0.82rem; font-weight: 700; letter-spacing: 1px; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.22s ease; box-shadow: inset 0 0 20px rgba(255,30,30,0.1), 0 0 24px rgba(255,30,30,0.2); }
.btn-secondary:hover { border-color: #ff1a1a; background: #ff1a1a; color: #ffffff; transform: translateY(-2px); box-shadow: 0 0 42px rgba(255,30,30,0.74), 0 0 95px rgba(255,30,30,0.3); }
.btn-secondary.copied { border-color: #ff1a1a; color: #ffffff; background: #ff1a1a; }

.btn-primary::before,
.btn-primary::after,
.btn-secondary::before,
.btn-secondary::after {
    content: "✦";
    position: absolute;
    font-size: 0.72rem;
    color: rgba(255,60,60,0.92);
    text-shadow: 0 0 10px rgba(255,30,30,0.8);
    opacity: 0;
    transition: all 0.22s ease;
    pointer-events: none;
}
.btn-primary::before,
.btn-secondary::before {
    top: -12px;
    left: -10px;
    transform: scale(0.8) translateY(3px);
}
.btn-primary::after,
.btn-secondary::after {
    bottom: -12px;
    right: -10px;
    transform: scale(0.8) translateY(-3px);
}
.btn-primary:hover::before,
.btn-primary:hover::after,
.btn-secondary:hover::before,
.btn-secondary:hover::after {
    opacity: 1;
    transform: scale(1.1) translateY(0);
}

.live-status-strip {
    margin: 18px auto 0;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,30,30,0.3);
    background: rgba(10,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: fit-content;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 0 22px rgba(255,30,30,0.2);
}
.live-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.82);
    font-size: 0.66rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}
.live-label {
    color: rgba(255,255,255,0.48);
}
.live-value {
    color: #ff1a1a;
    text-shadow: 0 0 10px rgba(255,30,30,0.5);
}
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff1a1a;
    box-shadow: 0 0 14px rgba(255,30,30,0.9);
    animation: pulseLiveDot 1.2s ease-in-out infinite;
}
@keyframes pulseLiveDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.35); opacity: 0.65; }
}

/* Hero Stats */
.hero-stats { position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; align-items: center; white-space: nowrap; }
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 44px; }
.stat-num { font-size: 2.4rem; font-weight: 900; color: #ff1a1a; line-height: 1; margin-bottom: 5px; text-shadow: 0 0 22px rgba(255,30,30,0.5), 0 0 44px rgba(255,30,30,0.2); font-variant-numeric: tabular-nums; }
.stat-label { font-size: 0.63rem; font-weight: 600; letter-spacing: 1.8px; color: rgba(255,255,255,0.38); text-transform: uppercase; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,30,30,0.15); flex-shrink: 0; }

/* ========================= SECTIONS (shared) ========================= */
section { position: relative; z-index: 5; }
.section-container { max-width: 1180px; margin: 0 auto; padding: 100px 40px; text-align: center; }
.section-title { font-size: 2rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: #fff; margin-bottom: 56px; display: inline-block; position: relative; text-shadow: 0 0 24px rgba(255,30,30,0.35), 0 0 60px rgba(255,30,30,0.12); }
.section-title:hover {
    color: #ffffff;
    text-shadow: 0 0 34px rgba(255,30,30,0.58), 0 0 90px rgba(255,30,30,0.22);
}
.section-title::after { content: ''; display: block; width: 52px; height: 2px; background: linear-gradient(90deg, transparent, #ff1a1a, transparent); margin: 14px auto 0; border-radius: 2px; }

/* ========================= START ========================= */
.start-section {
    background:
        radial-gradient(circle at 18% 20%, rgba(255,30,30,0.08) 0%, rgba(255,30,30,0) 38%),
        radial-gradient(circle at 82% 68%, rgba(255,30,30,0.06) 0%, rgba(255,30,30,0) 44%),
        rgba(10,0,0,0.92);
    border-top: 1px solid rgba(255,30,30,0.1);
    border-bottom: 1px solid rgba(255,30,30,0.1);
}
.start-kicker {
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.start-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    margin-bottom: 24px;
    letter-spacing: 1.5px;
}
.fivem-spotlight {
    max-width: 980px;
    margin: 0 auto 34px;
    padding: 26px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,30,30,0.3);
    background: linear-gradient(160deg, rgba(255,30,30,0.1), rgba(255,30,30,0.02));
    box-shadow: 0 0 44px rgba(255,30,30,0.15), inset 0 0 26px rgba(255,30,30,0.06);
}
.fivem-spotlight-text {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 1.62;
    margin-bottom: 16px;
}
.fivem-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #ff1a1a, #cc1414);
    border: 1px solid #ff1a1a;
    box-shadow: 0 0 30px rgba(255,30,30,0.5), 0 12px 28px rgba(0,0,0,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fivem-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 44px rgba(255,30,30,0.7), 0 16px 34px rgba(0,0,0,0.4);
}
.start-lead {
    max-width: 760px;
    margin: 0 auto 34px;
    color: rgba(255,255,255,0.62);
    line-height: 1.75;
    font-size: 1rem;
}
.start-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 18px;
    text-align: left;
}
.start-card {
    background: linear-gradient(165deg, rgba(255,30,30,0.06), rgba(255,30,30,0.015));
    border: 1px solid rgba(255,30,30,0.18);
    border-top: 2px solid rgba(255,30,30,0.25);
    border-radius: 10px;
    padding: 30px 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.start-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(255,30,30,0.35);
    border-top-color: rgba(255,30,30,0.5);
    box-shadow: 0 18px 42px rgba(0,0,0,0.55), 0 0 24px rgba(255,30,30,0.15);
}
.start-step {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.52);
    margin-bottom: 10px;
}
.start-card h3 {
    font-size: 1.14rem;
    color: #fff;
    margin-bottom: 10px;
}
.start-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    line-height: 1.68;
    margin-bottom: 16px;
}
.start-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255,30,30,0.45);
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    background: rgba(255,30,30,0.08);
    transition: all 0.2s ease;
    cursor: pointer;
}
.start-link:hover {
    background: #ff1a1a;
    color: #fff;
    border-color: #ff1a1a;
    box-shadow: 0 0 22px rgba(255,30,30,0.5);
}
.start-link-button {
    font-family: 'Inter', 'Segoe UI', sans-serif;
}
.start-link-button.copied {
    background: #ff1a1a;
    border-color: #ff1a1a;
    color: #fff;
}

/* ========================= GALLERY ========================= */
.gallery-section { background: rgba(10,0,0,0.88); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 10px; border: 1px solid rgba(255,30,30,0.1); cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.gallery-item:hover { border-color: rgba(255,30,30,0.25); transform: translateY(-4px) scale(1.01); box-shadow: 0 18px 40px rgba(0,0,0,0.7), 0 0 16px rgba(255,30,30,0.12); }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.4s ease, filter 0.4s ease; filter: brightness(0.65); }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(0.9); }
.image-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.92), transparent); padding: 28px 18px 18px; transform: translateY(100%); transition: transform 0.3s ease; }
.gallery-item:hover .image-overlay { transform: translateY(0); }
.image-overlay h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.image-overlay p  { color: #888; font-size: 0.82rem; }

/* ========================= FEATURES ========================= */
.features-section { background: rgba(8,0,0,0.88); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; text-align: left; }
.feature-card { background: rgba(255,30,30,0.03); border: 1px solid rgba(255,30,30,0.1); border-top: 2px solid rgba(255,30,30,0.2); padding: 32px 24px; border-radius: 10px; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.feature-card:hover { background: rgba(255,30,30,0.07); border-color: rgba(255,30,30,0.25); border-top-color: rgba(255,30,30,0.45); transform: translateY(-4px) scale(1.01); box-shadow: 0 16px 38px rgba(0,0,0,0.5), 0 0 20px rgba(255,30,30,0.15); }
.feature-icon { font-size: 1.6rem; margin-bottom: 14px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(255,30,30,0.08); border: 1px solid rgba(255,30,30,0.1); }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.feature-card p  { color: rgba(255,255,255,0.46); font-size: 0.87rem; line-height: 1.65; }

/* ========================= ABOUT ========================= */
.content-section { background: rgba(10,0,0,0.88); }
.content-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; text-align: left; }
.content-card { background: rgba(255,30,30,0.03); border: 1px solid rgba(255,30,30,0.1); border-top: 2px solid rgba(255,30,30,0.2); border-radius: 10px; padding: 32px 24px; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.content-card:hover { border-color: rgba(255,30,30,0.25); border-top-color: rgba(255,30,30,0.45); background: rgba(255,30,30,0.07); transform: translateY(-4px) scale(1.01); box-shadow: 0 16px 38px rgba(0,0,0,0.5), 0 0 20px rgba(255,30,30,0.15); }

/* ========================= WHY ========================= */
.why-section { background: rgba(12,0,0,0.9); }
.why-lead {
    max-width: 760px;
    margin: -20px auto 34px;
    color: rgba(255,255,255,0.62);
    line-height: 1.75;
    font-size: 0.95rem;
    text-shadow: 0 0 10px rgba(255,255,255,0.12);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
    text-align: left;
}
.why-card {
    background: linear-gradient(160deg, rgba(255,30,30,0.04), rgba(255,30,30,0.01));
    border: 1px solid rgba(255,30,30,0.12);
    border-top: 2px solid rgba(255,30,30,0.2);
    border-radius: 10px;
    padding: 30px 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: inset 0 0 20px rgba(255,30,30,0.03);
}
.why-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 16px rgba(255,30,30,0.2);
}
.why-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.87rem;
    line-height: 1.68;
}
.why-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(255,30,30,0.3);
    border-top-color: rgba(255,30,30,0.45);
    box-shadow: 0 16px 38px rgba(0,0,0,0.5), 0 0 24px rgba(255,30,30,0.18);
    background: linear-gradient(160deg, rgba(255,30,30,0.08), rgba(255,30,30,0.02));
}

.content-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.content-card p  { color: rgba(255,255,255,0.46); font-size: 0.87rem; line-height: 1.65; }

/* ========================= RULES ========================= */
.rules-section { background: rgba(8,0,0,0.88); }
.rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; text-align: left; }
.rule-card { background: rgba(255,30,30,0.03); border: 1px solid rgba(255,30,30,0.1); border-top: 2px solid rgba(255,30,30,0.2); border-radius: 10px; padding: 28px 24px; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.rule-card:hover { border-color: rgba(255,30,30,0.25); border-top-color: rgba(255,30,30,0.45); background: rgba(255,30,30,0.07); transform: translateY(-4px) scale(1.01); box-shadow: 0 16px 38px rgba(0,0,0,0.5), 0 0 20px rgba(255,30,30,0.15); }
.rule-num { display: block; font-size: 3rem; font-weight: 900; color: rgba(255,30,30,0.12); line-height: 1; margin-bottom: 8px; }
.rule-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.rule-card p  { color: rgba(255,255,255,0.46); font-size: 0.87rem; line-height: 1.65; }

.feature-card h3,
.content-card h3,
.why-card h3,
.rule-card h3 {
    position: relative;
    display: inline-block;
    transition: text-shadow 0.2s ease, color 0.2s ease;
}
.feature-card h3::after,
.content-card h3::after,
.why-card h3::after,
.rule-card h3::after {
    content: " ✦";
    opacity: 0;
    color: rgba(255,30,30,0.9);
    text-shadow: 0 0 8px rgba(255,30,30,0.8);
    transition: opacity 0.2s ease;
}
.feature-card h3:hover,
.content-card h3:hover,
.why-card h3:hover,
.rule-card h3:hover {
    color: #ff1a1a;
    text-shadow: 0 0 24px rgba(255,30,30,0.46);
}
.feature-card h3:hover::after,
.content-card h3:hover::after,
.why-card h3:hover::after,
.rule-card h3:hover::after {
    opacity: 1;
}

/* ========================= FOOTER ========================= */
footer { background: linear-gradient(180deg, rgba(8,0,0,0.9), rgba(5,0,0,0.98)); border-top: 1px solid rgba(255,30,30,0.1); padding: 50px 20px; text-align: center; position: relative; z-index: 5; }
.footer-logo { font-size: 1rem; font-weight: 900; letter-spacing: 3px; color: #ff1a1a; margin-bottom: 14px; text-transform: uppercase; }
.footer-logo span { color: #555; }
footer p { color: rgba(255,255,255,0.3); font-size: 0.82rem; margin: 5px 0; }
footer a { color: rgba(255,60,60,0.6); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: #ff1a1a; }

/* ========================= PROMO POPUP ========================= */
.promo-overlay {
    position: fixed;
    inset: 0;
    z-index: 128;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.promo-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}
.promo-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 130;
    width: min(620px, calc(100vw - 34px));
    padding: 34px 32px 28px;
    border-radius: 18px;
    border: 1px solid rgba(255,30,30,0.25);
    background: linear-gradient(165deg, rgba(20,2,2,0.98), rgba(36,5,5,0.95));
    box-shadow: 0 16px 58px rgba(0,0,0,0.72), 0 0 0 1px rgba(255,30,30,0.08), 0 0 54px rgba(255,30,30,0.2);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -44%) scale(0.96);
    transition: opacity 0.28s ease, transform 0.28s ease;
    overflow: hidden;
}
.promo-popup::before {
    content: "";
    position: absolute;
    inset: -35% -30% auto;
    height: 220px;
    background: radial-gradient(circle at 50% 50%, rgba(255,30,30,0.2), rgba(255,30,30,0));
    opacity: 0.9;
    animation: promoGlow 6s ease-in-out infinite;
    pointer-events: none;
}
.promo-popup.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}
.promo-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,30,30,0.3);
    background: rgba(255,30,30,0.1);
    color: #fff;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.promo-popup-close:hover {
    background: rgba(255,30,30,0.2);
    border-color: rgba(255,30,30,0.5);
}
.promo-popup-kicker {
    position: relative;
    z-index: 1;
    color: rgba(255,80,80,0.9);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.promo-popup-title {
    position: relative;
    z-index: 1;
    font-size: 2.9rem;
    letter-spacing: 0.5px;
    line-height: 1.06;
    margin-bottom: 14px;
    text-transform: uppercase;
    text-shadow: 0 0 28px rgba(255,30,30,0.4);
}
.promo-popup-text {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.92);
    font-size: 1.14rem;
    line-height: 1.58;
    max-width: 34ch;
    margin-bottom: 10px;
}
.promo-popup-note {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.72);
    font-size: 0.96rem;
    line-height: 1.5;
    margin-bottom: 18px;
}
.promo-code-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 16px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,30,30,0.3);
    border-radius: 16px;
    background: linear-gradient(140deg, rgba(255,30,30,0.1), rgba(255,30,30,0.03));
}
.promo-code-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}
.copy-notification {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.8);
    background: rgba(255, 60, 60, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(255, 60, 60, 0.4);
    letter-spacing: 0.5px;
}
.copy-notification.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    animation: popupBounce 0.5s ease-out;
}
@keyframes popupBounce {
    0% {
        transform: translateX(-50%) translateY(0) scale(0.8);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(-8px) scale(1.05);
    }
    100% {
        transform: translateX(-50%) translateY(-5px) scale(1);
        opacity: 1;
    }
}
.promo-code-label {
    color: rgba(255,255,255,0.82);
    font-size: 0.82rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.promo-code {
    display: inline-block;
    padding: 8px 14px;
    margin: 0;
    border-radius: 999px;
    border: 1px solid rgba(255,60,60,0.6);
    background: rgba(255,30,30,0.2);
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 1.1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Inter', sans-serif;
    box-shadow: 0 0 0 rgba(255,30,30,0);
}
.promo-code:hover {
    background: rgba(255,30,30,0.4);
    border-color: rgba(255,60,60,1);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255,30,30,0.5);
}
.promo-code:active {
    transform: scale(0.96);
    box-shadow: 0 0 10px rgba(255,30,30,0.3);
}
.promo-code.copied {
    background: rgba(255, 60, 60, 0.5);
    border-color: rgba(255, 60, 60, 1);
    box-shadow: 0 0 20px rgba(255, 60, 60, 0.6);
}
.promo-code-copy-hint {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}
.promo-popup-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 14px;
}
.promo-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid rgba(255,30,30,0.3);
    color: #fff;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    min-height: 52px;
    padding: 14px 14px;
    background: rgba(255,30,30,0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 0 rgba(255,30,30,0);
}
.promo-btn:hover {
    background: rgba(255,30,30,0.25);
    border-color: rgba(255,30,30,0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(255,30,30,0.25);
}
.promo-btn-primary {
    background: #ff1a1a;
    color: #fff;
    border-color: #ff1a1a;
    box-shadow: 0 0 24px rgba(255,30,30,0.5);
}
.promo-btn-primary:hover {
    box-shadow: 0 8px 32px rgba(255,30,30,0.7);
    transform: translateY(-3px);
    background: #ff3333;
}
@keyframes promoGlow {
    0%, 100% { transform: translateX(-10%); opacity: 0.5; }
    50% { transform: translateX(10%); opacity: 0.85; }
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 20px;
    z-index: 120;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    border: 1px solid rgba(255,30,30,0.4);
    border-radius: 999px;
    background: rgba(10,0,0,0.8);
    color: #ff1a1a;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 14px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-to-top:hover {
    background: #ff1a1a;
    color: #fff;
    border-color: #ff1a1a;
}

/* ========================= STORE PAGE ========================= */
.store-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    background:
        radial-gradient(circle at 40% 40%, rgba(255,30,30,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(200,0,0,0.1) 0%, transparent 50%),
        rgba(10,0,0,0.95);
    border-bottom: 1px solid rgba(255,30,30,0.1);
    padding-top: 80px;
}
.store-hero-content {
    text-align: center;
    padding: 60px 24px 40px;
}

.store-section {
    position: relative;
    z-index: 5;
}
.store-tiers-section {
    background:
        radial-gradient(circle at 20% 30%, rgba(255,30,30,0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,30,30,0.04) 0%, transparent 40%),
        rgba(8,0,0,0.92);
    border-top: 1px solid rgba(255,30,30,0.08);
}
.store-info-section {
    background: rgba(12,0,0,0.9);
    border-top: 1px solid rgba(255,30,30,0.08);
}
.store-tiers-lead {
    max-width: 700px;
    margin: -20px auto 40px;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Store Grid */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    text-align: left;
}
.store-card {
    position: relative;
    background: linear-gradient(165deg, rgba(255,30,30,0.06), rgba(255,30,30,0.015));
    border: 1px solid rgba(255,30,30,0.15);
    border-top: 2px solid rgba(255,30,30,0.25);
    border-radius: 10px;
    padding: 32px 24px 28px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}
.store-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(255,30,30,0.35);
    border-top-color: rgba(255,30,30,0.5);
    box-shadow: 0 18px 42px rgba(0,0,0,0.55), 0 0 24px rgba(255,30,30,0.15);
}
.store-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ff1a1a;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
}
.store-card-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}
.store-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.store-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.87rem;
    line-height: 1.65;
    margin-bottom: 18px;
    flex-grow: 1;
}
.store-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ff1a1a;
    margin-bottom: 18px;
    text-shadow: 0 0 20px rgba(255,30,30,0.3);
}
.store-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff1a1a, #cc1414);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.22s ease;
    box-shadow: 0 0 20px rgba(255,30,30,0.3);
}
.store-buy-btn:hover {
    background: linear-gradient(135deg, #ff3333, #e01818);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255,30,30,0.5), 0 8px 20px rgba(0,0,0,0.3);
}

/* Gang Tier Cards */
.store-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    text-align: left;
}
.tier-card {
    position: relative;
    background: linear-gradient(165deg, rgba(255,30,30,0.04), rgba(255,30,30,0.01));
    border: 1px solid rgba(255,30,30,0.12);
    border-top: 2px solid rgba(255,30,30,0.22);
    border-radius: 10px;
    padding: 32px 24px 28px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}
.tier-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(255,30,30,0.3);
    border-top-color: rgba(255,30,30,0.45);
    box-shadow: 0 18px 42px rgba(0,0,0,0.55), 0 0 22px rgba(255,30,30,0.15);
}
.tier-card.tier-3 {
    border-color: rgba(255,30,30,0.35);
    border-top: 2px solid rgba(255,30,30,0.45);
    background: linear-gradient(165deg, rgba(255,30,30,0.08), rgba(255,30,30,0.02));
    box-shadow: 0 0 30px rgba(255,30,30,0.12);
}
.tier-card.tier-5 {
    border-color: rgba(255,180,30,0.3);
    border-top: 2px solid rgba(255,180,30,0.4);
    background: linear-gradient(165deg, rgba(255,180,30,0.06), rgba(255,30,30,0.02));
    box-shadow: 0 0 30px rgba(255,180,30,0.1);
}
.tier-card.tier-5:hover {
    border-color: rgba(255,180,30,0.5);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 30px rgba(255,180,30,0.25);
}
.tier-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ff1a1a;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.tier-card.tier-5 .tier-badge {
    color: #ffb41e;
}
.tier-popular {
    display: inline-block;
    background: #ff1a1a;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: fit-content;
}
.tier-elite {
    background: linear-gradient(135deg, #ffb41e, #ff6b1a);
}
.tier-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.tier-perks {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}
.tier-perks li {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}
.tier-perks li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #ff1a1a;
    font-size: 0.9rem;
    font-weight: 700;
    top: 3px;
}
.tier-card.tier-5 .tier-perks li::before {
    color: #ffb41e;
}
.tier-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff1a1a;
    margin-bottom: 18px;
    text-shadow: 0 0 20px rgba(255,30,30,0.3);
}
.tier-card.tier-5 .tier-price {
    color: #ffb41e;
    text-shadow: 0 0 20px rgba(255,180,30,0.3);
}

/* Store Info Cards */
.store-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    text-align: left;
}
.store-info-card {
    background: linear-gradient(165deg, rgba(255,30,30,0.05), rgba(255,30,30,0.01));
    border: 1px solid rgba(255,30,30,0.12);
    border-top: 2px solid rgba(255,30,30,0.2);
    border-radius: 10px;
    padding: 30px 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.store-info-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(255,30,30,0.25);
    border-top-color: rgba(255,30,30,0.45);
    box-shadow: 0 16px 38px rgba(0,0,0,0.5), 0 0 18px rgba(255,30,30,0.12);
}
.store-info-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}
.store-info-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.87rem;
    line-height: 1.68;
}

/* Active nav link */
.nav-links a.active {
    color: #ff1a1a;
}

/* ========================= MOBILE MENU ========================= */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}
.hamburger-line {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}
.nav-mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.nav-mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 768px) {
    .navbar { 
        padding: 14px 20px; 
        flex-wrap: wrap;
    }
    .nav-mobile-toggle { 
        display: flex; 
        order: 2;
    }
    .nav-logo {
        order: 1;
    }
    .nav-discord {
        order: 3;
        font-size: 0.75rem;
        padding: 7px 14px;
    }
    .discord-icon-nav {
        width: 14px;
        height: 14px;
    }
    .nav-links { 
        display: none;
        flex-direction: column;
        width: 100%;
        order: 4;
        margin-top: 14px;
        padding: 14px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        gap: 8px;
    }
    .nav-links.mobile-active {
        display: flex;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        display: block;
        padding: 10px 0;
        font-size: 0.8rem;
    }
    .hero-stats { flex-wrap: wrap; bottom: 14px; padding: 0 14px; gap: 6px; }
    .stat-divider { display: none; }
    .stat-item { padding: 0 10px; }
    .stat-num { font-size: 1.6rem; }
    .section-container { padding: 70px 20px; }
    .hero-title { font-size: 2.4rem; }
    .hero-content { margin-top: -30px; }
    .hero-desc { font-size: 0.88rem; }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .live-status-strip { padding: 9px 12px; gap: 10px; flex-direction: column; }
    .live-item { font-size: 0.64rem; }
    .start-kicker { font-size: 0.7rem; letter-spacing: 2px; }
    .start-title { font-size: 1.9rem; margin-bottom: 18px; }
    .fivem-spotlight { padding: 20px 16px; margin-bottom: 24px; }
    .fivem-spotlight-text { font-size: 0.96rem; }
    .fivem-cta { width: 100%; padding: 14px 16px; font-size: 0.78rem; }
    .start-grid {
        grid-template-columns: 1fr;
    }
    .features-grid,
    .content-grid,
    .why-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }
    .back-to-top { right: 14px; bottom: 14px; }
    .promo-popup {
        top: auto;
        left: 12px;
        right: 12px;
        bottom: 62px;
        width: auto;
        padding: 24px 18px 18px;
        border-radius: 16px;
        transform: translateY(12px) scale(0.98);
    }
    .promo-popup.visible { transform: translateY(0) scale(1); }
    .promo-popup-kicker { font-size: 0.72rem; }
    .promo-popup-title { font-size: 2.1rem; margin-bottom: 12px; }
    .promo-popup-text { font-size: 1rem; line-height: 1.55; max-width: none; }
    .promo-popup-note { font-size: 0.9rem; }
    .promo-code-row { padding: 13px 12px; border-radius: 14px; }
    .promo-code-label { font-size: 0.7rem; }
    .promo-code { font-size: 0.9rem; padding: 6px 11px; }
    .promo-btn { font-size: 0.78rem; min-height: 48px; }
    .promo-popup-actions { flex-direction: column; }
}

/* Smaller phones */
@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-desc { font-size: 0.82rem; }
    .stat-num { font-size: 1.3rem; }
    .stat-label { font-size: 0.58rem; }
    .section-title { font-size: 1.6rem; }
    .hero-tagline { font-size: 0.62rem; }
    .nav-logo { font-size: 0.9rem; }
}
