/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Mono', monospace;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #000000;
    --accent-color: #333333;
    --glitch-color: #ff0000;
    --text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes noise {
    0% { transform: translate(0, 0) }
    10% { transform: translate(-5%, -5%) }
    20% { transform: translate(-10%, 5%) }
    30% { transform: translate(5%, -10%) }
    40% { transform: translate(-5%, 15%) }
    50% { transform: translate(-10%, 5%) }
    60% { transform: translate(15%, 0) }
    70% { transform: translate(0, 10%) }
    80% { transform: translate(3%, 15%) }
    90% { transform: translate(-10%, 10%) }
    100% { transform: translate(5%, 5%) }
}

body {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgE1xQAAAABh0Uk5TABAgMEBQYHCAj5+vv8/f7///////UUOYgQAAAJZJREFUOMtjYBgFgwEEK0EBIxhhABmEoGABQzJUUgEqKAIT1IQKCjExMEIFBZkY0AUXwAQXMDHABBcwMSALMi5gQhVkWsCEKsi0gAlVEOgHVEEmBgYGZkUGBgUgVmRiYGBgARKKQEEQVgQKgrAiUBCEFYGCIKwIFARhRaAgCCsCBUFYESgIwopAQRBWBAqCsCIKAQDxIhXTZrDKJwAAAABJRU5ErkJggg==");
    opacity: 0.03;
    pointer-events: none;
    animation: noise 8s steps(1) infinite;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff00;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #00ff00;
}

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

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo img {
        height: 30px;
    }
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    padding: 1.5rem 2rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

nav:hover::before {
    opacity: 0.5;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.logo:hover {
    filter: brightness(1.3) contrast(1.1);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 3rem;
    margin-right: 2rem;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Enhanced Mobile Menu Button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

/* Scrolled Navigation State */
nav.scrolled {
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 300px;
        margin: 0;
        padding: 6rem 2rem 2rem;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 2rem;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links a:nth-child(4) { transition-delay: 0.4s; }
    .nav-links a:nth-child(5) { transition-delay: 0.5s; }

    nav::before {
        display: none;
    }
}

/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 2rem;
    overflow: hidden;
}

/* Hero Background Animation */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 70%);
    z-index: -1;
}

.game-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.game-element {
    position: absolute;
    font-family: 'Space Mono', monospace;
    color: rgba(255,255,255,0.1);
    font-size: 1.5rem;
    animation: floatElement 15s ease-in-out infinite;
}

.game-element:nth-child(1) { top: 10%; left: 10%; content: 'PC'; animation-delay: 0s; }
.game-element:nth-child(2) { top: 20%; left: 80%; content: 'MOBILE'; animation-delay: 2s; }
.game-element:nth-child(3) { top: 60%; left: 20%; content: 'VR'; animation-delay: 4s; }
.game-element:nth-child(4) { top: 80%; left: 70%; content: 'AR'; animation-delay: 6s; }
.game-element:nth-child(5) { top: 40%; left: 50%; content: 'GAME'; animation-delay: 8s; }

@keyframes gridMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
        opacity: 0.2;
    }
    50% {
        transform: translate(0, -40px) rotate(0deg);
        opacity: 0.1;
    }
    75% {
        transform: translate(-20px, -20px) rotate(-5deg);
        opacity: 0.2;
    }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    letter-spacing: 0.1em;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-button {
    padding: 1rem 2rem;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Space Mono', monospace;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: #fff;
    color: #000;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.social-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .date-display {
        top: 1rem;
        left: 1rem;
    }
    
    .date-display .day {
        font-size: 2rem;
    }
    
    .date-display .month,
    .date-display .year {
        font-size: 1rem;
    }
}

