:root {
    --bg-primary: #121212;
    --bg-secondary: #1e1e1e;
    --accent-blue: #00E5FF;
    --accent-pink: #FF2D95;
    --text-primary: #F5F5F5;
    --text-secondary: #B0B0B0;
    --glass-bg: rgba(255, 255, 255, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Navbar */
.navbar {
    background-color: var(--bg-secondary);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.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;
    height: 40px;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    background: linear-gradient(45deg, var(--bg-primary), var(--bg-secondary));
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Hero Logo */
.hero-logo {
    width: 300px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.5));
}

/* Buttons */
.cta-button, .secondary-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button {
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-pink));
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.secondary-button {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--accent-blue);
}

.cta-button:hover, .secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
}

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

.feature-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card h2 {
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

/* About Preview Section */
.about-preview {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.about-preview h2 {
    margin-bottom: 1.5rem;
    color: var(--accent-pink);
}

.text-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

/* Footer */
footer {
    background-color: var(--bg-secondary);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .logo {
        height: 32px;
    }
    
    .logo-img {
        height: 100%;
    }
    
    .hero-logo {
        width: 200px;
    }
}

/* Support Page Styles */
.support-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    background: linear-gradient(45deg, var(--bg-primary), var(--bg-secondary));
    margin-top: 4rem;
}

.support-content {
    max-width: 800px;
}

.support-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.support-benefits {
    padding: 4rem 2rem;
}

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

.benefits-container h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-blue);
}

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

.benefit-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.benefit-card h3 {
    color: var(--accent-pink);
    margin-bottom: 1rem;
}

.support-options {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
}

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

.support-container h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-blue);
}

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

.support-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.support-card h3 {
    color: var(--accent-pink);
    margin-bottom: 1rem;
}

.social-share {
    margin-top: 1.5rem;
}

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--accent-blue);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-blue);
    color: var(--bg-primary);
}

/* Responsive adjustments for support page */
@media (max-width: 768px) {
    .support-hero {
        height: 50vh;
    }
    
    .support-content h1 {
        font-size: 2.5rem;
    }
    
    .benefits-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }
}

