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

        :root {
            --bg-primary: #1a2332;
            --bg-secondary: #0f1419;
            --bg-tertiary: #2a3a4a;
            --text-primary: #a4b1cd;
            --text-secondary: #7a8aa0;
            --accent: #9fef00;
            --accent-light: #c5f467;
            --border: #313f55;
            --danger: #ff3e3e;
            --success: #2ee7b6;
            --warning: #ffaf00;
            --gaming-primary: #9fef00;
            --gaming-secondary: #ff2a6d;
            --gaming-accent: #fcee0a;
            --gaming-success: #05ffa1;
            --gaming-void: #0a0a0f;
            --gaming-surface: #1a2332;
            --glow-intense: 0 0 20px var(--gaming-primary), 0 0 40px rgba(0, 240, 255, 0.3);
            --glow-medium: 0 0 15px var(--gaming-primary), 0 0 30px rgba(0, 240, 255, 0.2);
            --glow-subtle: 0 0 10px var(--gaming-primary), 0 0 20px rgba(0, 240, 255, 0.1);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* ========== NAVIGATION ========== */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            border-bottom: 2px solid var(--accent);
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 20px rgba(159, 239, 0, 0.1);
            animation: slideDown 0.6s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent);
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(159, 239, 0, 0.3);
        }

        .nav-center {
            display: flex;
            gap: 2rem;
        }

        .nav-link {
            color: var(--text-primary);
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }

        .nav-link:hover {
            color: var(--accent);
            text-shadow: 0 0 10px rgba(159, 239, 0, 0.3);
            background: rgba(159, 239, 0, 0.1);
            transform: translateY(-2px);
        }

        .nav-right {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .lang-switch {
            background: var(--bg-secondary);
            border: 1px solid var(--accent);
            color: var(--accent);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .lang-switch:hover {
            background: var(--accent);
            color: var(--bg-primary);
            box-shadow: 0 0 15px rgba(159, 239, 0, 0.4);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--accent);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ========== HERO SECTION ========== */
       /* ========== EPIC GAMING HERO SECTION - 2025 STYLE ========== */

        
        .gaming-hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(135deg, var(--gaming-void) 0%, #0f1a2a 100%);
            margin-top: 80px;
            border-bottom: 3px solid var(--gaming-primary);
            box-shadow: inset 0 0 60px rgba(0, 240, 255, 0.1);
        }

        .hero-bg-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(0, 240, 255, 0.03) 0%,
                rgba(255, 42, 109, 0.02) 50%,
                rgba(5, 255, 161, 0.03) 100%);
            animation: gradient-shift 8s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes gradient-shift {
            0%, 100% { filter: hue-rotate(0deg); }
            50% { filter: hue-rotate(20deg); }
        }

        .scanlines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.15),
                rgba(0, 0, 0, 0.15) 1px,
                transparent 1px,
                transparent 2px
            );
            pointer-events: none;
            z-index: 2;
            animation: scanline-flicker 0.15s infinite;
        }

        @keyframes scanline-flicker {
            0%, 100% { opacity: 0.05; }
            50% { opacity: 0.1; }
        }

        .particle-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            border: 2px solid var(--gaming-primary);
            opacity: 0.1;
            animation: float-element 12s ease-in-out infinite;
        }

        .floating-element.element-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            left: 10%;
            border-radius: 50%;
            animation: float-element 15s ease-in-out infinite;
            box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
        }

        .floating-element.element-2 {
            width: 150px;
            height: 300px;
            top: 50%;
            right: 5%;
            border-radius: 0;
            animation: float-element 18s ease-in-out infinite reverse;
            box-shadow: 0 0 20px rgba(255, 42, 109, 0.2);
            border-color: var(--gaming-secondary);
        }

        .floating-element.element-3 {
            width: 250px;
            height: 100px;
            bottom: 10%;
            left: 50%;
            animation: float-element 20s ease-in-out infinite;
            box-shadow: 0 0 25px rgba(5, 255, 161, 0.2);
            border-color: var(--gaming-success);
        }

        @keyframes float-element {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        .gaming-hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
            animation: content-fade-in 1.2s ease-out;
        }

        @keyframes content-fade-in {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .status-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            margin-bottom: 2rem;
            padding: 0.8rem 1.5rem;
            background: rgba(0, 240, 255, 0.05);
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: 4px;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            animation: pulse-border 2s ease-in-out infinite;
        }

        .status-dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: var(--gaming-success);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--gaming-success);
            animation: status-pulse 1s ease-in-out infinite;
        }

        @keyframes status-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        @keyframes pulse-border {
            0%, 100% { box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.2); }
            50% { box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.4); }
        }

        .status-text {
            color: var(--gaming-primary);
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            font-weight: bold;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .gaming-title {
            font-size: 5rem;
            font-weight: 900;
            color: var(--gaming-primary);
            margin: 0;
            margin-bottom: 1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-shadow: 
                0 0 20px var(--gaming-primary),
                0 0 40px rgba(0, 240, 255, 0.3),
                3px 3px 0 var(--gaming-secondary);
            position: relative;
            line-height: 1.1;
            animation: title-glow 3s ease-in-out infinite;
        }

        @keyframes title-glow {
            0%, 100% { 
                text-shadow: 
                    0 0 20px var(--gaming-primary),
                    0 0 40px rgba(0, 240, 255, 0.3),
                    3px 3px 0 var(--gaming-secondary);
            }
            50% { 
                text-shadow: 
                    0 0 30px var(--gaming-primary),
                    0 0 60px rgba(0, 240, 255, 0.5),
                    3px 3px 0 var(--gaming-secondary),
                    -3px -3px 0 var(--gaming-accent);
            }
        }

        .glitch-text {
            position: relative;
        }

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

        .glitch-text::before {
            animation: glitch-1 0.3s infinite;
            color: var(--gaming-secondary);
            z-index: -1;
            text-shadow: -2px 0 var(--gaming-secondary);
        }

        .glitch-text::after {
            animation: glitch-2 0.3s infinite;
            color: var(--gaming-accent);
            z-index: -2;
            text-shadow: 2px 0 var(--gaming-accent);
        }

        @keyframes glitch-1 {
            0% { clip-path: rect(0, 900px, 0, 0); }
            20% { clip-path: rect(10px, 900px, 60px, 0); }
            40% { clip-path: rect(30px, 900px, 100px, 0); }
            60% { clip-path: rect(50px, 900px, 130px, 0); }
            80% { clip-path: rect(20px, 900px, 70px, 0); }
            100% { clip-path: rect(0, 900px, 0, 0); }
        }

        @keyframes glitch-2 {
            0% { clip-path: rect(200px, 900px, 300px, 0); }
            20% { clip-path: rect(100px, 900px, 150px, 0); }
            40% { clip-path: rect(50px, 900px, 100px, 0); }
            60% { clip-path: rect(130px, 900px, 180px, 0); }
            80% { clip-path: rect(70px, 900px, 120px, 0); }
            100% { clip-path: rect(200px, 900px, 300px, 0); }
        }

        .gaming-subtitle {
            margin-bottom: 2rem;
        }

        .gaming-subtitle p {
            font-size: 1.5rem;
            color: var(--gaming-accent);
            margin: 0 0 1rem 0;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 600;
            animation: subtitle-glow 2s ease-in-out infinite;
        }

        @keyframes subtitle-glow {
            0%, 100% { 
                color: var(--gaming-accent);
                text-shadow: 0 0 10px var(--gaming-accent);
            }
            50% { 
                color: #fff;
                text-shadow: 0 0 20px var(--gaming-accent), 0 0 30px var(--gaming-accent);
            }
        }

        .subtitle-underline {
            width: 200px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gaming-primary), transparent);
            margin: 0 auto;
            animation: underline-expand 2s ease-in-out infinite;
        }

        @keyframes underline-expand {
            0%, 100% { width: 200px; }
            50% { width: 300px; }
        }

        .character-class {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin: 2rem 0;
            flex-wrap: wrap;
            animation: badges-slide-in 1s ease-out 0.3s backwards;
        }

        @keyframes badges-slide-in {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .class-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1rem 1.5rem;
            background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(5, 255, 161, 0.1) 100%);
            border: 2px solid var(--gaming-primary);
            border-radius: 0;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

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

        .class-badge:hover {
            border-color: var(--gaming-accent);
            box-shadow: var(--glow-intense);
            transform: translateY(-5px);
        }

        .class-badge:hover::before {
            left: 100%;
        }

        .badge-label {
            font-size: 0.75rem;
            color: var(--gaming-secondary);
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: bold;
            margin-bottom: 0.3rem;
        }

        .badge-value {
            font-size: 1.3rem;
            color: var(--gaming-primary);
            font-weight: bold;
            font-family: 'Courier New', monospace;
        }

        .gaming-cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin: 2rem 0;
            flex-wrap: wrap;
            animation: buttons-appear 1s ease-out 0.5s backwards;
        }

        @keyframes buttons-appear {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .cyber-btn {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: 2px solid var(--gaming-primary);
            background: rgba(0, 240, 255, 0.1);
            color: var(--gaming-primary);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            font-family: 'Courier New', monospace;
            text-decoration: none;
            display: inline-flex;
        }

        .cyber-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gaming-primary);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .cyber-btn:hover {
            color: var(--gaming-void);
            box-shadow: var(--glow-intense);
            transform: translateY(-3px);
        }

        .cyber-btn:hover::before {
            left: 0;
        }

        .cyber-btn.btn-secondary {
            border-color: var(--gaming-secondary);
            color: var(--gaming-secondary);
            background: rgba(255, 42, 109, 0.1);
        }

        .cyber-btn.btn-secondary::before {
            background: var(--gaming-secondary);
        }

        .cyber-btn.btn-secondary:hover {
            color: white;
            box-shadow: 0 0 30px var(--gaming-secondary), 0 0 60px rgba(255, 42, 109, 0.3);
        }

        .cyber-btn.btn-tertiary {
            border-color: var(--gaming-accent);
            color: var(--gaming-accent);
            background: rgba(252, 238, 10, 0.1);
        }

        .cyber-btn.btn-tertiary::before {
            background: var(--gaming-accent);
        }

        .cyber-btn.btn-tertiary:hover {
            color: var(--gaming-void);
            box-shadow: 0 0 30px var(--gaming-accent), 0 0 60px rgba(252, 238, 10, 0.3);
        }

        .btn-icon {
            font-size: 1.3rem;
            animation: icon-bounce 1s ease-in-out infinite;
        }

        @keyframes icon-bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .gaming-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: stats-scale-in 1s ease-out 0.7s backwards;
        }

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

        .stat-item {
            background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(5, 255, 161, 0.05) 100%);
            border: 2px solid var(--gaming-primary);
            padding: 1.5rem 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .stat-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(0, 240, 255, 0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .stat-item:hover::after {
            transform: translateX(100%);
        }

        .stat-item:hover {
            border-color: var(--gaming-accent);
            box-shadow: var(--glow-intense);
            transform: translateY(-5px);
        }

        .stat-value {
            display: block;
            font-size: 2.5rem;
            color: var(--gaming-accent);
            font-weight: bold;
            font-family: 'Courier New', monospace;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            display: block;
            font-size: 0.8rem;
            color: var(--gaming-primary);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            animation: scroll-bounce 2s ease-in-out infinite;
        }

        @keyframes scroll-bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        .scroll-text {
            font-size: 0.85rem;
            color: var(--gaming-primary);
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: bold;
        }

        .scroll-arrow {
            font-size: 1.5rem;
            color: var(--gaming-accent);
            animation: arrow-glow 1s ease-in-out infinite;
        }

        @keyframes arrow-glow {
            0%, 100% { 
                color: var(--gaming-accent);
                text-shadow: 0 0 5px var(--gaming-accent);
            }
            50% { 
                color: var(--gaming-primary);
                text-shadow: 0 0 15px var(--gaming-primary);
            }
        }

        @media (max-width: 768px) {
            .gaming-title {
                font-size: 3rem;
            }

            .gaming-subtitle p {
                font-size: 1.1rem;
            }

            .gaming-cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .cyber-btn {
                width: 100%;
                justify-content: center;
            }

            .character-class {
                flex-direction: column;
                gap: 1rem;
            }

            .gaming-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .status-bar {
                flex-wrap: wrap;
            }
        }


        /* Terminal */
        /* ========== TERMINAL SECTION ========== */
        .terminal-section {
            padding: 4rem 2rem;
            border-bottom: 1px solid var(--border);
            background: linear-gradient(135deg, rgba(159, 239, 0, 0.02) 0%, rgba(46, 231, 182, 0.02) 100%);
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 2rem;
            text-align: center;
            text-shadow: 0 0 10px rgba(159, 239, 0, 0.2);
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
        }

        .terminal-container {
            max-width: 900px;
            margin: 0 auto;
            background: var(--terminal-bg);
            border: 2px solid var(--accent);
            border-radius: 8px;
            box-shadow: 0 0 30px rgba(159, 239, 0, 0.2);
            overflow: hidden;
            animation: slideInUp 0.6s ease-out;
        }

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

        .terminal-header {
            background: linear-gradient(90deg, var(--bg-secondary), var(--bg-tertiary));
            padding: 1rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .terminal-title {
            color: var(--accent);
            font-weight: bold;
            font-family: 'Courier New', monospace;
            display: flex;
            gap: 0.5rem;
        }

        .terminal-buttons {
            display: flex;
            gap: 0.5rem;
        }

        .terminal-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .terminal-btn.close {
            background: var(--danger);
        }

        .terminal-btn.minimize {
            background: var(--warning);
        }

        .terminal-btn.maximize {
            background: var(--success);
        }

        .terminal-body {
            padding: 1.5rem;
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
            line-height: 1.6;
            height: 400px;
            overflow-y: auto;
            background: var(--terminal-bg);
            color: var(--terminal-text);
        }

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

        .terminal-prompt {
            color: var(--accent);
            display: flex;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .terminal-prompt-symbol {
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 49% { opacity: 1; }
            50%, 100% { opacity: 0; }
        }

        .terminal-input {
            color: var(--terminal-text);
            white-space: pre-wrap;
            word-wrap: break-word;
        }

        .terminal-result {
            color: var(--text-secondary);
            margin-left: 1rem;
            margin-bottom: 1rem;
            padding: 0.5rem;
            border-left: 2px solid var(--accent);
            padding-left: 1rem;
        }

        .terminal-result.error {
            color: var(--danger);
            border-left-color: var(--danger);
        }

        .terminal-result.success {
            color: var(--success);
            border-left-color: var(--success);
        }

        .terminal-footer {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem;
            border-top: 1px solid var(--border);
            background: var(--terminal-bg);
        }

        .terminal-footer-prompt {
            color: var(--accent);
            font-weight: bold;
        }

        .terminal-input-field {
            flex: 1;
            background: transparent;
            border: none;
            color: var(--terminal-text);
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
            outline: none;
            caret-color: var(--accent);
        }

        .terminal-input-field::placeholder {
            color: var(--text-secondary);
            opacity: 0.5;
        }

        /* ========== SECTIONS ========== */
        section {
            padding: 4rem 2rem;
            border-bottom: 1px solid var(--border);
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 2rem;
            text-align: center;
            text-shadow: 0 0 10px rgba(159, 239, 0, 0.2);
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
        }

        /* ========== ENHANCED TIMELINE SECTION ========== */
        .timeline-section {
            background: linear-gradient(135deg, rgba(159, 239, 0, 0.05) 0%, rgba(46, 231, 182, 0.05) 100%);
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .timeline-section:hover {
            border-color: var(--accent);
            background: linear-gradient(135deg, rgba(159, 239, 0, 0.1) 0%, rgba(46, 231, 182, 0.1) 100%);
            box-shadow: 0 5px 20px rgba(159, 239, 0, 0.1);
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .section-header:hover {
            transform: translateX(5px);
        }

        .section-icon {
            font-size: 2rem;
            margin-right: 1rem;
            color: var(--accent);
            animation: float 4s ease-in-out infinite;
        }

        .section-content {
            margin-left: 3rem;
        }

        .section-year {
            color: var(--accent);
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 0.3rem;
        }

        .section-role {
            font-size: 1.25rem;
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .section-company {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
        }

        .section-details {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
            padding: 1rem;
            background: rgba(159, 239, 0, 0.05);
            border-left: 3px solid var(--accent);
            border-radius: 4px;
            margin-top: 0.8rem;
        }

        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.8rem;
        }

        .skill-tag {
            background: rgba(159, 239, 0, 0.15);
            color: var(--accent-light);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            border: 1px solid rgba(159, 239, 0, 0.3);
        }

        /* ========== BIO SECTION ========== */
        .bio-container {
            max-width: 800px;
            margin: 0 auto;
            animation: fadeIn 1s ease-out;
        }

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

        .bio-text {
            font-size: 1.1rem;
            color: var(--text-primary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            border-left: 3px solid var(--accent);
            padding-left: 1.5rem;
        }

        /* ========== EXPERIENCE/EDUCATION ========== */
        .timeline {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, var(--accent), var(--success), var(--accent));
        }

        .timeline-item {
            margin-bottom: 3rem;
            width: 45%;
            padding: 1.5rem;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 4px;
            position: relative;
            animation: slideInUp 0.6s ease-out backwards;
            transition: all 0.3s ease;
        }

        .timeline-item:nth-child(odd) {
            margin-left: 0;
            margin-right: auto;
            padding-right: 3rem;
        }

        .timeline-item:nth-child(even) {
            margin-left: auto;
            margin-right: 0;
            padding-left: 3rem;
        }

        .timeline-item:hover {
            border-color: var(--accent);
            box-shadow: 0 0 20px rgba(159, 239, 0, 0.15);
            transform: translateX(-5px);
        }

        .timeline-item:nth-child(even):hover {
            transform: translateX(5px);
        }

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

        .timeline-dot {
            position: absolute;
            width: 15px;
            height: 15px;
            background: var(--accent);
            border: 3px solid var(--bg-primary);
            border-radius: 50%;
            left: 50%;
            top: 1.5rem;
            transform: translateX(-50%);
            box-shadow: 0 0 10px rgba(159, 239, 0, 0.3);
        }

        .timeline-date {
            color: var(--accent);
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            font-size: 1.3rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .timeline-subtitle {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
        }

        .timeline-description {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ========== CERTIFICATIONS ========== */
        .certifications {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cert-card {
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
            border: 2px solid var(--border);
            padding: 2rem;
            border-radius: 4px;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: slideInUp 0.6s ease-out backwards;
        }

        .cert-card:hover {
            border-color: var(--accent);
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(159, 239, 0, 0.2);
        }

        .cert-link {
            text-decoration: none;
            color: inherit;
            display: block;
            transition: all 0.3s ease;
        }

        .cert-link:hover {
            transform: scale(1.05);
        }

        .htb-pro-badge {
            border: 2px solid var(--accent);
            background: linear-gradient(135deg, rgba(159, 239, 0, 0.1) 0%, rgba(159, 239, 0, 0.05) 100%);
        }

        .htb-pro-badge:hover {
            box-shadow: 0 0 30px rgba(159, 239, 0, 0.4), 0 15px 40px rgba(159, 239, 0, 0.2);
        }

        .pro-badge {
            display: inline-block;
            background: var(--accent);
            color: var(--bg-primary);
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            font-weight: bold;
            font-size: 0.75rem;
            margin-top: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(159, 239, 0, 0.3);
        }

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

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

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

        .cert-name {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .cert-issuer {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .cert-date {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        /* ========== PROJECTS ========== */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .box-link {
            text-decoration: none;
            color: inherit;
            display: block;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .box-link:hover {
            opacity: 0.8;
            transform: scale(1.02);
        }

        .project-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
            animation: slideInUp 0.6s ease-out backwards;
        }

        .project-card:hover {
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(159, 239, 0, 0.15);
            transform: translateY(-8px);
        }

        .project-header {
            padding: 2rem;
            background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
            border-bottom: 2px solid var(--accent);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .project-header-link {
            text-decoration: none;
            color: inherit;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            flex-grow: 1;
        }

        .project-header-link:hover {
            transform: translateX(5px);
        }

        .project-icon {
            font-size: 2rem;
            margin-right: 1rem;
            color: var(--accent);
            animation: float 4s ease-in-out infinite;
        }

        .project-title {
            font-size: 1.4rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0;
        }

        .tech-tag {
            background: rgba(159, 239, 0, 0.1);
            color: var(--accent-light);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            border: 1px solid rgba(159, 239, 0, 0.3);
        }

        .project-body {
            padding: 2rem;
        }

        .project-description {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .project-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .project-link:hover {
            color: var(--accent-light);
            transform: translateX(5px);
        }

        /* ========== CTF BOXES ========== */
        .ctf-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto 2rem;
            padding: 0 2rem;
        }

        .stat-item {
            background: linear-gradient(135deg, rgba(159, 239, 0, 0.1) 0%, rgba(46, 231, 182, 0.1) 100%);
            border: 2px solid var(--border);
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            border-color: var(--accent);
            box-shadow: 0 5px 20px rgba(159, 239, 0, 0.15);
            transform: translateY(-3px);
        }

        .stat-number {
            display: block;
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            display: block;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .ctf-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .ctf-tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .ctf-tab-btn {
            padding: 0.7rem 1.5rem;
            background: var(--bg-secondary);
            border: 2px solid var(--border);
            color: var(--text-primary);
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .ctf-tab-btn.active {
            background: var(--accent);
            color: var(--bg-primary);
            border-color: var(--accent);
        }

        .ctf-tab-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .box-card {
            background: var(--bg-secondary);
            border: 2px solid var(--border);
            border-radius: 4px;
            padding: 1.5rem;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            animation: slideInUp 0.6s ease-out backwards;
        }

        .box-card:hover {
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(159, 239, 0, 0.2);
            transform: translateY(-5px);
        }

        .box-difficulty {
            display: inline-block;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            margin-bottom: 1rem;
            margin-right: 0.5rem;
        }

        .difficulty-easy {
            background: rgba(46, 231, 182, 0.2);
            color: var(--success);
            border: 1px solid var(--success);
        }

        .difficulty-medium {
            background: rgba(255, 175, 0, 0.2);
            color: var(--warning);
            border: 1px solid var(--warning);
        }

        .difficulty-hard {
            background: rgba(255, 62, 62, 0.2);
            color: var(--danger);
            border: 1px solid var(--danger);
        }

        .difficulty-insane {
            background: rgba(159, 0, 255, 0.2);
            color: #d700ff;
            border: 1px solid #d700ff;
        }

        .box-name {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .box-description {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .writeup-btn {
            background: var(--accent);
            color: var(--bg-primary);
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            width: 100%;
            text-align: center;
        }

        .writeup-btn:hover {
            background: var(--accent-light);
            box-shadow: 0 0 15px rgba(159, 239, 0, 0.3);
            transform: scale(1.02);
        }

        .writeup-btn.disabled {
            background: var(--border);
            color: var(--text-secondary);
            cursor: not-allowed;
            opacity: 0.6;
        }

        /* ========== FOOTER ========== */
        footer {
            background: var(--bg-secondary);
            border-top: 2px solid var(--accent);
            padding: 2rem;
            text-align: center;
            color: var(--text-secondary);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .social-link {
            color: var(--accent);
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            color: var(--accent-light);
            transform: translateY(-3px) scale(1.2);
            text-shadow: 0 0 10px rgba(159, 239, 0, 0.3);
        }

        /* ========== MODAL ========== */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background: var(--bg-primary);
            margin: 5% auto;
            padding: 2rem;
            border: 2px solid var(--accent);
            border-radius: 4px;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            animation: slideInUp 0.4s ease;
        }

        .close-modal {
            color: var(--accent);
            float: right;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            color: var(--accent-light);
            transform: rotate(90deg);
        }

        .modal-input {
            width: 100%;
            padding: 1rem;
            margin: 0.5rem 0 1rem 0;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            color: var(--text-primary);
            border-radius: 4px;
            font-size: 1rem;
        }

        .modal-input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 10px rgba(159, 239, 0, 0.2);
        }

        .modal-input::placeholder {
            color: var(--text-secondary);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 768px) {
            .nav-center {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                width: 100%;
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding-left: 3rem !important;
                padding-right: 1.5rem !important;
            }

            .timeline-dot {
                left: 20px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        /* ========== UTILITY ========== */
        .hidden {
            display: none !important;
        }

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

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

        /* ========== SMOOTH SCROLLBAR ========== */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-light);
        }

        /* ========== LOADING ANIMATION ========== */
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .pulse {
            animation: pulse 2s ease-in-out infinite;
        }

        /* ========== SPOTLIGHT EFFECT ========== */
        .spotlight {
            position: relative;
            overflow: hidden;
        }

        .spotlight::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }




                /* ========== ZEUS MEMORIAL SECTION ========== */
        .zeus-memorial-section {
            padding: 4rem 2rem;
            border-bottom: 1px solid var(--border);
            background: linear-gradient(135deg, rgba(159, 239, 0, 0.02) 0%, rgba(46, 231, 182, 0.02) 100%);
            position: relative;
            overflow: hidden;
        }

        .zeus-memorial-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(46, 231, 182, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite;
            z-index: 0;
        }

        .zeus-memorial-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            position: relative;
            z-index: 1;
            align-items: center;
        }

        .zeus-image-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: slideInLeft 0.8s ease-out;
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-50px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .zeus-photo {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            border: 3px solid var(--accent);
            box-shadow: 0 15px 50px rgba(159, 239, 0, 0.25);
            transition: all 0.5s ease;
            filter: grayscale(0%);
            max-height: 400px;
            object-fit: cover;
        }

        .zeus-photo:hover {
            transform: scale(1.02);
            filter: grayscale(15%);
            box-shadow: 0 20px 60px rgba(159, 239, 0, 0.35);
        }

        .zeus-date-badge {
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: var(--bg-primary);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 0.95rem;
            box-shadow: 0 5px 20px rgba(159, 239, 0, 0.3);
            white-space: nowrap;
        }

        .zeus-separator {
            margin: 0 0.5rem;
        }

        .zeus-content {
            animation: slideInRight 0.8s ease-out;
        }

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

        .zeus-tribute {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .zeus-name {
            font-size: 3rem;
            color: var(--accent);
            margin: 0;
            text-shadow: 0 0 15px rgba(159, 239, 0, 0.2);
        }

        .zeus-subtitle {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin: 0;
            font-style: italic;
        }

        .zeus-story {
            background: rgba(159, 239, 0, 0.05);
            padding: 1.5rem;
            border-left: 4px solid var(--accent);
            border-radius: 8px;
            line-height: 1.8;
        }

        .story-text {
            color: var(--text-primary);
            margin: 0.8rem 0;
            font-size: 1rem;
        }

        .story-text:first-child {
            margin-top: 0;
        }

        .zeus-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .stat-box {
            background: linear-gradient(135deg, rgba(46, 231, 182, 0.1) 0%, rgba(159, 239, 0, 0.05) 100%);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            display: flex;
            gap: 1rem;
            align-items: center;
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            border-color: var(--accent);
            box-shadow: 0 5px 15px rgba(159, 239, 0, 0.1);
            transform: translateY(-3px);
        }

        .stat-icon {
            font-size: 2rem;
        }

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

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .stat-value {
            font-size: 1.2rem;
            color: var(--accent);
            font-weight: bold;
        }

        .zeus-interactive {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .memorial-btn {
            padding: 0.9rem 1.8rem;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            color: var(--bg-primary);
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(159, 239, 0, 0.2);
            flex: 1;
            min-width: 150px;
        }

        .memorial-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(159, 239, 0, 0.35);
            background: linear-gradient(135deg, var(--accent-light), var(--accent));
        }

        .memorial-btn:active {
            transform: translateY(-1px);
        }

        /* ========== MEMORIES PANEL ========== */
        .zeus-memories-panel {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3000;
            animation: fadeIn 0.3s ease;
        }

        .zeus-memories-panel.hidden {
            display: none;
        }

        .memories-content {
            background: var(--bg-primary);
            padding: 2.5rem;
            border-radius: 12px;
            border: 2px solid var(--accent);
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: slideInUp 0.4s ease;
        }

        .close-memories {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            color: var(--accent);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-memories:hover {
            color: var(--accent-light);
            transform: rotate(90deg);
        }

        .memories-content h4 {
            color: var(--accent);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            margin-top: 0;
        }

        .memories-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .memory-card {
            background: linear-gradient(135deg, rgba(159, 239, 0, 0.1) 0%, rgba(46, 231, 182, 0.05) 100%);
            padding: 1.2rem;
            border-radius: 8px;
            border: 1px solid rgba(159, 239, 0, 0.3);
            transition: all 0.3s ease;
        }

        .memory-card:hover {
            border-color: var(--accent);
            box-shadow: 0 5px 15px rgba(159, 239, 0, 0.15);
            transform: translateY(-5px);
        }

        .memory-icon {
            font-size: 2rem;
            margin-bottom: 0.8rem;
        }

        .memory-card p {
            margin: 0;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .memory-card strong {
            color: var(--accent);
        }

        /* Press F to pay Respect Section */

        .memorial-section {
        padding: 3rem 2rem;
        background: linear-gradient(135deg, rgba(159, 239, 0, 0.03) 0%, rgba(46, 231, 182, 0.03) 100%);
        border: 2px solid var(--border);
        text-align: center;
        margin: 2rem auto;
        max-width: 500px;
        border-radius: 8px;
    }

        .kitten-counter {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .counter-display {
            font-size: 2.5rem;
            color: var(--accent);
            font-weight: bold;
            min-width: 60px;
            text-align: center;
            font-family: 'Courier New', monospace;
        }

        .kitten-button {
            background: none;
            border: none;
            font-size: 4rem;
            cursor: pointer;
            transition: transform 0.1s ease, filter 0.1s ease;
            filter: drop-shadow(0 0 5px rgba(159, 239, 0, 0.3));
            animation: kitten-idle 3s ease-in-out infinite;
            padding: 0;
            margin: 0;
        }

        @keyframes kitten-idle {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-8px) scale(1.05); }
        }

        .kitten-button:hover {
            filter: drop-shadow(0 0 15px rgba(159, 239, 0, 0.8));
            animation: none;
            transform: scale(1.15) rotate(5deg);
        }

        .kitten-button:active {
            transform: scale(0.9);
        }

        .respect-button {
            display: block;
            width: 100%;
            padding: 1.5rem 1rem;
            margin-top: 1.5rem;
            background: var(--terminal-bg);
            border: 3px solid var(--accent);
            color: var(--terminal-text);
            font-family: 'Courier New', monospace;
            font-size: 1rem;
            font-weight: bold;
            letter-spacing: 3px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-transform: uppercase;
            box-shadow: 0 4px 0 rgba(159, 239, 0, 0.4);
        }

        .respect-button:hover {
            background: var(--bg-secondary);
            box-shadow: 0 6px 0 rgba(159, 239, 0, 0.6);
            transform: translateY(-2px);
            color: var(--accent);
        }

        .respect-button:active {
            box-shadow: 0 1px 0 rgba(159, 239, 0, 0.4);
            transform: translateY(3px);
        }

            /* ========== RESPONSIVE ZEUS MEMORIAL ========== */
            @media (max-width: 768px) {
                .zeus-memorial-container {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                }

                .zeus-name {
                    font-size: 2rem;
                }

                .zeus-photo {
                    max-height: 300px;
                }

                .zeus-stats {
                    grid-template-columns: 1fr;
                }

                .memories-list {
                    grid-template-columns: 1fr;
                }

                .zeus-interactive {
                    flex-direction: column;
                }

                .memorial-btn {
                    
                    display: flex;
                    flex-direction: column;  
                    align-items: center;     
                    gap: 5px;                
                    border: none;           
                    background: none;        
                    cursor: pointer;
                    padding: 10px;
                }


                .candles-container {
                    gap: 1rem;
                }
            }

        /* ZEUS SECTION END */