/* Sections */
section {
    padding: 5rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Games Section */
.games {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Ensure three cards fit nicely on larger screens */
@media (min-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.game-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

/* Horror Game Card Glow */
.game-card:has(.tag.horror) {
    border: 1px solid transparent;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)) padding-box,
        linear-gradient(45deg, 
            rgba(139, 0, 0, 0.2),
            rgba(255, 0, 0, 0.1),
            rgba(139, 0, 0, 0.2)
        ) border-box;
    animation: horrorBorderGlow 3s linear infinite;
}

@keyframes horrorBorderGlow {
    0% {
        border-image: linear-gradient(45deg, 
            rgba(139, 0, 0, 0.2),
            rgba(255, 0, 0, 0.1),
            rgba(139, 0, 0, 0.2)
        ) 1;
    }
    50% {
        border-image: linear-gradient(45deg, 
            rgba(139, 0, 0, 0.3),
            rgba(255, 0, 0, 0.2),
            rgba(139, 0, 0, 0.3)
        ) 1;
    }
    100% {
        border-image: linear-gradient(45deg, 
            rgba(139, 0, 0, 0.2),
            rgba(255, 0, 0, 0.1),
            rgba(139, 0, 0, 0.2)
        ) 1;
    }
}

/* Racing Game Card Glow */
.game-card:has(.tag.racing):not(:has(.tag.horror)) {
    border: 1px solid transparent;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)) padding-box,
        linear-gradient(45deg, 
            rgba(0, 100, 255, 0.2),
            rgba(0, 150, 255, 0.1),
            rgba(0, 100, 255, 0.2)
        ) border-box;
    animation: racingBorderGlow 3s linear infinite;
}

@keyframes racingBorderGlow {
    0% {
        border-image: linear-gradient(45deg, 
            rgba(0, 100, 255, 0.2),
            rgba(0, 150, 255, 0.1),
            rgba(0, 100, 255, 0.2)
        ) 1;
    }
    50% {
        border-image: linear-gradient(45deg, 
            rgba(0, 100, 255, 0.3),
            rgba(0, 150, 255, 0.2),
            rgba(0, 100, 255, 0.3)
        ) 1;
    }
    100% {
        border-image: linear-gradient(45deg, 
            rgba(0, 100, 255, 0.2),
            rgba(0, 150, 255, 0.1),
            rgba(0, 100, 255, 0.2)
        ) 1;
    }
}

/* Sci-Fi Game Card Glow */
.game-card:has(.tag.sci-fi) {
    border: 1px solid transparent;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)) padding-box,
        linear-gradient(45deg, 
            rgba(147, 112, 219, 0.2),
            rgba(138, 43, 226, 0.1),
            rgba(147, 112, 219, 0.2)
        ) border-box;
    animation: scifiBorderGlow 3s linear infinite;
}

@keyframes scifiBorderGlow {
    0% {
        border-image: linear-gradient(45deg, 
            rgba(147, 112, 219, 0.2),
            rgba(138, 43, 226, 0.1),
            rgba(147, 112, 219, 0.2)
        ) 1;
    }
    50% {
        border-image: linear-gradient(45deg, 
            rgba(147, 112, 219, 0.3),
            rgba(138, 43, 226, 0.2),
            rgba(147, 112, 219, 0.3)
        ) 1;
    }
    100% {
        border-image: linear-gradient(45deg, 
            rgba(147, 112, 219, 0.2),
            rgba(138, 43, 226, 0.1),
            rgba(147, 112, 219, 0.2)
        ) 1;
    }
}

/* Hover Effects for Game Cards */
.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-card:has(.tag.horror):hover {
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
    animation: horrorBorderGlowHover 1.5s linear infinite;
}

@keyframes horrorBorderGlowHover {
    0% {
        border-image: linear-gradient(45deg, 
            rgba(139, 0, 0, 0.3),
            rgba(255, 0, 0, 0.2),
            rgba(139, 0, 0, 0.3)
        ) 1;
    }
    50% {
        border-image: linear-gradient(45deg, 
            rgba(139, 0, 0, 0.4),
            rgba(255, 0, 0, 0.3),
            rgba(139, 0, 0, 0.4)
        ) 1;
    }
    100% {
        border-image: linear-gradient(45deg, 
            rgba(139, 0, 0, 0.3),
            rgba(255, 0, 0, 0.2),
            rgba(139, 0, 0, 0.3)
        ) 1;
    }
}

