/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6600;
    --secondary-color: #FF8533;
    --accent-color: #FFB84D;
    --dark-orange: #E55A00;
    --light-orange: #FFAA66;
    --bg-dark: #1a0f00;
    --bg-darker: #0f0800;
    --text-primary: #ffffff;
    --text-secondary: #ffcc99;
    --glow-orange: rgba(255, 102, 0, 0.5);
    --glow-orange-light: rgba(255, 133, 51, 0.5);
    --glow-orange-accent: rgba(255, 184, 77, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background-color: var(--bg-darker);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== MATRIX BACKGROUND ==================== */
#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.12;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 15, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 102, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 15, 0, 0.95);
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.15);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.glitch {
    position: relative;
    color: var(--primary-color);
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--dark-orange);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--light-orange);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch {
    0%, 100% {
        text-shadow: 
            0.05em 0 0 var(--dark-orange),
            -0.05em -0.025em 0 var(--light-orange),
            0.025em 0.05em 0 var(--primary-color);
    }
    15% {
        text-shadow: 
            0.05em 0 0 var(--dark-orange),
            -0.05em -0.025em 0 var(--light-orange),
            0.025em 0.05em 0 var(--primary-color);
    }
    16% {
        text-shadow: 
            -0.05em -0.025em 0 var(--dark-orange),
            0.025em 0.025em 0 var(--light-orange),
            -0.05em -0.05em 0 var(--primary-color);
    }
    49% {
        text-shadow: 
            -0.05em -0.025em 0 var(--dark-orange),
            0.025em 0.025em 0 var(--light-orange),
            -0.05em -0.05em 0 var(--primary-color);
    }
    50% {
        text-shadow: 
            0.025em 0.05em 0 var(--dark-orange),
            0.05em 0 0 var(--light-orange),
            0 -0.05em 0 var(--primary-color);
    }
    99% {
        text-shadow: 
            0.025em 0.05em 0 var(--dark-orange),
            0.05em 0 0 var(--light-orange),
            0 -0.05em 0 var(--primary-color);
    }
    100% {
        text-shadow: 
            -0.025em 0 0 var(--dark-orange),
            -0.025em -0.025em 0 var(--light-orange),
            -0.025em -0.05em 0 var(--primary-color);
    }
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    20% { clip: rect(54px, 9999px, 66px, 0); }
    40% { clip: rect(28px, 9999px, 92px, 0); }
    60% { clip: rect(42px, 9999px, 98px, 0); }
    80% { clip: rect(38px, 9999px, 93px, 0); }
    100% { clip: rect(88px, 9999px, 98px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    20% { clip: rect(79px, 9999px, 85px, 0); }
    40% { clip: rect(66px, 9999px, 99px, 0); }
    60% { clip: rect(93px, 9999px, 98px, 0); }
    80% { clip: rect(20px, 9999px, 60px, 0); }
    100% { clip: rect(60px, 9999px, 102px, 0); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
    width: 100%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.terminal-window {
    max-width: 700px;
    margin: 0 auto 3rem;
    background: rgba(26, 15, 0, 0.9);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 30px var(--glow-orange);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
}

.terminal-header {
    background: rgba(255, 102, 0, 0.15);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--primary-color);
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff4444;
}

.terminal-btn:nth-child(2) {
    background: var(--accent-color);
}

.terminal-btn:nth-child(3) {
    background: var(--primary-color);
}

.terminal-title {
    margin-left: auto;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-family: 'Share Tech Mono', monospace;
}

.terminal-body {
    padding: 1.5rem;
    min-height: 200px;
}

.terminal-output {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.terminal-line {
    margin-bottom: 0.5rem;
}

.prompt {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.command {
    color: var(--light-orange);
}

.output {
    color: var(--text-secondary);
    display: block;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.glitch-title {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    animation: glitch 3s infinite;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--glow-orange);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: transparent;
}

.btn-primary:hover {
    color: var(--bg-darker);
    background: var(--primary-color);
    box-shadow: 0 0 30px var(--glow-orange);
}

.btn-secondary {
    color: var(--text-primary);
    border-color: var(--text-secondary);
    background: transparent;
}

.btn-secondary:hover {
    color: var(--bg-darker);
    background: var(--text-primary);
    border-color: var(--text-primary);
}

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px var(--glow-orange);
    }
    50% {
        box-shadow: 0 0 40px var(--glow-orange), 0 0 60px var(--glow-orange);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 100px 0;
    background: rgba(26, 15, 0, 0.3);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.glitch-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary-color);
    display: inline-block;
    animation: glitch 3s infinite;
    position: relative;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(26, 15, 0, 0.7);
    border: 1px solid rgba(255, 102, 0, 0.3);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.15), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px var(--glow-orange);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==================== PROFILES SECTION ==================== */
.profiles {
    padding: 100px 0;
    position: relative;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.profile-card {
    background: rgba(26, 15, 0, 0.9);
    border: 2px solid;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.profile-card.aggressive {
    border-color: var(--primary-color);
}

.profile-card.tactical {
    border-color: var(--secondary-color);
}

.profile-card.sneaky {
    border-color: var(--accent-color);
}

.profile-card.social {
    border-color: var(--light-orange);
}

.profile-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.profile-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 40px var(--glow-orange);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.profile-icon {
    font-size: 2.5rem;
}

.profile-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.profile-card.aggressive .profile-header h3 {
    color: var(--primary-color);
}

.profile-card.tactical .profile-header h3 {
    color: var(--secondary-color);
}

.profile-card.sneaky .profile-header h3 {
    color: var(--accent-color);
}

.profile-card.social .profile-header h3 {
    color: var(--light-orange);
}

.profile-stat {
    margin-bottom: 1rem;
}

.stat-name {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.stat-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 4px;
    transition: width 1s ease;
}

.profile-bonus {
    background: rgba(255, 102, 0, 0.15);
    padding: 1rem;
    border-left: 3px solid var(--primary-color);
    margin-bottom: 1rem;
}

.bonus-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.bonus-text {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
}

.profile-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
}

/* ==================== ACTIONS SECTION ==================== */
.actions {
    padding: 100px 0;
    background: rgba(26, 15, 0, 0.3);
    position: relative;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.action-item {
    background: rgba(26, 15, 0, 0.7);
    border: 1px solid rgba(255, 102, 0, 0.3);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.action-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.action-item:hover::after {
    width: 300px;
    height: 300px;
}

.action-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 25px var(--glow-orange);
    transform: translateY(-5px);
}

.action-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.action-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.action-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ==================== SCREENSHOTS SECTION ==================== */
.screenshots {
    padding: 100px 0;
    background: rgba(26, 15, 0, 0.3);
    position: relative;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.screenshot-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    will-change: transform, opacity;
}

.screenshot-item[data-aos] {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
}

.screenshot-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 102, 0, 0.3);
    background: rgba(26, 15, 0, 0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.screenshot-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px var(--glow-orange);
    transform: translateY(-10px) scale(1.02);
}

.screenshot-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.screenshot-wrapper:hover .screenshot-image {
    transform: scale(1.1);
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.6) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-wrapper:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--bg-darker);
    border-radius: 50%;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 0 15px var(--glow-orange);
}

/* ==================== LIGHTBOX MODAL ==================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 8, 0, 0.98);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 50px var(--glow-orange);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--primary-color);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(26, 15, 0, 0.8);
    border: 2px solid var(--primary-color);
}

.lightbox-close:hover {
    background: var(--primary-color);
    color: var(--bg-darker);
    box-shadow: 0 0 20px var(--glow-orange);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(26, 15, 0, 0.8);
    border: 2px solid var(--primary-color);
    user-select: none;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    color: var(--bg-darker);
    box-shadow: 0 0 20px var(--glow-orange);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(26, 15, 0, 0.9);
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

/* ==================== DOWNLOAD SECTION ==================== */
.download {
    padding: 100px 0;
    position: relative;
    text-align: center;
}

.download-content {
    max-width: 800px;
    margin: 0 auto;
}

.download-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: rgba(26, 15, 0, 0.9);
    border: 2px solid;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--text-primary);
    min-width: 250px;
}

