/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00ff88;
    --primary-dark: #00cc6a;
    --primary-light: #33ffaa;
    --secondary-color: #00d977;
    --accent-color: #00ff41;
    --accent-dark: #00b85c;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-card: #111111;
    --bg-card-light: #1a1a1a;
    --text-dark: #000000;
    --text-light: #888888;
    --text-white: #ffffff;
    --border-color: #00ff8820;
    --border-glow: #00ff8840;
    --shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 255, 136, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 255, 136, 0.3);
    --shadow-glow: 0 0 30px rgba(0, 255, 136, 0.5);
    --gradient-primary: linear-gradient(135deg, #00ff88 0%, #00d977 50%, #00ff41 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #111111 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 255, 136, 0.3) 0%, rgba(0, 217, 119, 0.2) 100%);
    --gradient-text: linear-gradient(135deg, #00ff88 0%, #00ff41 100%);
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Rajdhani', 'Orbitron', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    overflow-x: hidden;
    background: var(--bg-dark);
    font-weight: 500;
}

/* Decorative Background Elements - Matrix style */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 136, 0.03) 2px,
            rgba(0, 255, 136, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 136, 0.03) 2px,
            rgba(0, 255, 136, 0.03) 4px
        );
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float-bg 20s ease-in-out infinite;
    pointer-events: none;
    filter: blur(60px);
}

@keyframes float-bg {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-darker);
    color: var(--text-white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 255, 136, 0.2);
    border-top: 2px solid var(--primary-color);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    border: 2px solid var(--primary-color);
    padding: 10px 24px;
    border-radius: 0;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

.cookie-btn:hover {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 255, 136, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--primary-color);
    border-image: linear-gradient(90deg, transparent, var(--primary-color), transparent) 1;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(0, 255, 136, 0.2);
    border-bottom: 2px solid var(--primary-color);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5),
                 0 0 20px rgba(0, 255, 136, 0.3);
}

.logo::before {
    content: '>';
    position: absolute;
    left: -20px;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px var(--primary-color);
}

.logo::after {
    content: '<';
    position: absolute;
    right: -20px;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px var(--primary-color);
}

.logo:hover::before,
.logo:hover::after {
    opacity: 1;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8),
                 0 0 40px rgba(0, 255, 136, 0.5);
}

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

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-link::before {
    content: '[';
    position: absolute;
    left: -10px;
    opacity: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link::after {
    content: ']';
    position: absolute;
    right: -10px;
    opacity: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover::before,
.nav-link:hover::after {
    opacity: 1;
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1001;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.burger-menu:hover {
    background: rgba(99, 102, 241, 0.1);
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    position: relative;
    display: block;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.burger-menu.active {
    background: rgba(99, 102, 241, 0.15);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--primary-color);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--primary-color);
}

/* Hero Section - Unique Gaming Design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: var(--bg-darker);
    border-bottom: 2px solid var(--primary-color);
    isolation: isolate;
}

/* Decorative shapes in hero - Gaming aesthetic */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 136, 0.05) 50%, transparent 70%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(0, 255, 136, 0.03) 50px,
            rgba(0, 255, 136, 0.03) 52px
        );
    z-index: 0;
    animation: scan-line 8s linear infinite;
}

@keyframes scan-line {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100px;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse-glow 4s ease-in-out infinite;
    filter: blur(80px);
}

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

@keyframes morph-shape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: rotate(90deg);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(180deg);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: rotate(270deg);
    }
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    animation: rotate-bg 30s linear infinite;
    z-index: 1;
}

@keyframes rotate-bg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    object-fit: cover;
    opacity: 0.2;
    filter: grayscale(70%) contrast(130%) brightness(0.25);
    animation: background-zoom 25s ease-in-out infinite;
    z-index: 0;
}

@keyframes background-zoom {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.25;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0.75) 100%),
        radial-gradient(ellipse at 30% 50%, rgba(0, 255, 136, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 217, 119, 0.15) 0%, transparent 60%);
    z-index: 1;
    backdrop-filter: blur(1px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 0.5),
        0 0 20px rgba(0, 255, 136, 0.3),
        0 0 40px rgba(0, 255, 136, 0.2);
    position: relative;
    animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(0, 255, 136, 0.5),
            0 0 20px rgba(0, 255, 136, 0.3),
            0 0 40px rgba(0, 255, 136, 0.2);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(0, 255, 136, 0.8),
            0 0 40px rgba(0, 255, 136, 0.5),
            0 0 60px rgba(0, 255, 136, 0.3);
    }
}