.game-card:has(.tag.racing):not(:has(.tag.horror)):hover {
    box-shadow: 0 10px 30px rgba(0, 100, 255, 0.2);
    animation: racingBorderGlowHover 1.5s linear infinite;
}

@keyframes racingBorderGlowHover {
    0% {
        border-image: linear-gradient(45deg, 
            rgba(0, 100, 255, 0.3),
            rgba(0, 150, 255, 0.2),
            rgba(0, 100, 255, 0.3)
        ) 1;
    }
    50% {
        border-image: linear-gradient(45deg, 
            rgba(0, 100, 255, 0.4),
            rgba(0, 150, 255, 0.3),
            rgba(0, 100, 255, 0.4)
        ) 1;
    }
    100% {
        border-image: linear-gradient(45deg, 
            rgba(0, 100, 255, 0.3),
            rgba(0, 150, 255, 0.2),
            rgba(0, 100, 255, 0.3)
        ) 1;
    }
}

.game-card:has(.tag.sci-fi):hover {
    box-shadow: 0 10px 30px rgba(147, 112, 219, 0.2);
    animation: scifiBorderGlowHover 1.5s linear infinite;
}

@keyframes scifiBorderGlowHover {
    0% {
        border-image: linear-gradient(45deg, 
            rgba(147, 112, 219, 0.3),
            rgba(138, 43, 226, 0.2),
            rgba(147, 112, 219, 0.3)
        ) 1;
    }
    50% {
        border-image: linear-gradient(45deg, 
            rgba(147, 112, 219, 0.4),
            rgba(138, 43, 226, 0.3),
            rgba(147, 112, 219, 0.4)
        ) 1;
    }
    100% {
        border-image: linear-gradient(45deg, 
            rgba(147, 112, 219, 0.3),
            rgba(138, 43, 226, 0.2),
            rgba(147, 112, 219, 0.3)
        ) 1;
    }
}

