@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

:root {
    --pink-primary: #ff3399;
    --pink-light: #ff66b2;
    --pink-dark: #cc0066;
    --pink-accent: #ff99cc;
    --pink-gradient: linear-gradient(45deg, #ff3399, #ff66b2);
    --white: #ffffff;
    --white-off: #f5f5f5;
    --gray-light: #e6e6e6;
    --dark: #1a1a1a;
    --font-logo: 'Press Start 2P', cursive;
    --font-main: 'VT323', monospace;
    --window-border: 2px solid #000;
    --window-bg: #fff;
    --window-header: linear-gradient(to right, var(--pink-primary), var(--pink-light));
    --window-shadow: inset -1px -1px #0a0a0a,inset 1px 1px #dfdfdf,inset -2px -2px grey,inset 2px 2px #fff;
    --btn-shadow: inset -1px -1px #0a0a0a,inset 1px 1px #fff,inset -2px -2px grey,inset 2px 2px #dfdfdf;
    --bg-alt: #f0f0f0;
    --taskbar-bg: #c3c3c3;
    --menu-hover: #000080;
    --cursor-default: url('/cursors/default.cur'), auto;
    --cursor-pointer: url('/cursors/pointer.cur'), pointer;
}


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

body {
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 400;
    background-color: var(--pink-light);
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.15) 2px, transparent 0),
        radial-gradient(circle at 6px 6px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 8px 8px;
    background-position: 0 0;
    color: var(--dark);
    min-height: 100vh;
    padding-top: 40px;
    position: relative;
    cursor: default;
    image-rendering: pixelated;
    -webkit-font-smoothing: none;
}

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

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 100;
}

.lang-btn {
    background: var(--white);
    border: 2px solid var(--pink-primary);
    color: var(--pink-primary);
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}
section.live-games {
    background: transparent !important;
}

.lang-btn:hover {
    background: var(--pink-primary);
    color: var(--white);
}
/* Game Card Badge */
.game-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--pink-primary);
    color: white;
    padding: 4px 8px;
    font-family: var(--font-logo);
    font-size: 0.7rem;
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    z-index: 10;
}

/* Optional: Add a subtle pulse animation */
@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.game-badge.new {
    animation: badgePulse 2s ease-in-out infinite;
} 
/* Hero Section */
.hero {
    min-height: calc(50vh - 120px);
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--pink-light);
    background: #f0f0f0;
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    margin: 20px 0;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    isolation: isolate;
}


.hero:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--window-shadow), 
                4px 4px 0 rgba(0, 0, 0, 0.8),
                8px 8px 0 rgba(255, 51, 153, 0.3);
    cursor: pointer;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 1.5rem 0;
}

.hero-text {
    text-align: left;
    padding-left: 1.5rem;
    max-width: 100%;
    overflow: hidden;
}