.download-btn svg {
    width: 40px;
    height: 40px;
}

.download-btn.android {
    border-color: var(--primary-color);
}

.download-btn.android:hover {
    background: rgba(255, 102, 0, 0.15);
    box-shadow: 0 0 30px var(--glow-orange);
    transform: translateY(-5px);
}

.download-btn.ios {
    border-color: var(--secondary-color);
}

.download-btn.ios:hover {
    background: rgba(255, 133, 51, 0.15);
    box-shadow: 0 0 30px var(--glow-orange-light);
    transform: translateY(-5px);
}

.download-btn strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.download-btn small {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.download-feature span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: rgba(26, 15, 0, 0.95);
    border-top: 1px solid rgba(255, 102, 0, 0.3);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li:last-child {
    margin-bottom: 0;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 102, 0, 0.2);
    color: var(--text-secondary);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-tagline {
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 15, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 102, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .features-grid,
    .profiles-grid,
    .actions-grid {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-section ul li {
        margin-bottom: 0.6rem;
    }

    .footer-section a {
        font-size: 0.9rem;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }

    .lightbox-caption {
        bottom: 20px;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpScale {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

[data-aos].animated.screenshot-item {
    animation: fadeInUpScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: none;
}

[data-aos].animated {
    animation: fadeInUp 0.6s ease forwards;
}

[data-aos][data-delay].animated {
    animation-delay: calc(var(--delay, 0) * 0.1s);
}

.feature-card[data-delay="100"] {
    --delay: 1;
}

.feature-card[data-delay="200"] {
    --delay: 2;
}

.feature-card[data-delay="300"] {
    --delay: 3;
}

.feature-card[data-delay="400"] {
    --delay: 4;
}

.feature-card[data-delay="500"] {
    --delay: 5;
}

.profile-card[data-delay="100"] {
    --delay: 1;
}

.profile-card[data-delay="200"] {
    --delay: 2;
}

.profile-card[data-delay="300"] {
    --delay: 3;
}

.screenshot-item[data-delay="100"] {
    --delay: 1;
}

.screenshot-item[data-delay="200"] {
    --delay: 2;
}

.screenshot-item[data-delay="300"] {
    --delay: 3;
}

.screenshot-item[data-delay="400"] {
    --delay: 4;
}

.screenshot-item[data-delay="500"] {
    --delay: 5;
}

.screenshot-item[data-delay="600"] {
    --delay: 6;
}