.game-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Horror game status */
.game-card:first-child .game-status {
    background: rgba(139, 0, 0, 0.8);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

/* Racing game status */
.game-card:nth-child(2) .game-status {
    background: rgba(0, 100, 255, 0.8);
    border-color: rgba(0, 150, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.2);
}

/* TCG game status */
.game-card:nth-child(3) .game-status {
    background: rgba(128, 0, 128, 0.8);
    border-color: rgba(147, 112, 219, 0.3);
    box-shadow: 0 0 15px rgba(147, 112, 219, 0.2);
}

/* Hover effects for status indicators */
.game-card:hover .game-status {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.game-card:first-child:hover .game-status {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.game-card:nth-child(2):hover .game-status {
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.4);
}

.game-card:nth-child(3):hover .game-status {
    box-shadow: 0 0 20px rgba(147, 112, 219, 0.4);
}

.game-info {
    padding: 2rem;
}

.game-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover .tag {
    background: rgba(255, 255, 255, 0.1);
}

/* Tag variations */
.tag.horror {
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid rgba(139, 0, 0, 0.3);
}

.tag.psychological {
    background: rgba(72, 61, 139, 0.2);
    border: 1px solid rgba(72, 61, 139, 0.3);
}

.tag.pc {
    background: rgba(47, 79, 79, 0.2);
    border: 1px solid rgba(47, 79, 79, 0.3);
}

.tag.racing {
    background: rgba(0, 100, 0, 0.2);
    border: 1px solid rgba(0, 100, 0, 0.3);
}

.tag.sci-fi {
    background: rgba(25, 25, 112, 0.2);
    border: 1px solid rgba(25, 25, 112, 0.3);
}

.game-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.game-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.game-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.game-stats i {
    color: var(--primary-color);
}

.game-cta {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.game-cta:hover {
    opacity: 1;
    transform: translateX(5px);
}

.game-cta i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.game-cta:hover i {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 2rem;
    }

    .game-image {
        height: 200px;
    }

    .game-info {
        padding: 1.5rem;
    }

    .game-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .game-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Glitch Effect */
[data-text] {
    position: relative;
}

[data-text]::before,
[data-text]::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.8;
}

[data-text]::before {
    color: var(--glitch-color);
    animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
}

[data-text]::after {
    color: var(--primary-color);
    animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) reverse both infinite;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Team Section */
.team-member {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    filter: grayscale(1) contrast(1.1);
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-info {
    width: 100%;
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.contact-info p {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    font-family: 'Space Mono', monospace;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .cta-button {
    margin: 1rem auto 0;
    width: auto;
    min-width: 200px;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    animation: scan-line 2s linear infinite;
}

@keyframes scan-line {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

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

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.footer-logo img:hover {
    filter: brightness(1.2) contrast(1.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
}

.footer-social a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
    letter-spacing: 1px;
}

.footer-bottom p {
    position: relative;
    display: inline-block;
}

.footer-bottom p::before,
.footer-bottom p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.footer-bottom p::before {
    right: calc(100% + 15px);
}

.footer-bottom p::after {
    left: calc(100% + 15px);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-social {
        margin-top: 1rem;
    }

    .footer-bottom {
        margin-top: 2rem;
    }

    .footer-bottom p::before,
    .footer-bottom p::after {
        width: 20px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--text-secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-primary);
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: transform 0.3s ease;
}

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

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

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

/* Update mobile styles */
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        padding: 1rem;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links a {
        padding: 0.5rem 1rem;
    }
    
    .glitch-logo {
        height: 100px;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* About Section Styles */
.about {
    padding: 5rem 2rem;
    background: #000;
    color: #fff;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro p {
    margin-bottom: 1.5rem;
}

/* Terminal Window Styles */
.terminal-window {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 3rem;
}

.terminal-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.terminal-button:nth-child(1) { background: #ff5f56; }
.terminal-button:nth-child(2) { background: #ffbd2e; }
.terminal-button:nth-child(3) { background: #27c93f; }

.terminal-body {
    padding: 1.5rem;
    font-family: 'Space Mono', monospace;
}

.terminal-line {
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(10px);
    animation: terminalLine 0.5s ease forwards;
}

@keyframes terminalLine {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terminal-line:nth-child(1) { animation-delay: 0.1s; }
.terminal-line:nth-child(2) { animation-delay: 0.3s; }
.terminal-line:nth-child(3) { animation-delay: 0.5s; }
.terminal-line:nth-child(4) { animation-delay: 0.7s; }
.terminal-line:nth-child(5) { animation-delay: 0.9s; }

.prompt {
    color: #27c93f;
    margin-right: 0.5rem;
}

.command {
    color: #ffbd2e;
}

.response {
    color: #ff5f56;
}

.data {
    color: #fff;
}

/* Stats Container Styles */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 1.1s; }
.stat-item:nth-child(2) { animation-delay: 1.3s; }
.stat-item:nth-child(3) { animation-delay: 1.5s; }

.stat-circle {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
}

.stat-circle svg {
    transform: rotate(-90deg);
}

.stat-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 5;
}

.stat-circle-fill {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 5;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: circleFill 2s ease forwards;
}

@keyframes circleFill {
    to {
        stroke-dashoffset: 0;
    }
}

.stat-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Tech Stack Styles */
.tech-stack {
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 1.7s;
}

.tech-title {
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.tech-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 30%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

/* Add glowing border effect */
.tech-item {
    border: 1px solid transparent;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)) padding-box,
        linear-gradient(45deg, 
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.1)
        ) border-box;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% {
        border-image: linear-gradient(45deg, 
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.1)
        ) 1;
    }
    50% {
        border-image: linear-gradient(45deg, 
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.2)
        ) 1;
    }
    100% {
        border-image: linear-gradient(45deg, 
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.1)
        ) 1;
    }
}

.tech-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1),
                0 0 40px rgba(255, 255, 255, 0.05);
    animation: borderGlowHover 1.5s linear infinite;
}

@keyframes borderGlowHover {
    0% {
        border-image: linear-gradient(45deg, 
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.2)
        ) 1;
    }
    50% {
        border-image: linear-gradient(45deg, 
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.3)
        ) 1;
    }
    100% {
        border-image: linear-gradient(45deg, 
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.2)
        ) 1;
    }
}