.gradient-text {
    font-family: var(--font-logo) !important;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: var(--pink-primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
 
    text-shadow: 2px 2px 4px rgba(255, 51, 153, 0.2);
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gradient-text span {
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--dark);
    max-width: 36rem;
    margin: 0 0 2rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.button-group {
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-right {
    position: relative;
    width: 100%;
    height: 400px;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-gif {
    width: 80%;
    height: 100%;
    background-image: url("/img/gifazo.gif");
    background-size: cover;
    background-position: center;

    mix-blend-mode: multiply;
    opacity: 0.9;
    margin: 0 auto;
}

@keyframes morphShape {
    0% {
        clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    }
    50% {
        clip-path: polygon(0% 0%, 75% 25%, 100% 100%, 25% 75%);
    }
    100% {
        clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    }
}

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

/* Buttons */
.btn {
    font-family: var(--font-logo);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    padding: 1.2rem 2rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    background: var(--white-off);
    border: none;
    box-shadow: var(--btn-shadow);
    padding: 12px 12px;
    min-width: 100px;
    position: relative;
}

.btn.primary {
    background: var(--pink-gradient);
    border: none;
    color: var(--white);
}

.btn.primary:hover {
    background: linear-gradient(45deg, var(--pink-light), var(--pink-primary));
    transform: translateY(-2px);
}

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

.btn.secondary:hover {
    background: var(--pink-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn:active {
    box-shadow: inset 1px 1px #0a0a0a,inset -1px -1px #fff,inset 2px 2px grey,inset -2px -2px #dfdfdf;
   
}

/* Game card badges */
.game-badges {
    position: absolute;
    top: -8px;
    right: -8px;
    display: flex;
    gap: 4px;
    z-index: 2;
}

.badge {
    padding: 4px 8px;
    font-size: 0.7rem;
    font-family: var(--font-logo);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
}

.badge.hot {
    background: #ff4444;
    color: white;
    animation: pulse 2s infinite;
}

.badge.new {
    background: var(--pink-primary);
    color: white;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    border-top: 2px solid var(--pink-light);
    border-bottom: 2px solid var(--pink-light);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    margin: 20px 0;
    position: relative;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    background: var(--window-bg);
}

.features:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--window-shadow), 
                4px 4px 0 rgba(0, 0, 0, 0.8),
                8px 8px 0 rgba(255, 51, 153, 0.3);
    cursor: pointer;
}

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

.feature-card {
    text-align: left;
    border-left: 2px solid var(--pink-light);
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    padding: 16px;
    transition: all 0.2s ease;
}

.feature-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--window-shadow), 
                4px 4px 0 rgba(0, 0, 0, 0.8),
                8px 8px 0 rgba(255, 51, 153, 0.3);
    cursor: pointer;
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--pink-primary);
}

/* CTA Section */
.cta {
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    margin: 20px 0;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.cta:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--window-shadow), 
                4px 4px 0 rgba(0, 0, 0, 0.8),
                8px 8px 0 rgba(255, 51, 153, 0.3);
    cursor: pointer;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pink-gradient);
    opacity: 0.05;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: var(--white-off);
    border-top: 2px solid #fff;
    border-bottom: 2px solid #000;
    box-shadow: var(--window-shadow);
    height: 40px;
    top: auto;
    bottom: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
    font-family: var(--font-main);
    font-size: 1.4rem;
}

.nav-links a:hover {
    color: var(--pink-primary);
}

/* Background Texture */
.texture-overlay {
    position: fixed;
    inset: 0;
    background: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.005" numOctaves="2"/></filter><rect width="100%" height="100%" filter="url(%23noise)"/></svg>');
    opacity: 0.02;
    pointer-events: none;
    mix-blend-mode: multiply;
}

/* Stats Section */
.stats {
    padding: 2rem 0;
    background: #f0f0f0;
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    margin: 20px 0;
    position: relative;
    transition: all 0.2s ease;
    overflow: hidden;
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
}

.stats:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--window-shadow), 
                4px 4px 0 rgba(0, 0, 0, 0.8),
                8px 8px 0 rgba(255, 51, 153, 0.3);
    cursor: pointer;
}

.stats-marquee {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.stats-marquee-inner {
    display: flex;
    animation: statsMarquee 15s linear infinite;
    width: max-content;
    padding: 20px 0;
    gap: 45px;
}

@keyframes statsMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.stats-marquee:hover .stats-marquee-inner {
    animation-play-state: paused;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
    padding: 0;
    flex-shrink: 0;
}

.stat-item {
    text-align: center;
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    padding: 16px;
    min-width: 200px;
    margin: 0 10px;
}

.stat-number {
    display: block;
    font-family: var(--font-logo);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pink-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark);
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--window-bg);
    padding: 4rem 2rem;
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    margin: 20px 0;
    position: relative;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.footer:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--window-shadow), 
                4px 4px 0 rgba(0, 0, 0, 0.8),
                8px 8px 0 rgba(255, 51, 153, 0.3);
    cursor: pointer;
}

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

.footer-brand p {
    color: var(--dark);
    margin: 1rem 0 1.5rem;
}

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

.social-link {
    color: var(--pink-primary);
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.8;
}

.footer-links h4 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-family: var(--font-logo);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

section.stats {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
section.stats div.container {
    padding: 0 !important;
}
	
.footer-links a {
    display: block;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--pink-primary);
}