.hero-title::before {
    content: '>>>';
    position: absolute;
    left: -60px;
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.5;
    animation: blink 1.5s infinite;
}

.hero-title::after {
    content: '<<<';
    position: absolute;
    right: -60px;
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.5;
    animation: blink 1.5s infinite;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
    color: #cccccc;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    box-shadow: 
        0 4px 15px rgba(0, 255, 136, 0.4),
        inset 0 0 20px rgba(0, 255, 136, 0.2);
    border: 2px solid var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(0, 255, 136, 0.6),
        inset 0 0 30px rgba(0, 255, 136, 0.3);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.3),
        inset 0 0 20px rgba(0, 255, 136, 0.1);
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 40px rgba(0, 255, 136, 0.6),
        inset 0 0 30px rgba(0, 255, 136, 0.2);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

.hero-visual {
    position: relative;
    height: 500px;
    width: 100%;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.4),
        inset 0 0 30px rgba(0, 255, 136, 0.1);
}

.hero-slider-track {
    display: flex;
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(120%) brightness(0.3);
    transition: all 0.8s ease;
    transform: scale(1.1);
}

.hero-slide.active img {
    filter: grayscale(20%) contrast(130%) brightness(0.4);
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 2rem 2rem 6rem;
    border-top: 2px solid var(--primary-color);
    z-index: 2;
    pointer-events: none;
}

.hero-slide-overlay h3,
.hero-slide-overlay p {
    pointer-events: none;
}

.hero-slide-overlay h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 0.5),
        0 0 20px rgba(0, 255, 136, 0.3);
}

.hero-slide-overlay p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.125rem;
    color: #cccccc;
    letter-spacing: 1px;
}

.hero-slider-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    pointer-events: auto;
}

.hero-slider-btn {
    background: rgba(0, 0, 0, 0.7);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 0;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 101;
    pointer-events: auto !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-slider-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    transform: scale(1.1);
}

.hero-slider-dots {
    display: flex;
    gap: 0.75rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: rgba(0, 255, 136, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    clip-path: polygon(3px 0, 100% 0, 100% calc(100% - 3px), calc(100% - 3px) 100%, 0 100%, 0 3px);
}

.hero-dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
    transform: scale(1.3);
}

.hero-dot:hover {
    background: rgba(0, 255, 136, 0.6);
    transform: scale(1.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--primary-color);
    z-index: 1;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.scroll-indicator span {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary-color);
    margin: 0 auto;
    position: relative;
    animation: scroll 2s infinite;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.5));
}

@keyframes scroll {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* Hero Unique Elements */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    opacity: 0.4;
    animation: grid-move 20s linear infinite;
    pointer-events: none;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-code-lines {
    position: absolute;
    top: 20%;
    right: 10%;
    z-index: 3;
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
    font-size: 0.9rem;
    opacity: 0.4;
    line-height: 1.8;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
    animation: code-fade 8s ease-in-out infinite;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border: 1px solid rgba(0, 255, 136, 0.2);
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
    backdrop-filter: blur(5px);
}

@keyframes code-fade {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
}

.code-line {
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
    }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
    line-height: 1;
}

.stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.875rem;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
    animation: particle-float 15s infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 30%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 70%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 50%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 90%;
    animation-delay: 12s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) scale(1.5);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, -60px) scale(1);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, -40px) scale(1.2);
        opacity: 0.8;
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Section background images */
.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.section-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: grayscale(100%) contrast(150%) brightness(0.2);
    transform: scale(1.1);
    transition: transform 10s ease;
}

section:hover .section-bg-image img {
    transform: scale(1.15);
}

.section-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

section > .container {
    position: relative;
    z-index: 1;
}

/* Decorative elements for sections */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

section:hover::before {
    opacity: 1;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 0.5),
        0 0 20px rgba(0, 255, 136, 0.3);
}

.section-title::before {
    content: '> ';
    color: var(--primary-color);
    opacity: 0.7;
}

.section-title::after {
    content: ' <';
    color: var(--primary-color);
    opacity: 0.7;
}

.section-description {
    font-size: 1.125rem;
    color: #aaaaaa;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Courses Section */
.courses-section {
    background: var(--bg-dark);
    border-top: 2px solid var(--primary-color);
    position: relative;
}

.courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--primary-color);
    z-index: 2;
}

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

.course-card {
    background: var(--bg-card);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    border: 2px solid var(--border-color);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.course-card:hover::before {
    opacity: 1;
}

.course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-color);
    background: var(--bg-card-light);
}

