@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-green: #00ff00;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --grid-color: rgba(0, 255, 0, 0.1);
    --text-white: #ffffff;
    --border-green: #00ff00;
}

body {
    font-family: 'Press Start 2P', cursive;
    background-color: var(--dark-bg);
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    color: var(--text-white);
    line-height: 1.6;
    font-size: 10px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--darker-bg);
    border-bottom: 2px solid var(--neon-green);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--neon-green);
    font-size: 12px;
    transition: text-shadow 0.3s;
}

.logo:hover {
    text-shadow: 0 0 10px var(--neon-green);
}

.logo-icon {
    width: 30px;
    height: 30px;
}

.logo-text {
    font-size: 12px;
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--neon-green);
    text-decoration: none;
    font-size: 10px;
    padding: 5px 10px;
    border: 1px solid transparent;
    transition: all 0.3s;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    text-shadow: 0 0 5px var(--neon-green);
}

/* Hero Section */
.hero {
    padding: 60px 20px;
    text-align: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-icon {
    font-size: 24px;
}

.hero-title {
    font-size: 24px;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green);
    margin: 0;
}

.hero-description {
    font-size: 10px;
    color: var(--text-white);
    margin: 20px 0 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: var(--neon-green);
    color: var(--dark-bg);
    padding: 15px 30px;
    text-decoration: none;
    font-size: 10px;
    border: 2px solid var(--neon-green);
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
    font-family: 'Press Start 2P', cursive;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--neon-green);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.8);
    transform: scale(1.05);
}

/* Slots Section */
.slots-section {
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 18px;
    color: var(--neon-green);
    text-shadow: 0 0 15px var(--neon-green);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.title-icon {
    font-size: 20px;
}

.slot-machine {
    max-width: 500px;
    margin: 0 auto;
    border: 3px solid var(--neon-green);
    border-radius: 10px;
    padding: 30px;
    background-color: var(--darker-bg);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.4);
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.slot-reel {
    width: 100px;
    height: 100px;
    border: 2px solid var(--neon-green);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-bg);
    overflow: hidden;
    position: relative;
}

.slot-symbol {
    font-size: 50px;
    transition: transform 0.1s;
}

.slot-reel.spinning .slot-symbol {
    animation: spin 0.1s infinite;
}

@keyframes spin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.btn-spin {
    background-color: #333;
    color: var(--text-white);
    border: 2px solid var(--neon-green);
    padding: 15px 40px;
    font-size: 12px;
    font-family: 'Press Start 2P', cursive;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-spin:hover {
    background-color: var(--neon-green);
    color: var(--dark-bg);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
}

.btn-spin:active {
    transform: scale(0.95);
}

/* Features Section */
.features-section {
    padding: 60px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    border: 2px solid var(--neon-green);
    border-radius: 5px;
    padding: 25px;
    background-color: var(--darker-bg);
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.5);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 12px;
    color: var(--neon-green);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-green);
}

.feature-text {
    font-size: 8px;
    color: var(--text-white);
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    padding: 60px 20px;
    background-color: var(--darker-bg);
    border-top: 2px solid var(--neon-green);
    border-bottom: 2px solid var(--neon-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 32px;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 10px;
    color: var(--text-white);
}

/* Reminder Section */
.reminder-section {
    padding: 60px 20px;
}

.reminder-box {
    max-width: 800px;
    margin: 0 auto;
    border: 3px solid #ff0000;
    border-radius: 10px;
    padding: 30px;
    background-color: rgba(255, 0, 0, 0.1);
    text-align: center;
}

.reminder-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.reminder-title {
    font-size: 14px;
    color: var(--text-white);
    margin-bottom: 15px;
}

.reminder-text {
    font-size: 8px;
    color: var(--text-white);
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border: 2px solid var(--neon-green);
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: var(--darker-bg);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 10px;
    color: var(--text-white);
}

.faq-question:hover {
    background-color: rgba(0, 255, 0, 0.1);
}

.faq-toggle {
    color: var(--neon-green);
    transition: transform 0.3s;
    font-size: 12px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    font-size: 8px;
    color: var(--text-white);
    line-height: 1.8;
}

/* Page Hero */
.page-hero {
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid var(--neon-green);
}

.page-title {
    font-size: 28px;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 10px;
    color: var(--text-white);
}

/* Games Section */
.games-hero {
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid var(--neon-green);
}

.games-section {
    padding: 60px 20px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.game-card {
    border: 3px solid var(--neon-green);
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--darker-bg);
    transition: all 0.3s;
}

.game-card:hover {
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.6);
    transform: translateY(-10px);
}

.game-image {
    width: 100%;
    height: 200px;
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--neon-green);
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-placeholder {
    font-size: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-content {
    padding: 25px;
    text-align: center;
}

.game-title {
    font-size: 14px;
    color: var(--neon-green);
    margin-bottom: 15px;
    text-shadow: 0 0 10px var(--neon-green);
}

.game-description {
    font-size: 8px;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.8;
}

.btn-game {
    background-color: var(--neon-green);
    color: var(--dark-bg);
    border: 2px solid var(--neon-green);
    padding: 12px 30px;
    font-size: 10px;
    font-family: 'Press Start 2P', cursive;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    width: 100%;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-game:hover {
    background-color: transparent;
    color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
}

/* About Section */
.about-section {
    padding: 60px 20px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 9px;
    color: var(--text-white);
    line-height: 2;
    margin-bottom: 25px;
}

.about-subtitle {
    font-size: 14px;
    color: var(--neon-green);
    margin: 30px 0 15px;
    text-shadow: 0 0 10px var(--neon-green);
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.about-list li {
    font-size: 9px;
    color: var(--text-white);
    line-height: 2;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.about-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--neon-green);
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    font-size: 9px;
    color: var(--text-white);
    line-height: 2;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    padding: 30px;
    background-color: var(--darker-bg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 9px;
    color: var(--neon-green);
    margin-bottom: 8px;
    text-shadow: 0 0 5px var(--neon-green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--dark-bg);
    border: 2px solid var(--neon-green);
    border-radius: 5px;
    color: var(--text-white);
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    border-top: 2px solid var(--neon-green);
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-links-top,
.footer-links-middle {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

footer a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 8px;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green);
}

.footer-copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 0, 0.3);
}

.footer-copyright p {
    font-size: 8px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 7px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 14px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .features-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    nav {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
    
    header .container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .slot-reels {
        flex-direction: column;
        align-items: center;
    }
}