.footer-bottom {
    border-top: var(--window-border);
    padding-top: 1.5rem;

    text-align: center;
    color: var(--dark);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(15deg);
    }
    50% {
        transform: translate(-30px, 30px) rotate(15deg);
    }
    100% {
        transform: translate(0, 0) rotate(15deg);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .gradient-text {
        font-size: 1.8rem;
        letter-spacing: 0.25px;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
} 

/* Add window controls */
.window-controls {
    position: absolute;
    right: 4px;
    top: 4px;
    display: flex;
    gap: 2px;
}

.window-control {
    width: 16px;
    height: 16px;
    background: var(--white-off);
    border: 1px solid #000;
    box-shadow: var(--btn-shadow);
    cursor: pointer;
}

.window-control:hover {
    background: var(--gray-light);
}

.window-control:active {
    box-shadow: inset 1px 1px #0a0a0a,inset -1px -1px #fff,inset 2px 2px grey,inset -2px -2px #dfdfdf;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: var(--white-off);
    border: 1px solid #000;
}

::-webkit-scrollbar-thumb {
    background: var(--white);
    border: 1px solid #000;
    box-shadow: var(--btn-shadow);
} 

/* Windows 98 Start Bar */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--taskbar-bg);
    border-top: 2px solid #fff;
    border-bottom: 2px solid #000;
    box-shadow: var(--window-shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 4px;
}

.start-button {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--taskbar-bg);
    border: var(--window-border);
    box-shadow: var(--btn-shadow);
    padding: 4px 8px;
    height: 30px;
    margin: 0 4px;
    cursor: pointer;
}

.start-button:active {
    box-shadow: inset 1px 1px #0a0a0a,inset -1px -1px #fff,inset 2px 2px grey,inset -2px -2px #dfdfdf;
}

/* New Windows 98 Navbar */
.win98-nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    height: 42px;
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    z-index: 1000;
    max-width: 1280px;
    margin: 0 auto;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 8px;
}

.nav-left, .nav-right {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
}

.nav-logo {
    width: 20px;
    height: 20px;
}

.nav-brand {
    font-family: var(--font-logo);
    font-size: 0.8rem;
    color: var(--pink-primary);
}

.nav-menu-btn,
.wallet-btn,
.connect-btn {
    padding: 4px 12px;
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--btn-shadow);
    font-family: var(--font-main);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 28px;
    transition: all 0.2s;
}

.nav-menu-btn:active,
.wallet-btn:active,
.connect-btn:active {
    box-shadow: inset 1px 1px #0a0a0a,
                inset -1px -1px #fff,
                inset 2px 2px grey,
                inset -2px -2px #dfdfdf;
    padding: 5px 11px 3px 13px;
}

/* Updated Marquee Styles */
.win98-marquee {
    left: 0;
    overflow: hidden;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.marquee-inner {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
    white-space: nowrap;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1.1rem;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Optional: Pause animation on hover */
.win98-marquee:hover .marquee-inner {
    animation-play-state: paused;
}

/* Alternating section backgrounds */
section:nth-child(odd) {
    background: #f0f0f0;
}

section:nth-child(even) {
    background: var(--bg-alt);
}

/* Add section headers */
.section-header {
    background: var(--window-header);
    color: white;
    padding: 6px 12px;
    font-family: var(--font-logo);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
} 

/* Add these styles */
.section-spacing {
    padding: 60px 0;
    margin: 20px 0;
}

.content-wrapper {
    padding: 24px;
}

/* Update existing sections */
.hero {
    margin-top: 80px;
}

.features, .games, .stats, .cta {
    margin: 20px 0;
}

/* Add divider lines */
.section-divider {
    height: 2px;
    background: var(--window-border);
    margin: 40px 0;
} 

/* Windows 98 title bar buttons */
.window-controls {
    display: flex;
    gap: 2px;
}

.window-control {
    width: 16px;
    height: 14px;
    border: 1px solid #000;
    box-shadow: var(--btn-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Segoe UI", sans-serif;
    font-size: 10px;
    cursor: pointer;
}

.window-control:active {
    box-shadow: inset 1px 1px #0a0a0a,inset -1px -1px #fff,inset 2px 2px grey,inset -2px -2px #dfdfdf;
}

/* Windows 98 status bar */
.status-bar {
    border-top: 1px solid #dfdfdf;
    background: var(--taskbar-bg);
    padding: 4px 8px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
}

/* Pink background sections */
.animated-bg {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("/img/gifazo.gif");
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

/* Windows 98 tooltips */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffe1;
    border: 1px solid #000;
    padding: 4px 8px;
    font-size: 12px;
    white-space: nowrap;
    color: #000;
    z-index: 1000;
} 

/* Add pointer cursor to clickable elements */
a,
button,
.btn,
[role="button"],
.game-card,
.nav-menu a,
.social-link {
    cursor: pointer;
}

/* Optional: Add a special cursor for text selection */
input,
textarea {
    cursor: text;
} 

.game-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    margin: 1rem auto;
    width: 50px;
    height: 50px;
    color: white;
    border-radius: 4px;
} 

/* Game Showcase Section */
.game-showcase {
    padding: 4rem 2rem;
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    margin: 20px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.2s ease;
}

.game-showcase:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--window-shadow), 
                4px 4px 0 rgba(0, 0, 0, 0.8),
                8px 8px 0 rgba(255, 51, 153, 0.3);
    cursor: pointer;
}