/* Policy Pages Styles */
.policy-content {
    margin-top: 4rem;
    padding: 2rem;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.last-updated {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    color: var(--accent-pink);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-section h3 {
    color: var(--accent-blue);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.2rem;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.policy-section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.policy-section a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: var(--accent-pink);
}

/* Responsive adjustments for policy pages */
@media (max-width: 768px) {
    .policy-container {
        padding: 2rem;
    }
    
    .policy-container h1 {
        font-size: 2rem;
    }
}

/* Games Page Styles */
.games-hero {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
}

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

.games-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.games-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.games-gallery {
    padding: 40px 20px;
    background-color: #f5f5f5;
}

.games-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 20px;
}

.game-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.game-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.game-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-button {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.play-button:hover {
    background: #0056b3;
}

.game-info {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-info h2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.game-info p {
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 0.9rem;
    flex-grow: 1;
}

.game-meta {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.game-type, .game-players {
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #666;
}

.games-cta {
    background: linear-gradient(135deg, #181828 60%, #23233a 100%);
    border-radius: 18px;
    box-shadow: 0 0 40px 10px #00e5ff55, 0 0 80px 10px #ff2d9555;
    border: 3px solid #ff2d95;
    margin: 3rem auto 2rem auto;
    max-width: 900px;
    padding: 48px 20px 40px 20px;
    text-align: center;
    color: #fff200;
    position: relative;
    animation: neon-border 2.5s infinite alternate;
}

.games-cta .cta-content h2 {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: #fff200;
    text-shadow: 0 0 12px #ff2d95, 0 0 24px #00e5ff, 0 0 2px #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.12em;
}

.games-cta .cta-content p {
    color: #F5F5F5;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 8px #00e5ff88;
}

.games-cta .cta-button, .games-cta a img {
    margin-top: 0.5rem;
    box-shadow: 0 0 16px #fff200, 0 0 32px #ff2d95;
    border-radius: 12px;
    transition: box-shadow 0.3s, transform 0.2s;
}

.games-cta a img:hover {
    box-shadow: 0 0 32px #fff200, 0 0 48px #ff2d95;
    transform: scale(1.07);
}

@media (max-width: 768px) {
    .arcade-marquee {
        margin-top: 70px;
    }
    .arcade-marquee h1 {
        font-size: 2rem;
    }
    .games-cta {
        padding: 32px 8px 28px 8px;
    }
}

/* Arcade Marquee Header */
.arcade-marquee {
    margin-top: 90px; /* Push below navbar */
    z-index: 2;
    position: relative;
    background: linear-gradient(90deg, #181828 0%, #23233a 100%);
    border: 4px solid #ff2d95;
    box-shadow: 0 0 40px 10px #00e5ff88, 0 0 80px 10px #ff2d9588;
}

.arcade-marquee h1 {
    color: #fff200;
    text-shadow: 0 0 16px #ff2d95, 0 0 32px #00e5ff, 0 0 8px #181828, 0 0 2px #fff;
    background: none;
    padding: 0 2rem;
    font-size: 3.2rem;
    letter-spacing: 0.18em;
    filter: drop-shadow(0 0 8px #ff2d95) drop-shadow(0 0 12px #00e5ff);
}

/* Neon Animated Border for Games Gallery */
.games-gallery {
    padding: 40px 20px;
    background: #181828;
    border-radius: 18px;
    box-shadow: 0 0 40px 10px #00e5ff55, 0 0 80px 10px #ff2d9555;
    border: 3px solid #00e5ff;
    position: relative;
    animation: neon-border 2.5s infinite alternate;
}

@keyframes neon-border {
    0% {
        box-shadow: 0 0 40px 10px #00e5ff55, 0 0 80px 10px #ff2d9555;
        border-color: #00e5ff;
    }
    100% {
        box-shadow: 0 0 80px 20px #ff2d9555, 0 0 120px 20px #00e5ff55;
        border-color: #ff2d95;
    }
}

/* Arcade Cabinet Game Card Styles */
.game-card {
    background: linear-gradient(135deg, #23233a 60%, #2a2a2a 100%);
    border-radius: 18px 18px 10px 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 #00e5ff55, 0 2px 8px #ff2d9555, 0 0 0 4px #fff20044;
    border: 3px solid #ff2d95;
    transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.03) rotate(-1deg);
    box-shadow: 0 16px 48px 0 #00e5ff99, 0 4px 16px #ff2d9599, 0 0 0 6px #fff20088;
    border-color: #fff200;
}

.game-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.game-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-button {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.play-button:hover {
    background: #0056b3;
}

.game-info {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-info h2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.game-info p {
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 0.9rem;
    flex-grow: 1;
}

.game-meta {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.game-type, .game-players {
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #666;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #007bff;
    padding: 10px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .games-hero h1 {
        font-size: 2rem;
    }
    
    .games-container {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
    
    .game-card {
        max-width: 100%;
    }
}

/* About Page Styles */
.about-hero, .about-story, .about-mission, .about-support, .about-contact {
    max-width: 800px;
    margin: 2.5rem auto 2.5rem auto;
    padding: 2rem 1.5rem;
    background: var(--glass-bg);
    border-radius: 18px;
    box-shadow: 0 0 24px 0 #00e5ff33, 0 2px 8px #ff2d9533;
}

.about-hero {
    margin-top: 110px;
    text-align: center;
}

.about-pugs-img {
    display: block;
    margin: 0 auto 1rem auto;
    max-width: 350px;
    width: 90%;
    border-radius: 18px;
    box-shadow: 0 0 32px #00e5ff88, 0 0 16px #ff2d9588;
    border: 4px solid #ff2d95;
}

.about-pugs-caption {
    text-align: center;
    color: #fff200;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 8px #00e5ff88;
}

.about-container {
    margin: 0 auto;
    max-width: 700px;
}

.about-hero h1, .about-container h2 {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    color: #fff200;
    text-shadow: 0 0 12px #ff2d95, 0 0 24px #00e5ff, 0 0 2px #fff;
    margin-bottom: 1.2rem;
    letter-spacing: 0.08em;
}

.about-container h2 {
    font-size: 2rem;
    margin-top: 0;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-top: 0;
}

.about-hero p, .about-container p {
    color: #F5F5F5;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.about-support a {
    color: #00e5ff;
    font-weight: 600;
    text-shadow: 0 0 8px #00e5ff88;
    transition: color 0.2s;
}
.about-support a:hover {
    color: #fff200;
    text-shadow: 0 0 12px #fff20088;
}

.about-support a img {
    margin-top: 1rem;
    box-shadow: 0 0 16px #fff200, 0 0 32px #ff2d95;
    border-radius: 12px;
    transition: box-shadow 0.3s, transform 0.2s;
}
.about-support a img:hover {
    box-shadow: 0 0 32px #fff200, 0 0 48px #ff2d95;
    transform: scale(1.07);
}

@media (max-width: 600px) {
    .about-hero, .about-story, .about-mission, .about-support, .about-contact {
        padding: 1rem 0.5rem;
    }
    .about-hero h1 {
        font-size: 1.5rem;
    }
    .about-container h2 {
        font-size: 1.2rem;
    }
    .about-pugs-img {
        max-width: 98vw;
    }
} 