.tech-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.tech-item:hover i {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
                 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.tech-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.tech-item:hover span {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .about-content {
        padding: 1rem;
    }

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

    .stat-circle {
        width: 120px;
        height: 120px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* News Section Styles */
.news {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    position: relative;
    overflow: hidden;
}

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

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* First News Card - Racing Theme (Blue) */
.news-card:nth-child(1) {
    border: 1px solid transparent;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)) padding-box,
        linear-gradient(45deg, 
            rgba(0, 100, 255, 0.2),
            rgba(0, 150, 255, 0.1),
            rgba(0, 100, 255, 0.2)
        ) border-box;
    animation: racingGlow 3s linear infinite;
}

@keyframes racingGlow {
    0% {
        border-image: linear-gradient(45deg, 
            rgba(0, 100, 255, 0.2),
            rgba(0, 150, 255, 0.1),
            rgba(0, 100, 255, 0.2)
        ) 1;
    }
    50% {
        border-image: linear-gradient(45deg, 
            rgba(0, 100, 255, 0.3),
            rgba(0, 150, 255, 0.2),
            rgba(0, 100, 255, 0.3)
        ) 1;
    }
    100% {
        border-image: linear-gradient(45deg, 
            rgba(0, 100, 255, 0.2),
            rgba(0, 150, 255, 0.1),
            rgba(0, 100, 255, 0.2)
        ) 1;
    }
}

/* Second News Card - Trailer Theme (Green) */
.news-card:nth-child(2) {
    border: 1px solid transparent;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)) padding-box,
        linear-gradient(45deg, 
            rgba(0, 255, 100, 0.2),
            rgba(0, 255, 150, 0.1),
            rgba(0, 255, 100, 0.2)
        ) border-box;
    animation: trailerGlow 3s linear infinite;
}

@keyframes trailerGlow {
    0% {
        border-image: linear-gradient(45deg, 
            rgba(0, 255, 100, 0.2),
            rgba(0, 255, 150, 0.1),
            rgba(0, 255, 100, 0.2)
        ) 1;
    }
    50% {
        border-image: linear-gradient(45deg, 
            rgba(0, 255, 100, 0.3),
            rgba(0, 255, 150, 0.2),
            rgba(0, 255, 100, 0.3)
        ) 1;
    }
    100% {
        border-image: linear-gradient(45deg, 
            rgba(0, 255, 100, 0.2),
            rgba(0, 255, 150, 0.1),
            rgba(0, 255, 100, 0.2)
        ) 1;
    }
}

/* Third News Card - TCG Theme (Purple) */
.news-card:nth-child(3) {
    border: 1px solid transparent;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03)) padding-box,
        linear-gradient(45deg, 
            rgba(147, 112, 219, 0.2),
            rgba(138, 43, 226, 0.1),
            rgba(147, 112, 219, 0.2)
        ) border-box;
    animation: tcgGlow 3s linear infinite;
}

@keyframes tcgGlow {
    0% {
        border-image: linear-gradient(45deg, 
            rgba(147, 112, 219, 0.2),
            rgba(138, 43, 226, 0.1),
            rgba(147, 112, 219, 0.2)
        ) 1;
    }
    50% {
        border-image: linear-gradient(45deg, 
            rgba(147, 112, 219, 0.3),
            rgba(138, 43, 226, 0.2),
            rgba(147, 112, 219, 0.3)
        ) 1;
    }
    100% {
        border-image: linear-gradient(45deg, 
            rgba(147, 112, 219, 0.2),
            rgba(138, 43, 226, 0.1),
            rgba(147, 112, 219, 0.2)
        ) 1;
    }
}