.game-module {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    margin-bottom: 2rem;
    height: 200px;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.game-module-icon {
    background: var(--pink-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    padding: 1.5rem;
    border-right: var(--window-border);
    min-width: 200px;
}

.game-module-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.game-module-title {
    font-family: var(--font-logo);
    font-size: 1.2rem;
    color: var(--pink-primary);
}

.game-module-badges {
    display: flex;
    gap: 0.5rem;
} 

/* Individual Game Sections */
.game-sections {
    gap: 2rem;
    max-width: 1280px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.game-sections:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--window-shadow), 
                4px 4px 0 rgba(0, 0, 0, 0.8),
                8px 8px 0 rgba(255, 51, 153, 0.3);
    cursor: pointer;
}

.game-section {
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    margin-bottom: 2rem;
    height: 180px;
    transition: all 0.2s ease;
}

.game-section:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--window-shadow), 
                4px 4px 0 rgba(0, 0, 0, 0.8),
                8px 8px 0 rgba(255, 51, 153, 0.3);
    cursor: pointer;
}

.game-section-header {
    background: var(--window-header);
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-column: 1 / -1;
}

.game-section-title {
    color: white;
    font-family: var(--font-logo);
    font-size: 0.9rem;
}

.game-section-content {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.game-section-icon {
    font-size: 4rem;
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    border-radius: 0;
    border-right: var(--window-border);
    margin: 0;
    color: white;
}

.game-section-description {
    text-align: left;
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: auto;
}

.game-section-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
} 

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

.nav-play-now {
    background: var(--pink-gradient);
    color: white;
    font-family: var(--font-logo);
    font-size: 0.8rem;
    padding: 4px 12px;
    border: var(--window-border);
    box-shadow: var(--btn-shadow);
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 24px;
}

.nav-play-now:hover {
    transform: translateY(-1px);
    box-shadow: var(--window-shadow), 
                2px 2px 0 rgba(0, 0, 0, 0.8),
                4px 4px 0 rgba(255, 51, 153, 0.3);
} 

/* Sections Wrapper */
.sections-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}

/* Update individual sections */
.hero,
.stats,
.features,
.cta,
.footer,
.live-games,
.tournaments,
.leaderboard,
.news-updates,
.community {
    margin: 20px 0;
    width: 100%;
    max-width: 1280px;
}

/* Update first section margin */
.hero {
    margin-top: 60px;
} 

/* Update section containers */
.features .container,
.cta .container,
.footer .container {
    max-width: 1280px;
    padding: 0 2rem;
} 

/* Live Games Section */
.live-games {
    margin: 20px 0;
    position: relative;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 1280px;
}

.live-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
}

.live-game-card {
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    overflow: hidden;
    transition: all 0.2s ease;
    position: relative;
    height: 100%;
}

.live-game-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--window-shadow), 
                4px 4px 0 rgba(0, 0, 0, 0.8),
                8px 8px 0 rgba(255, 51, 153, 0.3);
}

.game-preview {

    padding: 1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.live-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ff4444;
    color: white;
    padding: 0.25rem 0.5rem;
    font-family: var(--font-logo);
    font-size: 0.8rem;
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    animation: pulse 2s infinite;
}