.course-content {
    position: relative;
    z-index: 1;
}

.course-image {
    height: 200px;
    overflow: hidden;
    background: var(--bg-darker);
    position: relative;
    border-bottom: 2px solid var(--primary-color);
}

.course-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 217, 119, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.course-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.course-card:hover .course-image::before {
    opacity: 1;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: grayscale(100%) contrast(120%) brightness(0.3);
    opacity: 0.6;
    transform: scale(1);
}

.course-card:hover .course-image img {
    filter: grayscale(40%) contrast(130%) brightness(0.5);
    opacity: 0.8;
    transform: scale(1.1);
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-content {
    padding: 1.5rem;
}

.course-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.course-content p {
    color: #cccccc;
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.course-features {
    list-style: none;
    padding: 0;
}

.course-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #aaaaaa;
    font-family: 'Rajdhani', sans-serif;
}

.course-features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.8rem;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

/* Game Dev Section */
.game-dev-section {
    background: var(--bg-darker);
    border-top: 2px solid var(--primary-color);
    position: relative;
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: 2px solid var(--border-color);
    border-radius: 0;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: var(--bg-card);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-light);
}

.accordion-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-light);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.accordion-header::before {
    content: '> ';
    position: absolute;
    left: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.accordion-item.active .accordion-header::before {
    opacity: 1;
}

.accordion-header:hover {
    background: rgba(0, 255, 136, 0.05);
    padding-left: 2rem;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.accordion-header span:first-child {
    margin-left: 0.5rem;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-content p {
    padding: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
    font-family: 'Rajdhani', sans-serif;
}

.accordion-content p:first-child {
    padding-top: 0;
}

/* Mobile Apps Section */
.mobile-apps-section {
    background: var(--bg-dark);
    border-top: 2px solid var(--primary-color);
    position: relative;
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mobile-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.mobile-text p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-family: 'Rajdhani', sans-serif;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.tech-badge {
    background: var(--bg-card);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.tech-badge:hover::before {
    width: 200px;
    height: 200px;
}

.tech-badge:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary-light);
}

.mobile-visual {
    position: relative;
}

.mobile-visual img {
    width: 100%;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    filter: grayscale(50%) contrast(110%) brightness(0.4);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.6s ease;
    transform: scale(1);
}

.mobile-visual:hover img {
    filter: grayscale(30%) contrast(120%) brightness(0.5);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

/* Interactive Section */
.interactive-section {
    background: var(--bg-darker);
    border-top: 2px solid var(--primary-color);
    position: relative;
}

.interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.interactive-card {
    background: var(--bg-card);
    padding: 3.5rem 2rem 2rem;
    border-radius: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid var(--border-color);
    overflow: visible;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    margin-top: 1.5rem;
}

.interactive-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.interactive-card:hover::after {
    opacity: 1;
}

.interactive-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-xl);
    border-color: rgba(99, 102, 241, 0.3);
    background: white;
}

.card-number {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--bg-card);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid var(--primary-color);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
    z-index: 10;
    line-height: 1;
}

.interactive-card:hover .card-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.6);
}

.interactive-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    padding-top: 0.5rem;
}

.interactive-card p {
    color: #cccccc;
    line-height: 1.7;
    font-family: 'Rajdhani', sans-serif;
}

/* Mechanics Section */
.mechanics-section {
    background: var(--bg-dark);
    border-top: 2px solid var(--primary-color);
    position: relative;
}

.mechanics-slider {
    max-width: 1000px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: var(--bg-card);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    width: 100%;
}

.slider-track {
    position: relative;
    width: 300%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    will-change: transform;
}

.slider-slide {
    min-width: 33.333333%;
    width: 33.333333%;
    flex-shrink: 0;
    display: block;
    opacity: 1;
    visibility: visible;
}

