/* ==========================================
   BLOK PASS - Core Styling (Cyberpunk Theme)
   ========================================== */

/* 1. Global Reset & Variables */
:root {
    --bg-dark: #070D19;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-header: rgba(7, 13, 25, 0.75);
    
    --color-cyan: #00E5FF;
    --color-orange: #FFB300;
    --color-lime: #00FF00;
    --color-pink: #FF1744;
    --color-text: #E0E6ED;
    --color-text-muted: #8C9BAE;

    --font-heading: 'Orbitron', sans-serif;
    --font-sub: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --border-glass: rgba(255, 255, 255, 0.08);
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-cyan), var(--color-orange));
    border-radius: 10px;
}

/* Common Text Styling */
a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   2. Header Navigation
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.header-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 1px;
}

.brand-logo span {
    display: inline-block;
    transition: var(--transition-smooth);
}

.logo-b { color: var(--color-orange); text-shadow: 0 0 10px rgba(255, 179, 0, 0.6); margin-right: 2px; }
.logo-l { color: #29B6F6; text-shadow: 0 0 10px rgba(41, 182, 246, 0.6); margin-right: 2px; }
.logo-o { color: #FF5252; text-shadow: 0 0 10px rgba(255, 82, 82, 0.6); margin-right: 2px; }
.logo-k { color: #AB47BC; text-shadow: 0 0 10px rgba(171, 71, 188, 0.6); margin-right: 8px; }
.logo-pass {
    color: var(--color-cyan);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

.brand-logo:hover span {
    transform: translateY(-2px);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-sub);
    font-weight: 700;
    color: var(--color-text-muted);
    font-size: 15px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-cyan));
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: #FFF;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-download-sm {
    background: linear-gradient(135deg, var(--color-orange), #E65100);
    padding: 10px 22px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 179, 0, 0.35);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-download-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 179, 0, 0.55);
}

/* ==========================================
   3. Hero Section
   ========================================== */
.hero-section {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Grid Line Pattern */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 45px 45px;
    pointer-events: none;
    z-index: 1;
}

/* Glow Spheres */
.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.22;
    pointer-events: none;
    z-index: 2;
}

.sphere-cyan {
    top: 15%;
    right: 10%;
    width: 450px;
    height: 450px;
    background-color: var(--color-cyan);
}

.sphere-orange {
    bottom: 10%;
    left: 8%;
    width: 400px;
    height: 400px;
    background-color: var(--color-orange);
}

.hero-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 35px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 75px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-badge {
    background-color: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
    color: var(--color-cyan);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    padding: 8px 18px;
    border-radius: 30px;
    align-self: flex-start;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.text-glow-orange {
    color: var(--color-orange);
    text-shadow: 0 0 35px rgba(255, 179, 0, 0.45);
}

.text-glow-cyan {
    color: var(--color-cyan);
    text-shadow: 0 0 35px rgba(0, 229, 255, 0.45);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--color-text-muted);
    margin-bottom: 45px;
    max-width: 550px;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-cyan), #00B0FF);
    color: #050C1A;
    padding: 16px 32px;
    border-radius: 16px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 1px;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.35);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(0, 229, 255, 0.55);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.02);
    color: #FFF;
    padding: 16px 32px;
    border-radius: 16px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* ==========================================
   4. Visual Animation Card
   ========================================== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

.visual-card-wrapper {
    position: relative;
    perspective: 1000px;
}

.visual-card {
    width: 380px;
    height: 480px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border-glass);
    border-radius: 32px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.45);
    transition: var(--transition-smooth);
    transform-style: preserve-3d;
    cursor: pointer;
}

.visual-card:hover {
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 25px 80px rgba(0, 229, 255, 0.15);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.18), transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.visual-card:hover .card-glow {
    opacity: 1;
}

.visual-screen {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.screen-mode {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--color-lime);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.45);
}

.screen-fps {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--color-text-muted);
}

.pulse-icon {
    align-self: center;
    font-size: 55px;
    color: var(--color-cyan);
    text-shadow: 0 0 35px rgba(0, 229, 255, 0.7);
    margin: 40px 0;
    animation: iconPulse 2s infinite ease-in-out;
}

.screen-data {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.data-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.data-row span {
    font-family: var(--font-heading);
    font-size: 10px;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

.bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-orange));
    border-radius: 4px;
}

/* ==========================================
   5. Game Modes Section
   ========================================== */
.game-modes-section {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    background-color: rgba(0, 0, 0, 0.25);
}

.sphere-pink {
    top: 50%;
    left: 45%;
    width: 380px;
    height: 380px;
    background-color: var(--color-pink);
    opacity: 0.12;
}

.section-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 35px;
    position: relative;
    z-index: 4;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 65px auto;
}

.section-badge {
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-text-muted);
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.mode-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.mode-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.03), transparent 60%);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mode-card:hover::before {
    transform: translate(5%, 5%);
}

.mode-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Specific mode borders and glows on hover */
.border-lime:hover {
    border-color: rgba(0, 255, 0, 0.35);
    box-shadow: 0 20px 55px rgba(0, 255, 0, 0.06);
}
.border-orange:hover {
    border-color: rgba(255, 179, 0, 0.35);
    box-shadow: 0 20px 55px rgba(255, 179, 0, 0.06);
}
.border-cyan:hover {
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 20px 55px rgba(0, 229, 255, 0.06);
}