.player-count {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--window-bg);
    padding: 0.25rem 0.5rem;
    font-family: var(--font-main);
    font-size: 1rem;
    border: var(--window-border);
    box-shadow: var(--window-shadow);
}

.game-info {
    padding: 1.5rem;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-info h3 {
    font-family: var(--font-logo);
    font-size: 1.1rem;
    color: var(--pink-primary);
    margin-bottom: 0.5rem;
}

.game-info p {
    font-family: var(--font-main);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Tournament Section */
.tournaments {
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    margin: 20px 0;
    position: relative;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 1280px;
}

.tournament-list {
    padding: 2rem;
} 

/* Leaderboard Section */
.leaderboard {
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    margin: 20px 0;
    position: relative;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 1280px;
}

.leaderboard-content {
    padding: 2rem;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.leaderboard-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--window-shadow), 
                4px 4px 0 rgba(0, 0, 0, 0.8),
                8px 8px 0 rgba(255, 51, 153, 0.3);
}

.rank {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    color: var(--pink-primary);
    width: 40px;
    text-align: center;
}

.player-info {
    flex: 1;
    margin-left: 1rem;
}

.player-name {
    font-family: var(--font-logo);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.25rem;
}

.player-stats {
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--dark);
    opacity: 0.8;
}

.player-badge {
    font-size: 1.5rem;
    margin-left: 1rem;
}

/* News Section */
.news-updates {
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    margin: 20px 0;
    position: relative;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 1280px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
}

.news-card {
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.news-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--window-shadow), 
                4px 4px 0 rgba(0, 0, 0, 0.8),
                8px 8px 0 rgba(255, 51, 153, 0.3);
}

.news-date {
    font-family: var(--font-logo);
    font-size: 0.7rem;
    color: var(--pink-primary);
    margin-bottom: 0.5rem;
}

.news-card h3 {
    font-family: var(--font-logo);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-card p {
    font-family: var(--font-main);
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--dark);
    opacity: 0.8;
}

.news-link {
    font-family: var(--font-logo);
    font-size: 0.7rem;
    color: var(--pink-primary);
    text-decoration: none;
}

/* Community Section */
.community {
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    margin: 20px 0;
    position: relative;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 1280px;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
}

.achievement-card {
    display: flex;
    align-items: center;
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.achievement-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--window-shadow), 
                4px 4px 0 rgba(0, 0, 0, 0.8),
                8px 8px 0 rgba(255, 51, 153, 0.3);
}

.achievement-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.achievement-info h3 {
    font-family: var(--font-logo);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.achievement-info p {
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.achievement-stat {
    font-family: var(--font-logo);
    font-size: 0.7rem;
    color: var(--pink-primary);
} 

/* Add transition for collapsing/expanding */
.container,
.live-games-grid,
.tournament-list,
.leaderboard-content,
.news-grid,
.community-grid {
    transition: all 0.3s ease;
}

.window-control {
    width: 16px;
    height: 16px;
    background: var(--white-off);
    border: 1px solid #000;
    box-shadow: var(--btn-shadow);
    cursor: pointer;
}

.window-control:hover {
    background: var(--gray-light);
}

.window-control:active {
    box-shadow: inset 1px 1px #0a0a0a,
                inset -1px -1px #fff,
                inset 2px 2px grey,
                inset -2px -2px #dfdfdf;
} 

/* Add retro shapes animation */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.retro-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.shape:hover {
    opacity: 0.5;
    transform: scale(1.2);
}

.shape-1 {
    top: 20%;
    left: 10%;
    background: var(--pink-primary);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: spiral 8s ease-in-out infinite;
}

.shape-2 {
    top: 60%;
    right: 15%;
    background: var(--pink-light);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: bounce 6s ease-in-out infinite;
    animation-delay: 0.3s;
}

.shape-3 {
    bottom: 20%;
    left: 20%;
    background: var(--pink-dark);
    border-radius: 50%;
    animation: floatAndSpin 7s ease-in-out infinite;
    animation-delay: 0.8s;
}

.shape-4 {
    top: 30%;
    right: 25%;
    background: var(--pink-accent);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: zigzag 9s ease-in-out infinite reverse;
}

@keyframes floatAndSpin {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-40px) rotate(180deg) scale(1.3); }
    50% { transform: translateY(-15px) rotate(360deg) scale(0.8); }
    75% { transform: translateY(-50px) rotate(540deg) scale(1.2); }
}