/* Hover Effects */
.news-card:hover {
    transform: translateY(-5px);
}

.news-card:nth-child(1):hover {
    box-shadow: 0 10px 30px rgba(0, 100, 255, 0.2);
    animation: racingGlowHover 1.5s linear infinite;
}

@keyframes racingGlowHover {
    0% {
        border-image: linear-gradient(45deg, 
            rgba(0, 100, 255, 0.3),
            rgba(0, 150, 255, 0.2),
            rgba(0, 100, 255, 0.3)
        ) 1;
    }
    50% {
        border-image: linear-gradient(45deg, 
            rgba(0, 100, 255, 0.4),
            rgba(0, 150, 255, 0.3),
            rgba(0, 100, 255, 0.4)
        ) 1;
    }
    100% {
        border-image: linear-gradient(45deg, 
            rgba(0, 100, 255, 0.3),
            rgba(0, 150, 255, 0.2),
            rgba(0, 100, 255, 0.3)
        ) 1;
    }
}

.news-card:nth-child(2):hover {
    box-shadow: 0 10px 30px rgba(0, 255, 100, 0.2);
    animation: trailerGlowHover 1.5s linear infinite;
}

@keyframes trailerGlowHover {
    0% {
        border-image: linear-gradient(45deg, 
            rgba(0, 255, 100, 0.3),
            rgba(0, 255, 150, 0.2),
            rgba(0, 255, 100, 0.3)
        ) 1;
    }
    50% {
        border-image: linear-gradient(45deg, 
            rgba(0, 255, 100, 0.4),
            rgba(0, 255, 150, 0.3),
            rgba(0, 255, 100, 0.4)
        ) 1;
    }
    100% {
        border-image: linear-gradient(45deg, 
            rgba(0, 255, 100, 0.3),
            rgba(0, 255, 150, 0.2),
            rgba(0, 255, 100, 0.3)
        ) 1;
    }
}

.news-card:nth-child(3):hover {
    box-shadow: 0 10px 30px rgba(147, 112, 219, 0.2);
    animation: tcgGlowHover 1.5s linear infinite;
}

@keyframes tcgGlowHover {
    0% {
        border-image: linear-gradient(45deg, 
            rgba(147, 112, 219, 0.3),
            rgba(138, 43, 226, 0.2),
            rgba(147, 112, 219, 0.3)
        ) 1;
    }
    50% {
        border-image: linear-gradient(45deg, 
            rgba(147, 112, 219, 0.4),
            rgba(138, 43, 226, 0.3),
            rgba(147, 112, 219, 0.4)
        ) 1;
    }
    100% {
        border-image: linear-gradient(45deg, 
            rgba(147, 112, 219, 0.3),
            rgba(138, 43, 226, 0.2),
            rgba(147, 112, 219, 0.3)
        ) 1;
    }
}