.mode-icon {
    font-size: 38px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.mode-card:hover .mode-icon {
    transform: scale(1.15);
}

.text-glow-lime {
    color: var(--color-lime);
    text-shadow: 0 0 25px rgba(0, 255, 0, 0.45);
}

.text-glow-orange {
    color: var(--color-orange);
    text-shadow: 0 0 25px rgba(255, 179, 0, 0.45);
}

.text-glow-cyan {
    color: var(--color-cyan);
    text-shadow: 0 0 25px rgba(0, 229, 255, 0.45);
}

.mode-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.mode-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    flex-grow: 1;
}

.mode-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.stat-tag {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 6px 14px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 11px;
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

/* ==========================================
   6. Features Section
   ========================================== */
.features-section {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    background-color: var(--bg-dark);
}

.sphere-orange-features {
    bottom: 25%;
    right: 15%;
    width: 350px;
    height: 350px;
    background-color: var(--color-orange);
    opacity: 0.12;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.feature-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 25px;
    backdrop-filter: blur(8px);
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-box {
    transform: scale(1.1) rotate(5deg);
    border-color: currentColor;
    background-color: rgba(255, 255, 255, 0.05);
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 700;
    color: #FFF;
    letter-spacing: 0.5px;
}

.feature-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ==========================================
   7. Leaderboard & Footer Section
   ========================================== */
.leaderboard-section {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);
}

.sphere-cyan-leaderboard {
    top: 30%;
    left: 20%;
    width: 320px;
    height: 320px;
    background-color: var(--color-cyan);
    opacity: 0.1;
}

.leaderboard-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border-glass);
    border-radius: 28px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-family: var(--font-body);
}

.leaderboard-table th {
    font-family: var(--font-heading);
    color: var(--color-text-muted);
    font-size: 13px;
    letter-spacing: 1px;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.leaderboard-table td {
    padding: 20px 24px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--color-text);
}

.leaderboard-table tr:last-child td {
    border-bottom: none;
}

.leaderboard-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.015);
}

.player-name {
    font-weight: 700;
    font-family: var(--font-sub);
}

.player-mode {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mode-zenith {
    color: var(--color-cyan);
}

.mode-overdrive {
    color: var(--color-orange);
}

.mode-classic {
    color: var(--color-lime);
}

.player-score {
    font-family: var(--font-heading);
    font-weight: 900;
    color: #FFF;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.top-player td {
    background-color: rgba(255, 255, 255, 0.02);
}

.rank-1 .player-name {
    color: var(--color-orange);
    text-shadow: 0 0 12px rgba(255, 179, 0, 0.2);
}

/* Gallery Section Styles */
.gallery-section {
    min-height: 100vh;
    padding: 100px 0;
    position: relative;
    background-color: var(--bg-dark);
}

.sphere-pink-gallery {
    top: 40%;
    right: 25%;
    width: 320px;
    height: 320px;
    background-color: var(--color-pink);
    opacity: 0.12;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 50px;
    margin-top: 40px;
    justify-content: center;
}

.gallery-item {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* Phone Mockup Wrapper */
.phone-mockup {
    width: 320px;
    height: 640px;
    background: #01060F;
    border: 12px solid #141B26;
    border-radius: 42px;
    position: relative;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 0 15px rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    overflow: hidden;
    cursor: pointer;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 50%);
    pointer-events: none;
    z-index: 5;
}

.phone-notch {
    width: 130px;
    height: 24px;
    background-color: #141B26;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
}

.gallery-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover .phone-mockup {
    transform: translateY(-12px) rotateY(4deg) rotateX(2deg);
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 35px 85px rgba(0, 229, 255, 0.15),
                0 0 0 1px rgba(0, 229, 255, 0.2);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 24px;
    transition: var(--transition-smooth);
    z-index: 4;
}

.overlay-text {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 900;
    color: #FFF;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.45);
}

@media screen and (max-width: 600px) {
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
}

/* Footer Section Styles */
.main-footer {
    background-color: rgba(0, 0, 0, 0.55);
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 35px 0;
    position: relative;
    z-index: 5;
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 35px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 65px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-muted);
    max-width: 320px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 13px;
    color: #FFF;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.footer-links a {
    font-family: var(--font-sub);
    font-size: 14px;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-cyan);
    transform: translateX(4px);
}

.footer-download {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.download-btns .btn-primary, .download-btns .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
    justify-content: center;
    border-radius: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

/* ==========================================
   8. Keyframes & Animations
   ========================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(35px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 35px rgba(0, 229, 255, 0.7);
    }
    50% {
        transform: scale(1.15);
        text-shadow: 0 0 50px rgba(0, 229, 255, 0.95);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 35px rgba(0, 229, 255, 0.7);
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-badge {
        align-self: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .main-header {
        height: 70px;
    }
    .nav-menu {
        display: none; /* simple for now */
    }
    .hero-title {
        font-size: 44px;
    }
    .visual-card {
        width: 320px;
        height: 420px;
    }
}