@keyframes zigzag {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(40px, 40px) rotate(90deg) scale(1.2); }
    50% { transform: translate(-30px, 80px) rotate(180deg) scale(0.8); }
    75% { transform: translate(-40px, 20px) rotate(270deg) scale(1.1); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.shape-5 {
    top: 15%;
    right: 40%;
    background: var(--pink-primary);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: floatAndSpin 10s ease-in-out infinite reverse;
}

.shape-6 {
    bottom: 25%;
    right: 10%;
    background: var(--pink-light);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
    animation: zigzag 7s ease-in-out infinite;
}

.shape-7 {
    top: 45%;
    left: 15%;
    background: var(--pink-accent);
    width: 15px;
    height: 15px;
    border-radius: 4px;
    animation: floatAndSpin 8s ease-in-out infinite;
    animation-delay: 0.7s;
}

.shape-8 {
    bottom: 35%;
    right: 35%;
    background: var(--pink-dark);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    animation: zigzag 6s ease-in-out infinite;
    animation-delay: 1.2s;
}

.shape-9 {
    top: 55%;
    left: 30%;
    background: var(--pink-primary);
    clip-path: circle(50% at 50% 50%);
    animation: floatAndSpin 9s ease-in-out infinite;
    animation-delay: 0.3s;
}

.shape-10 {
    top: 25%;
    left: 45%;
    background: var(--pink-light);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: zigzag 7s ease-in-out infinite;
    animation-delay: 1.8s;
}

.shape-11 {
    top: 40%;
    left: 55%;
    background: var(--pink-dark);
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    animation: spiral 6s ease-in-out infinite;
}

.shape-12 {
    bottom: 45%;
    right: 20%;
    background: var(--pink-accent);
    width: 25px;
    height: 25px;
    clip-path: circle(50% at 50% 50%);
    animation: bounce 7s ease-in-out infinite;
}

.shape-13 {
    top: 65%;
    left: 35%;
    background: var(--pink-primary);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: floatAndSpin 8s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-14 {
    top: 35%;
    right: 45%;
    background: var(--pink-light);
    width: 15px;
    height: 15px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: zigzag 9s ease-in-out infinite;
}

.shape-15 {
    bottom: 30%;
    left: 40%;
    background: var(--pink-dark);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: bounce 8s ease-in-out infinite;
    animation-delay: 0.5s;
} 

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 51, 153, 0.2); }
    50% { text-shadow: 0 0 20px rgba(255, 51, 153, 0.4); }
} 

/* Add transition for section collapsing */
section .container,
section .live-games-grid,
section .tournament-list,
section .leaderboard-content,
section .news-grid,
section .community-grid {
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

section.collapsed .container,
section.collapsed .live-games-grid,
section.collapsed .tournament-list,
section.collapsed .leaderboard-content,
section.collapsed .news-grid,
section.collapsed .community-grid {
    height: 0;
    padding: 0;
    margin: 0;
} 

/* Windows 98 Footer */
.win98-footer {
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--window-shadow);
    margin: 20px auto;
    width: 100%;
    max-width: 1280px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    border-bottom: var(--window-border);
}

.footer-section h4 {
    font-family: var(--font-logo);
    font-size: 0.8rem;
    color: var(--pink-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

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

.footer-section a {
    color: var(--dark);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 1.1rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--pink-primary);
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-btn {
    background: var(--window-bg);
    border: var(--window-border);
    box-shadow: var(--btn-shadow);
    padding: 0.5rem 1rem;
    font-family: var(--font-main);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    text-align: left;
}

.social-btn:hover {
    background: var(--gray-light);
}

.social-btn:active {
    box-shadow: inset 1px 1px #0a0a0a,
                inset -1px -1px #fff,
                inset 2px 2px grey,
                inset -2px -2px #dfdfdf;
    padding: 6px 10px 4px 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--taskbar-bg);
    font-family: var(--font-main);
    font-size: 1rem;
}

.footer-status {
    display: flex;
    gap: 2rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-status {
        flex-direction: column;
        gap: 0.5rem;
    }
} 