.news-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.news-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.news-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.news-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.news-cta i {
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

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

.news-card:hover .news-cta i {
    transform: translateX(5px);
}

/* Data Center Section Styles */
.data-center {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    position: relative;
    overflow: hidden;
}

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

.data-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.data-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.data-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #27c93f;
    box-shadow: 0 0 10px rgba(39, 201, 63, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.status-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.data-stats {
    display: grid;
    gap: 1rem;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:last-child {
    border-bottom: none;
}

.stat .label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.data-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.data-card:hover .data-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .news-grid,
    .data-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .news-card,
    .data-card {
        padding: 1.5rem;
    }

    .news-card h3,
    .data-info h3 {
        font-size: 1.2rem;
    }
}

/* Roadmap Section Styles */
.roadmap {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    position: relative;
    overflow: hidden;
}

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

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.roadmap-timeline::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
    z-index: 1;
}

.roadmap-node {
    position: absolute;
    top: 50px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: 2;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.roadmap-node::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -2rem;
    right: -2rem;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
    z-index: -1;
}

.roadmap-node:nth-child(1) { left: 25%; }
.roadmap-node:nth-child(2) { left: 50%; }
.roadmap-node:nth-child(3) { left: 75%; }

.quarter {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quarter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 30%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quarter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.quarter-header h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.quarter-status {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.quarter-status.active {
    background: rgba(39, 201, 63, 0.2);
    color: #27c93f;
    animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 201, 63, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(39, 201, 63, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(39, 201, 63, 0);
    }
}

.milestone-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.milestone {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.milestone-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}

.milestone.completed .milestone-dot {
    background: #27c93f;
    box-shadow: 0 0 10px rgba(39, 201, 63, 0.5);
}

.milestone.active .milestone-dot {
    background: #ffbd2e;
    box-shadow: 0 0 10px rgba(255, 189, 46, 0.5);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.milestone-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.milestone.completed .milestone-text {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: line-through;
}

.milestone.active .milestone-text {
    color: var(--primary-color);
}

/* Quarter Hover Effects */
.quarter:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quarter:hover::before {
    opacity: 1;
}

.quarter[data-quarter="Q1"]:hover {
    border-color: rgba(39, 201, 63, 0.3);
    box-shadow: 0 10px 30px rgba(39, 201, 63, 0.1);
}

.quarter[data-quarter="Q2"]:hover {
    border-color: rgba(0, 100, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 100, 255, 0.1);
}

.quarter[data-quarter="Q3"]:hover {
    border-color: rgba(255, 189, 46, 0.3);
    box-shadow: 0 10px 30px rgba(255, 189, 46, 0.1);
}

.quarter[data-quarter="Q4"]:hover {
    border-color: rgba(147, 112, 219, 0.3);
    box-shadow: 0 10px 30px rgba(147, 112, 219, 0.1);
}

.quarter:hover ~ .roadmap-node,
.roadmap-node:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.2);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .roadmap-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .roadmap-timeline {
        grid-template-columns: 1fr;
    }

    .roadmap-timeline::before {
        display: none;
    }

    .quarter {
        padding: 1.5rem;
    }
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 120px 0 60px;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.1);
}

.policy-section h2 {
    color: #00ff00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.policy-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.policy-section ul {
    list-style: none;
    padding-left: 1.5rem;
}

.policy-section ul li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.policy-section ul li::before {
    content: ">";
    color: #00ff00;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.policy-section .contact-info {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.policy-section .contact-info i {
    color: #00ff00;
    margin-right: 0.5rem;
    width: 20px;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 40px;
    }

    .policy-content {
        padding: 1rem;
    }

    .policy-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }
}

/* Noise Background */
@keyframes noise {
    0% { transform: translate(0, 0) }
    10% { transform: translate(-5%, -5%) }
    20% { transform: translate(-10%, 5%) }
    30% { transform: translate(5%, -10%) }
    40% { transform: translate(-5%, 15%) }
    50% { transform: translate(-10%, 5%) }
    60% { transform: translate(15%, 0) }
    70% { transform: translate(0, 10%) }
    80% { transform: translate(3%, 15%) }
    90% { transform: translate(-10%, 10%) }
    100% { transform: translate(5%, 5%) }
}

.noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    animation: noise 0.2s infinite;
    pointer-events: none;
    z-index: 1;
}

/* Transmit Button Styles */
.transmit-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
}

.transmit-button .button-text {
    position: relative;
    z-index: 2;
    margin-right: 0.5rem;
}

.transmit-button .button-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.transmit-button .button-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.transmit-button:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.transmit-button:hover .button-icon {
    transform: translateX(5px);
}

.transmit-button:hover .button-glow {
    opacity: 1;
    animation: buttonGlow 2s linear infinite;
}

.transmit-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes buttonGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Space Mono', monospace;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .cta-button {
    margin: 1rem auto 0;
    width: auto;
    min-width: 200px;
}