* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #0a0a0a;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    overflow-x: hidden;
    line-height: 1.6;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 0, 0.03) 0px,
        rgba(0, 255, 0, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 9999;
}
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}
.site-header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 3px solid #00ff00;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.main-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00;
    animation: brandPulse 3s ease-in-out infinite;
}
@keyframes brandPulse {
    0%, 100% { text-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00; }
    50% { text-shadow: 0 0 30px #00ff00, 0 0 60px #00ff00, 0 0 80px #00ff00; }
}
.nav-toggle {
    display: none;
    background: transparent;
    border: 2px solid #00ff00;
    color: #00ff00;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
}
.nav-toggle:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
.nav-menu a {
    color: #00ff00;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #00ff00;
    transition: width 0.3s;
}
.nav-menu a:hover::after {
    width: 80%;
}
.nav-menu a:hover {
    text-shadow: 0 0 15px #00ff00;
    border-color: #00ff00;
    background: rgba(0, 255, 0, 0.05);
}
.hero-banner {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.2) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}
.hero-banner h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px #00ff00, 0 0 60px #00ff00;
    animation: titleGlitch 5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}
@keyframes titleGlitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
    96% { transform: translate(-2px, -2px); }
    98% { transform: translate(2px, 2px); }
}
.hero-tagline {
    font-size: 1.5rem;
    color: #88ff88;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}
.action-btn {
    display: inline-block;
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border: 3px solid #00ff00;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.6);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}
.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.9);
    background: linear-gradient(45deg, #00cc00, #00ff00);
}
.action-btn:active {
    transform: translateY(-2px);
}
.free-banner {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 200, 0, 0.1));
    border-top: 3px solid #00ff00;
    border-bottom: 3px solid #00ff00;
    padding: 2rem;
    box-shadow: inset 0 0 50px rgba(0, 255, 0, 0.2);
}
.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.banner-icon {
    font-size: 4rem;
    animation: rotate360 4s linear infinite;
}
@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.banner-text h3 {
    font-size: 1.8rem;
    color: #00ff00;
    text-shadow: 0 0 15px #00ff00;
    margin-bottom: 0.5rem;
}
.banner-text p {
    font-size: 1.2rem;
    color: #88ff88;
}
.benefits-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}
.benefits-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 25px #00ff00;
}
.benefits-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.benefit-box {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.benefit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    transition: left 0.5s;
}
.benefit-box:hover::before {
    left: 100%;
}
.benefit-box:hover {
    transform: translateY(-10px);
    border-color: #00ff00;
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.4);
}
.benefit-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.benefit-box h3 {
    font-size: 1.6rem;
    color: #00ff00;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #00ff00;
}
.benefit-box p {
    color: #88ff88;
    font-size: 1.05rem;
    line-height: 1.7;
}
.stats-bar-section {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 200, 0, 0.1));
    border-top: 3px solid #00ff00;
    border-bottom: 3px solid #00ff00;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.stat-item {
    text-align: center;
    padding: 1.5rem;
}
.stat-num {
    font-size: 3.5rem;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 30px #00ff00;
    margin-bottom: 0.5rem;
    animation: statGlow 3s ease-in-out infinite;
}
@keyframes statGlow {
    0%, 100% { text-shadow: 0 0 30px #00ff00; }
    50% { text-shadow: 0 0 50px #00ff00, 0 0 70px #00ff00; }
}
.stat-text {
    font-size: 1.3rem;
    color: #88ff88;
    text-transform: uppercase;
}
.warning-section {
    padding: 4rem 2rem;
    background: #0a0a0a;
}
.warning-box {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(200, 0, 0, 0.1));
    border: 4px solid #ff3333;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.3);
    text-align: center;
}
.warning-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: warningPulse 2s ease-in-out infinite;
}
@keyframes warningPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
.warning-box h3 {
    font-size: 2.2rem;
    color: #ff3333;
    text-shadow: 0 0 20px #ff3333;
    margin-bottom: 1.5rem;
}
.warning-box p {
    font-size: 1.2rem;
    color: #ffaaaa;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.faq-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}
.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 25px #00ff00;
}
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}
.faq-card {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border: 2px solid #00ff00;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-card:hover {
    box-shadow: 0 5px 30px rgba(0, 255, 0, 0.3);
}
.faq-q {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ff00;
    user-select: none;
}
.faq-q:hover {
    background: rgba(0, 255, 0, 0.05);
}
.faq-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}
.faq-card.active .faq-arrow {
    transform: rotate(180deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.5rem;
    color: #88ff88;
    font-size: 1.05rem;
    line-height: 1.8;
}
.faq-card.active .faq-a {
    max-height: 600px;
    padding: 0 1.5rem 1.5rem;
}
.newsletter-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 200, 0, 0.1));
    border-top: 3px solid #00ff00;
    border-bottom: 3px solid #00ff00;
}
.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    border: 3px solid #00ff00;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.3);
}
.newsletter-box h3 {
    font-size: 2rem;
    color: #00ff00;
    text-shadow: 0 0 20px #00ff00;
    margin-bottom: 1rem;
}
.newsletter-box p {
    font-size: 1.2rem;
    color: #88ff88;
    margin-bottom: 2rem;
}
.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 10px;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
}
.email-input:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}
.subscribe-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
    border: 2px solid #00ff00;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}