.slide-content {
    padding: 3rem;
    text-align: center;
    position: relative;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-slide.active .slide-content::before {
    opacity: 1;
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.slide-content p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Rajdhani', sans-serif;
}

.slide-content img {
    width: 100%;
    max-width: 600px;
    border-radius: 0;
    margin: 0 auto;
    display: block;
    border: 2px solid var(--border-color);
    filter: grayscale(50%) contrast(110%) brightness(0.4);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all 0.6s ease;
    transform: scale(1);
}

.slider-slide.active .slide-content img {
    filter: grayscale(30%) contrast(120%) brightness(0.5);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    transform: scale(1.05);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.dot.active::before {
    width: 20px;
    height: 20px;
    opacity: 0.3;
}

.dot:hover {
    transform: scale(1.2);
}

/* About Section */
.about-section {
    background: var(--bg-darker);
    border-top: 2px solid var(--primary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.about-text p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-family: 'Rajdhani', sans-serif;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 0;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-light);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    animation: count-up 1s ease-out;
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 0.5),
        0 0 20px rgba(0, 255, 136, 0.3);
}

@keyframes count-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    color: #aaaaaa;
    font-weight: 500;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    background: var(--bg-dark);
    border-top: 2px solid var(--primary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.contact-item p {
    color: #cccccc;
    line-height: 1.8;
    font-family: 'Rajdhani', sans-serif;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

.contact-item a:hover {
    color: var(--primary-light);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
    text-decoration: none;
}

.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate-bg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-dark);
    color: var(--text-white);
    clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
    background: var(--bg-card);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: var(--text-white);
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    border-top: 2px solid var(--primary-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-bg 15s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.footer-section p {
    color: #aaaaaa;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: #888888;
    font-size: 0.875rem;
    font-family: 'Rajdhani', sans-serif;
}

/* Policy Pages */
.policy-page {
    padding-top: 100px;
    padding-bottom: 4rem;
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 0;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.policy-content h2,
.policy-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.policy-content h3 {
    font-size: 1.5rem;
}

.policy-content p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-family: 'Rajdhani', sans-serif;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    font-family: 'Rajdhani', sans-serif;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
    transition: all 0.3s;
}

.policy-content a:hover {
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
    color: var(--primary-light);
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.thanks-content {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 0;
    text-align: center;
    max-width: 600px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.thanks-content h1 {
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.thanks-content p {
    color: #cccccc;
    font-family: 'Rajdhani', sans-serif;
}

.thanks-content::before {
    content: '✓';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: rgba(99, 102, 241, 0.2);
    animation: float-bg 10s ease-in-out infinite;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Responsive Design */
/* Additional decorative elements */
.courses-section::before,
.game-dev-section::before,
.mobile-apps-section::before,
.interactive-section::before,
.mechanics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 217, 119, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.courses-section > .container,
.game-dev-section > .container,
.mobile-apps-section > .container,
.interactive-section > .container,
.mechanics-section > .container {
    position: relative;
    z-index: 1;
}

/* Pulse animation for interactive elements */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.course-card:hover .course-image,
.interactive-card:hover {
    animation: pulse 2s ease-in-out infinite;
}

/* Gloss/Shine effects */
.course-card,
.interactive-card,
.floating-card,
.accordion-item,
.stat-item {
    position: relative;
    overflow: hidden;
}

.course-card::after,
.interactive-card::after,
.floating-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 255, 136, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.course-card:hover::after,
.interactive-card:hover::after,
.floating-card:hover::after {
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

/* Glow effect */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.6);
    }
}

.stat-item:hover,
.interactive-card:hover {
    animation: glow 2s ease-in-out infinite;
}

/* Smooth transitions for all interactive elements */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading animation for images */
.course-image img,
.mobile-visual img,
.slide-content img {
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.6s ease;
}

.course-card:hover .course-image img,
.mobile-visual:hover img {
    transform: scale(1.1) rotate(1deg);
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

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

    .mobile-content {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        box-shadow: var(--shadow-xl);
        border-right: 2px solid var(--primary-color);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        gap: 0.5rem;
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-link {
        padding: 1.25rem 1.5rem;
        border-radius: 0;
        font-size: 1.125rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        width: 100%;
        display: block;
        text-align: left;
        border: 1px solid transparent;
        border-left: 3px solid transparent;
        clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
    }

    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
        transition: left 0.5s;
    }

    .nav-link:hover::before {
        left: 100%;
    }

    .nav-link:hover {
        background: rgba(0, 255, 136, 0.1);
        transform: translateX(10px);
        color: var(--primary-color);
        border-left-color: var(--primary-color);
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
    }

    .burger-menu {
        display: flex;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
    }
    
    /* Enhanced mobile menu backdrop */
    .nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(5px);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
    
    /* Ensure all nav links are visible */
    .nav.active .nav-link {
        opacity: 1;
        visibility: visible;
        display: block;
    }
    
    /* Add scroll indicator if needed */
    .nav.active {
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.3);
    }
    
    .nav.active::-webkit-scrollbar {
        width: 6px;
    }
    
    .nav.active::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .nav.active::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 3px;
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

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

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .interactive-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }

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

    .policy-content {
        padding: 1.5rem;
    }
}