.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.6);
}
.site-footer {
    background: #0d0d0d;
    border-top: 3px solid #00ff00;
    padding: 3rem 2rem;
}
.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-col h4 {
    font-size: 1.4rem;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    margin-bottom: 1rem;
}
.footer-col p {
    color: #88ff88;
    line-height: 1.7;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 0.7rem;
}
.footer-col ul li a {
    color: #88ff88;
    text-decoration: none;
    transition: all 0.2s;
}
.footer-col ul li a:hover {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    padding-left: 5px;
}
.footer-disclaimer {
    background: rgba(255, 0, 0, 0.1);
    border: 3px solid #ff3333;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}
.footer-disclaimer p {
    color: #ffaaaa;
    font-size: 1.1rem;
    margin: 0;
}
.footer-bottom {
    border-top: 2px solid #006600;
    padding-top: 2rem;
    text-align: center;
}
.footer-bottom p {
    color: #88ff88;
    margin: 0.5rem 0;
}
.footer-notice {
    font-size: 0.9rem;
    color: #669966;
}
.slot-demo {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.slot-demo h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px #00ff00;
}
.slot-demo .slot-machine {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 5px solid #00ff00;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.3);
    margin: 2rem auto;
    max-width: 600px;
    padding: 3rem;
}
.slot-demo .reels {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.slot-demo .reel {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    border: 3px solid #00ff00;
    border-radius: 10px;
    box-shadow: inset 0 0 20px rgba(0, 255, 0, 0.2);
    font-size: 4rem;
    height: 120px;
    width: 120px;
    transition: all 0.3s;
}
.slot-demo .reel:hover {
    transform: scale(1.05);
    box-shadow: inset 0 0 30px rgba(0, 255, 0, 0.4);
}
.slot-demo .spin-button {
    background: #00ff00;
    border: none;
    border-radius: 10px;
    color: #0a0a0a;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.3rem;
    padding: 1rem 3rem;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    font-family: 'Courier New', monospace;
}
.slot-demo .spin-button:hover {
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.8);
    transform: scale(1.1);
}
.slot-demo .spin-button:active {
    transform: scale(0.95);
}
.slot-demo .spin-button:disabled,
.slot-demo .spin-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        border-top: 2px solid #00ff00;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #006600;
    }
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    .hero-tagline {
        font-size: 1.2rem;
    }
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .stats-bar-section {
        grid-template-columns: repeat(2, 1fr);
    }
    .newsletter-form {
        flex-direction: column;
    }
    .email-input {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .slot-demo .reels {
        gap: 0.5rem;
    }
    .slot-demo .reel {
        font-size: 3rem;
        height: 90px;
        width: 90px;
    }
    .slot-demo .slot-machine {
        padding: 2rem;
    }
}
@media (max-width: 480px) {
    .brand {
        font-size: 1.3rem;
    }
    .hero-banner h1 {
        font-size: 2rem;
    }
    .stat-num {
        font-size: 2.5rem;
    }
    .slot-demo .reels {
        gap: 0.3rem;
    }
    .slot-demo .reel {
        font-size: 2rem;
        height: 70px;
        width: 70px;
    }
    .slot-demo .spin-button {
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
    }
}
.hidden {
    display: none !important;
}
.active {
    display: block !important;
}
html {
    scroll-behavior: smooth;
}
::selection {
    background: #00ff00;
    color: #000;
}
.page-hero {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border-bottom: 3px solid #00ff00;
    padding: 4rem 2rem 3rem;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.3);
}
.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px #00ff00;
}
.page-subtitle {
    font-size: 1.3rem;
    color: #88ff88;
    margin-bottom: 2rem;
}
.back-link {
    display: inline-block;
    color: #00ff00;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid #00ff00;
    border-radius: 8px;
    transition: all 0.3s;
}
.back-link:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}
.games-grid-section {
    padding: 4rem 2rem;
    background: #0a0a0a;
}
.games-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.game-tile {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}
.game-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.4);
}
.game-tile.coming-soon {
    opacity: 0.6;
    border-color: #666;
}
.game-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}
.game-tile h3 {
    font-size: 1.8rem;
    color: #00ff00;
    margin-bottom: 1rem;
}
.game-tile p {
    color: #88ff88;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.play-game-btn {
    display: inline-block;
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}
.play-game-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.6);
}
.coming-tag {
    display: inline-block;
    background: #666;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
}
.games-reminder {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(0, 200, 0, 0.1));
}
.reminder-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}
.reminder-box h3 {
    font-size: 2rem;
    color: #00ff00;
    margin-bottom: 1rem;
}
.reminder-box p {
    font-size: 1.2rem;
    color: #88ff88;
    line-height: 1.7;
}
.content-section {
    padding: 4rem 2rem;
    background: #0a0a0a;
}
.content-container {
    max-width: 1000px;
    margin: 0 auto;
}
.content-box {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}
.content-box h2 {
    font-size: 2.2rem;
    color: #00ff00;
    text-shadow: 0 0 15px #00ff00;
    margin-bottom: 1.5rem;
}
.content-box p {
    color: #88ff88;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.stat-list,
.vision-list,
.involvement-list,
.habits-list,
.family-advice-list,
.commitment-list {
    list-style: none;
    padding-left: 0;
}
.stat-list li,
.vision-list li,
.involvement-list li,
.habits-list li,
.family-advice-list li,
.commitment-list li {
    color: #88ff88;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}
.stat-list li::before,
.vision-list li::before,
.involvement-list li::before,
.habits-list li::before,
.family-advice-list li::before,
.commitment-list li::before {
    position: absolute;
    left: 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.value-item {
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid #006600;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}
.value-item:hover {
    border-color: #00ff00;
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.3);
}
.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.value-item h3 {
    font-size: 1.4rem;
    color: #00ff00;
    margin-bottom: 0.8rem;
}
.value-item p {
    color: #88ff88;
    line-height: 1.6;
}
.highlight-box {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.15), rgba(0, 200, 0, 0.1));
    border: 3px solid #00ff00;
}
.promise-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ff00;
    text-align: center;
    margin-top: 1.5rem;
}
.contact-section {
    padding: 4rem 2rem;
    background: #0a0a0a;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-form-wrapper,
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-form-wrapper h2 {
    font-size: 2.2rem;
    color: #00ff00;
    text-shadow: 0 0 15px #00ff00;
    margin-bottom: 1rem;
}
.form-desc {
    color: #88ff88;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.contact-form {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 2.5rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    color: #00ff00;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    background: #000;
    border: 2px solid #00ff00;
    border-radius: 8px;
    padding: 0.8rem;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
}
.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.6);
}
.info-card {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}
.info-card:hover {
    box-shadow: 0 5px 25px rgba(0, 255, 0, 0.3);
}
.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.info-card h3 {
    font-size: 1.5rem;
    color: #00ff00;
    margin-bottom: 1rem;
}
.info-card p {
    color: #88ff88;
    margin-bottom: 0.5rem;
}
.info-card a {
    color: #00ff00;
    text-decoration: none;
    transition: all 0.2s;
}
.info-card a:hover {
    text-shadow: 0 0 10px #00ff00;
}
.contact-disclaimer {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(200, 0, 0, 0.05));
}
.disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff3333;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}
.disclaimer-container h3 {
    font-size: 1.8rem;
    color: #ff3333;
    margin-bottom: 1rem;
}
.disclaimer-container p {
    color: #ffaaaa;
    font-size: 1.1rem;
    line-height: 1.7;
}
.disclaimer-container a {
    color: #ff6666;
    text-decoration: underline;
}
.legal-section {
    padding: 4rem 2rem;
    background: #0a0a0a;
}
.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}
.legal-box {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 2px solid #00ff00;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}
.legal-box h2 {
    font-size: 2rem;
    color: #00ff00;
    text-shadow: 0 0 15px #00ff00;
    margin-bottom: 1rem;
}
.legal-box h3 {
    font-size: 1.5rem;
    color: #88ff88;
    margin: 1.5rem 0 1rem;
}
.legal-box p {
    color: #88ff88;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.legal-box ul {
    list-style: none;
    padding-left: 0;
}
.legal-box li {
    color: #88ff88;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}
.legal-box li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00ff00;
}
.legal-box a {
    color: #00ff00;
    text-decoration: underline;
}
.legal-box a:hover {
    text-shadow: 0 0 10px #00ff00;
}
.critical-notice {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(200, 0, 0, 0.1));
    border-color: #ff3333;
}
.critical-notice h3 {
    color: #ff3333;
    text-shadow: 0 0 15px #ff3333;
}
.critical-notice p {
    color: #ffaaaa;
}
.last-updated {
    border-color: #666;
    text-align: center;
}
.last-updated p {
    color: #999;
    font-style: italic;
}
.responsible-section {
    padding: 4rem 2rem;
    background: #0a0a0a;
}
.responsible-container {
    max-width: 1000px;
    margin: 0 auto;
}
.urgent-help-box {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(200, 0, 0, 0.15));
    border: 4px solid #ff3333;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.3);
}
.urgent-help-box h2 {
    font-size: 2.5rem;
    color: #ff3333;
    text-shadow: 0 0 20px #ff3333;
    margin-bottom: 1.5rem;
}
.urgent-help-box p {
    color: #ffaaaa;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.help-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.help-contact {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #ff3333;
    border-radius: 10px;
    padding: 1.5rem;
}
.help-contact h3 {
    font-size: 1.5rem;
    color: #ff6666;
    margin-bottom: 1rem;
}
.help-contact p {
    color: #ffaaaa;
    margin-bottom: 0.5rem;
}
.help-contact a {
    color: #ff6666;
    font-weight: bold;
    text-decoration: none;
}
.help-contact a:hover {
    text-shadow: 0 0 10px #ff3333;
}
.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.warning-item {
    background: rgba(255, 0, 0, 0.05);
    border: 2px solid #ff3333;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}
.warning-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.warning-item h3 {
    font-size: 1.4rem;
    color: #ff6666;
    margin-bottom: 1rem;
}
.warning-item p {
    color: #ffaaaa;
    line-height: 1.6;
}
.warning-signs-list {
    list-style: none;
    padding-left: 0;
}
.warning-signs-list li {
    color: #ffaaaa;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}
.emphasis-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6666;
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 10px;
}
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.fact-card {
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 1.5rem;
}
.fact-card h3 {
    font-size: 1.4rem;
    color: #00ff00;
    margin-bottom: 1rem;
}
.fact-card p {
    color: #88ff88;
    line-height: 1.6;
}
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.resource-card {
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}
.resource-card:hover {
    border-color: #00ff00;
    box-shadow: 0 5px 25px rgba(0, 255, 0, 0.3);
}
.resource-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.resource-card h3 {
    font-size: 1.4rem;
    color: #00ff00;
    margin-bottom: 1rem;
}
.resource-card p {
    color: #88ff88;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.resource-card a {
    color: #00ff00;
    font-weight: bold;
    text-decoration: none;
}
.resource-card a:hover {
    text-shadow: 0 0 10px #00ff00;
}
.final-message {
    font-size: 1.3rem;
    font-weight: bold;
    color: #00ff00;
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 10px;
    border: 2px solid #00ff00;
}
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .help-contacts {
        grid-template-columns: 1fr;
    }
    .warning-grid,
    .facts-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
}
.slot-game-section {
    padding: 4rem 2rem;
    background: #0a0a0a;
}
.slot-game-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 25px #00ff00;
    animation: neonFlicker 2s ease-in-out infinite;
}
@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}
.section-desc {
    text-align: center;
    font-size: 1.3rem;
    color: #88ff88;
    margin-bottom: 3rem;
}
.game-container {
    max-width: 1200px;
    margin: 0 auto;
}
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.stat-box {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}
.stat-box.gold {
    border-color: gold;
}
.stat-label {
    color: #88ff88;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 15px #00ff00;
}
.stat-value.gold {
    color: gold;
    text-shadow: 0 0 15px gold;
}
.message-box {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.message-box.winning {
    animation: pulse 0.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.slot-machine {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 5px solid #00ff00;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.4);
    padding: 2.5rem;
    margin-bottom: 2rem;
}
.reels-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.reel {
    background: #000;
    border: 3px solid #00ff00;
    border-radius: 10px;
    padding: 0.8rem;
}
.symbol {
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid rgba(0, 255, 0, 0.2);
    border-radius: 8px;
    font-size: 3rem;
    padding: 0.8rem;
    text-align: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}
.symbol:last-child {
    margin-bottom: 0;
}
.symbol:hover {
    transform: scale(1.1);
    border-color: #00ff00;
}
.symbol.winning {
    animation: winFlash 0.5s infinite;
    background: rgba(255, 215, 0, 0.2);
    border-color: gold;
}
.symbol.spinning {
    animation: spin 0.1s linear infinite;
}
@keyframes winFlash {
    0%, 100% {
        background: rgba(255, 215, 0, 0.1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        background: rgba(255, 215, 0, 0.3);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }
}
.paylines-indicator {
    text-align: center;
    color: #00ff00;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 1rem;
}
.controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
button {
    background: #00ff00;
    border: none;
    border-radius: 10px;
    color: #000;
    cursor: pointer;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 1.2rem;
    transition: all 0.2s;
}
button:hover:not(:disabled) {
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    transform: scale(1.05);
}
button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
.spin-button {
    background: linear-gradient(90deg, #00ff00, #00cc00);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    font-size: 1.5rem;
    grid-column: span 1;
    padding: 1.5rem;
}
.spin-button:disabled {
    background: #666;
    box-shadow: none;
}
.auto-button {
    background: linear-gradient(90deg, #88ff88, #00ff00);
    font-size: 1rem;
}
.stop-auto-button {
    animation: pulse 1s infinite;
    background: #ff3333;
    color: #fff;
    grid-column: span 2;
}
.secondary-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.secondary-button {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 10px;
    color: #00ff00;
    cursor: pointer;
    font-size: 1rem;
    padding: 1rem 2rem;
}
.paytable {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 3px solid #00ff00;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}
.paytable h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px #00ff00;
}
.paytable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.paytable-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 1.5rem;
}
.paytable-icon {
    font-size: 2.5rem;
}
.paytable-info {
    flex: 1;
}
.paytable-name {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #00ff00;
}
.paytable-value {
    color: #88ff88;
    font-size: 0.9rem;
}
.statistics {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 3px solid #00ff00;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
}
.statistics h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px #00ff00;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.stats-grid > div {
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 1.5rem;
}
.stats-grid > div > div:first-child {
    color: #88ff88;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.stats-grid > div > div:last-child {
    font-size: 2rem;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 15px #00ff00;
}
@media (max-width: 768px) {
    .slot-game-section h2 {
        font-size: 2rem;
    }
    .reels-container {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
    }
    .symbol {
        font-size: 2rem;
        padding: 0.5rem;
    }
    .controls {
        grid-template-columns: 1fr 1fr;
    }
    .spin-button {
        grid-column: span 2;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .paytable-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .reels-container {
        gap: 0.3rem;
    }
    .reel {
        padding: 0.5rem;
    }
    .symbol {
        font-size: 1.5rem;
        padding: 0.3rem;
    }
    .slot-machine {
        padding: 1.5rem;
    }
    .stats-bar {
        grid-template-columns: 1fr;
    }
}