:root {
    --neon-green: #00e676;
    --neon-green-dark: #00b85c;
    --neon-green-light: #66ffa6;
    --dark-bg: #0a0a0a;
    --dark-bg-charcoal: #151515;
    --card-bg: #1a1a1a;
    --card-bg-gradient: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    --warning-red: #ff4444;
    --warning-red-dark: #cc0000;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --text-gray-light: #e0e0e0;
    --grid-color: rgba(0, 230, 118, 0.03);
    --grid-color-strong: rgba(0, 230, 118, 0.06);
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 0.5px, transparent 0.5px),
        linear-gradient(90deg, var(--grid-color) 0.5px, transparent 0.5px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 230, 118, 0.15);
    transition: all var(--transition-base);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

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

.logo-icon {
    width: 22px;
    height: 22px;
    color: var(--neon-green);
    opacity: 0.9;
    transition: opacity var(--transition-base);
}

.logo:hover .logo-icon {
    opacity: 1;
}

.logo-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--neon-green);
    letter-spacing: -0.02em;
    transition: opacity var(--transition-base);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    transition: all var(--transition-base);
    border-radius: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-gray-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--neon-green);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--text-white);
}

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

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 100px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 230, 118, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-icons {
    display: inline-block;
    margin: 0 15px;
}

.gamepad-icon {
    width: 28px;
    height: 28px;
    color: var(--neon-green);
    opacity: 0.7;
    vertical-align: middle;
    transition: opacity var(--transition-base);
}

.hero-icons:hover .gamepad-icon {
    opacity: 1;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.03em;
    margin: 32px 0;
    display: inline-block;
    line-height: 1.1;
}

.hero-title .accent {
    color: var(--neon-green);
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-green-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    margin: 40px 0 50px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--neon-green);
    color: var(--dark-bg);
    border: none;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    border-radius: 8px;
    transition: all var(--transition-base);
    text-transform: uppercase;
    margin-top: 20px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.25);
}

.cta-button:hover {
    background: var(--neon-green-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 230, 118, 0.35);
}

.cta-button:active {
    transform: translateY(0);
}

.slots-section {
    padding: 100px 20px;
    text-align: center;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
    margin-bottom: 60px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-title .accent {
    color: var(--neon-green);
}

.title-icon {
    font-size: 24px;
    opacity: 0.6;
}

.slot-machine {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.slot-reel {
    width: 120px;
    height: 120px;
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg-charcoal);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    transition: all var(--transition-base);
}

.slot-reel:hover {
    border-color: rgba(0, 230, 118, 0.4);
}

.slot-icon {
    font-size: 56px;
    transition: transform var(--transition-fast);
    color: var(--neon-green);
    opacity: 0.9;
}

.slot-reel.spinning .slot-icon {
    animation: spin 0.1s linear infinite;
}

@keyframes spin {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.spin-button {
    background: var(--neon-green);
    color: var(--dark-bg);
    border: none;
    padding: 14px 48px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    border-radius: 8px;
    transition: all var(--transition-base);
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3);
}

.spin-button:hover {
    background: var(--neon-green-light);
    box-shadow: 0 6px 30px rgba(0, 230, 118, 0.4);
    transform: translateY(-2px);
}

.spin-button:active {
    transform: translateY(0);
}

.features-section {
    padding: 100px 20px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 12px;
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.3);
    box-shadow: 0 8px 24px rgba(0, 230, 118, 0.15);
    background: linear-gradient(135deg, #1d1d1d 0%, #1a1a1a 100%);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.feature-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    border-radius: 10px;
    opacity: 0.9;
    transition: opacity var(--transition-base);
}

.feature-card:hover .feature-image {
    opacity: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.feature-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 400;
}

.stats-section {
    padding: 80px 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 400;
    letter-spacing: 0;
}

.warning-section {
    padding: 80px 20px;
}

.warning-banner {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15) 0%, rgba(255, 68, 68, 0.08) 100%);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.1);
    text-align: center;
    backdrop-filter: blur(10px);
}

.warning-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 24px;
    display: block;
    border-radius: 10px;
    opacity: 0.95;
}

.warning-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.warning-icon {
    font-size: 20px;
    opacity: 0.8;
}

.warning-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

.warning-text {
    font-size: 16px;
    color: var(--text-white);
    line-height: 1.8;
    text-align: center;
}

.faq-section {
    padding: 100px 20px;
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 8px;
    background: var(--card-bg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(0, 230, 118, 0.25);
    box-shadow: 0 4px 16px rgba(0, 230, 118, 0.1);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: color var(--transition-base);
    letter-spacing: -0.01em;
}

.faq-question:hover {
    color: var(--neon-green);
}

.faq-arrow {
    width: 18px;
    height: 18px;
    color: var(--neon-green);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: 15px;
    opacity: 0.7;
}

.faq-item.active {
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.15);
}

.faq-item.active .faq-question {
    color: var(--neon-green);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease-out;
    padding: 0 24px;
    opacity: 0;
    will-change: max-height, padding, opacity;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 24px 24px;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
    text-align: left;
}

.footer {
    padding: 60px 20px 40px;
    text-align: center;
    border-top: 1px solid rgba(0, 230, 118, 0.15);
    margin-top: 80px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--transition-base);
    font-weight: 400;
}

.footer-link:hover {
    color: var(--neon-green);
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-icon {
    font-size: 14px;
    filter: drop-shadow(0 0 3px #ffcc00);
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 2px solid var(--neon-green);
        box-shadow: 0 5px 20px rgba(0, 255, 65, 0.3);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .slot-reels {
        gap: 10px;
    }

    .slot-reel {
        width: 90px;
        height: 90px;
    }

    .slot-icon {
        font-size: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 22px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .slot-machine {
        padding: 20px;
    }

    .slot-reels {
        flex-direction: column;
        align-items: center;
    }

    .slot-reel {
        width: 100px;
        height: 100px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

.games-collection-section {
    padding: 60px 20px;
    text-align: center;
}

.games-collection-title {
    font-size: 42px;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green);
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.games-collection-subtitle {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 30px;
    font-weight: normal;
}

.back-button {
    display: inline-block;
    background: transparent;
    color: var(--neon-green);
    border: 1px solid rgba(0, 230, 118, 0.3);
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-base);
    text-transform: uppercase;
}

.back-button:hover {
    background: rgba(0, 230, 118, 0.1);
    border-color: rgba(0, 230, 118, 0.5);
    color: var(--neon-green-light);
    transform: translateY(-1px);
}

.advanced-slot-section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.slot-game-header {
    text-align: center;
    margin-bottom: 30px;
}

.slot-game-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green);
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.slot-game-subtitle {
    font-size: 18px;
    color: var(--text-white);
    font-weight: normal;
    margin-top: 10px;
}

.game-info-panels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.info-panel {
    background: var(--card-bg);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-base);
}

.info-panel:hover {
    border-color: rgba(0, 230, 118, 0.25);
    box-shadow: 0 4px 16px rgba(0, 230, 118, 0.1);
}

.info-label {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.info-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--neon-green);
    letter-spacing: -0.02em;
}

.message-bar {
    background: var(--card-bg);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.message-bar span {
    font-size: 17px;
    color: var(--neon-green);
    font-weight: 600;
    letter-spacing: -0.01em;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.advanced-slot-machine {
    background: var(--card-bg);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.slot-reels-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.reel-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reel-cell {
    aspect-ratio: 1;
    background: var(--dark-bg-charcoal);
    border: 1px solid rgba(0, 230, 118, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
    color: var(--neon-green);
    font-weight: 600;
}

.reel-cell:hover {
    border-color: rgba(0, 230, 118, 0.35);
}

.reel-cell[data-icon="7"] {
    color: #4a9eff;
    text-shadow: 0 0 10px #4a9eff;
}

.reel-cell[data-icon="777"] {
    color: #ff4444;
    text-shadow: 0 0 10px #ff4444;
}

.reel-cell.winning-cell {
    background: rgba(0, 255, 65, 0.3);
    border-color: var(--neon-green);
    box-shadow: 
        0 0 30px rgba(0, 255, 65, 0.8),
        inset 0 0 30px rgba(0, 255, 65, 0.3);
    animation: win-pulse 0.5s ease-in-out;
}

@keyframes win-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.reel-cell.spinning {
    animation: spin-cell 0.1s linear infinite;
}

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

.paylines-info {
    text-align: center;
    font-size: 14px;
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green);
    letter-spacing: 1px;
}

.control-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.control-btn {
    background: var(--neon-green);
    color: var(--dark-bg);
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    border-radius: 8px;
    transition: all var(--transition-base);
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(0, 230, 118, 0.25);
}

.control-btn:hover:not(:disabled) {
    background: var(--neon-green-light);
    box-shadow: 0 6px 24px rgba(0, 230, 118, 0.35);
    transform: translateY(-2px);
}

.control-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spin-main-btn {
    font-size: 18px;
    padding: 15px 40px;
    box-shadow: 
        0 0 20px rgba(0, 255, 65, 0.6),
        inset 0 0 20px rgba(0, 255, 65, 0.3);
}

.utility-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.utility-btn {
    background: transparent;
    color: var(--neon-green);
    border: 1px solid rgba(0, 230, 118, 0.3);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    border-radius: 8px;
    transition: all var(--transition-base);
    text-transform: uppercase;
}

.utility-btn:hover {
    background: rgba(0, 230, 118, 0.1);
    border-color: rgba(0, 230, 118, 0.5);
    transform: translateY(-1px);
}

.session-stats {
    background: var(--card-bg);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.session-stats-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item-small {
    text-align: center;
}

.stat-label-small {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.stat-value-small {
    font-size: 20px;
    font-weight: 700;
    color: var(--neon-green);
    letter-spacing: -0.02em;
}

.game-disclaimer {
    padding: 30px 20px;
    text-align: center;
}

.disclaimer-text {
    font-size: 14px;
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.copyright-text {
    font-size: 12px;
    color: var(--text-gray);
}

.email-subscription {
    padding: 40px 20px;
    text-align: center;
}

.subscription-box {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.email-input {
    flex: 1;
    background: var(--card-bg);
    border: 2px solid var(--neon-green);
    border-radius: 5px;
    padding: 12px 15px;
    color: var(--text-white);
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.email-input:focus {
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
    border-color: var(--neon-green-dark);
}

.email-input::placeholder {
    color: var(--text-gray);
}

.notify-btn {
    background: var(--neon-green);
    color: var(--dark-bg);
    border: 2px solid var(--neon-green);
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: 
        0 0 15px rgba(0, 255, 65, 0.5),
        inset 0 0 15px rgba(0, 255, 65, 0.2);
    text-transform: uppercase;
}

.notify-btn:hover {
    background: var(--neon-green-dark);
    box-shadow: 
        0 0 25px rgba(0, 255, 65, 0.8),
        inset 0 0 25px rgba(0, 255, 65, 0.3);
    transform: translateY(-2px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--card-bg-gradient);
    margin: 10% auto;
    padding: 30px;
    border: 3px solid var(--neon-green);
    border-radius: 10px;
    max-width: 500px;
    box-shadow: 
        0 0 40px rgba(0, 255, 65, 0.5),
        inset 0 0 30px rgba(0, 255, 65, 0.1);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--neon-green);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-shadow: 0 0 10px var(--neon-green);
}

.modal-close:hover {
    color: var(--neon-green-dark);
    transform: scale(1.2);
}

.modal-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.paytable-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.paytable-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--dark-bg);
    border: 2px solid var(--neon-green);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.paytable-icon {
    font-size: 24px;
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green);
}

.paytable-payout {
    font-size: 20px;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.slot-icon-small {
    width: 20px;
    height: 20px;
    color: var(--neon-green);
    filter: drop-shadow(0 0 5px var(--neon-green));
}

@media (max-width: 768px) {
    .games-collection-title {
        font-size: 28px;
    }
    
    .slot-game-title {
        font-size: 24px;
    }
    
    .game-info-panels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slot-reels-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
    }
    
    .reel-cell {
        font-size: 24px;
    }
    
    .control-buttons {
        gap: 10px;
    }
    
    .control-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-box {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .game-info-panels {
        grid-template-columns: 1fr;
    }
    
    .slot-reels-grid {
        gap: 3px;
    }
    
    .reel-cell {
        font-size: 20px;
    }
}

.about-hero-section {
    padding: 80px 20px;
    text-align: center;
}

.about-hero-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green);
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.about-hero-subtitle {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 30px;
    font-weight: normal;
}

.mission-section,
.story-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title-left {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-title-left .accent {
    color: var(--neon-green);
}

.content-box {
    background: var(--card-bg);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.content-text {
    font-size: 16px;
    color: var(--text-gray-light);
    line-height: 1.8;
    text-align: left;
    margin-bottom: 20px;
    font-weight: 400;
}

.content-text:last-child {
    margin-bottom: 0;
}

.values-section {
    padding: 80px 20px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 12px;
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 230, 118, 0.3);
    box-shadow: 0 8px 24px rgba(0, 230, 118, 0.15);
    background: linear-gradient(135deg, #1d1d1d 0%, #1a1a1a 100%);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.value-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 15px;
    display: block;
    border-radius: 8px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.3));
}

.value-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.value-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 400;
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 32px;
    }
    
    .section-title-left {
        font-size: 28px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .content-box {
        padding: 25px;
    }
    
    .content-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .section-title-left {
        font-size: 22px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .content-box {
        padding: 20px;
    }
}

.contact-hero-section {
    padding: 80px 20px;
    text-align: center;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green);
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.contact-hero-subtitle {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 30px;
    font-weight: normal;
}

.contact-section {
    padding: 60px 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    width: 100%;
}

.contact-form-card {
    background: var(--card-bg-gradient);
    border: 3px solid var(--neon-green);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 
        0 0 30px rgba(0, 255, 65, 0.4),
        inset 0 0 30px rgba(0, 255, 65, 0.1);
}

.contact-form-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    margin-bottom: 30px;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-white);
    letter-spacing: 1px;
}

.form-input,
.form-textarea {
    background: var(--dark-bg);
    border: 2px solid var(--neon-green);
    border-radius: 5px;
    padding: 12px 15px;
    color: var(--text-white);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.form-input:focus,
.form-textarea:focus {
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
    border-color: var(--neon-green-dark);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

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

.submit-button {
    background: var(--neon-green);
    color: var(--dark-bg);
    border: 2px solid var(--neon-green);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: 
        0 0 20px rgba(0, 255, 65, 0.5),
        inset 0 0 20px rgba(0, 255, 65, 0.2);
    text-transform: uppercase;
    margin-top: 10px;
}

.submit-button:hover {
    background: var(--neon-green-dark);
    box-shadow: 
        0 0 30px rgba(0, 255, 65, 0.8),
        inset 0 0 30px rgba(0, 255, 65, 0.3);
    transform: translateY(-2px);
}

.contact-info-container {
    width: 100%;
}

.contact-info-card {
    background: var(--card-bg-gradient);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 
        0 0 20px rgba(0, 255, 65, 0.3),
        inset 0 0 20px rgba(0, 255, 65, 0.05);
    height: fit-content;
}

.info-section-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    margin-bottom: 15px;
    margin-top: 25px;
    letter-spacing: 1px;
}

.info-section-title:first-child {
    margin-top: 0;
}

.info-links {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.info-links li {
    margin-bottom: 10px;
}

.info-link {
    color: var(--neon-green);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
    display: inline-block;
}

.info-link:hover {
    text-shadow: 0 0 10px var(--neon-green);
    color: var(--neon-green-dark);
    transform: translateX(5px);
}

.info-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 65, 0.3);
}

.info-copyright {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.info-disclaimer {
    font-size: 12px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 32px;
    }
    
    .contact-form-card {
        padding: 25px;
    }
    
    .contact-info-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .contact-form-title {
        font-size: 20px;
    }
    
    .contact-form-card {
        padding: 20px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
}

.terms-hero-section {
    padding: 80px 20px;
    text-align: center;
}

.terms-hero-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green);
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.terms-hero-subtitle {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 30px;
    font-weight: normal;
}

.terms-content-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.terms-content {
    background: var(--card-bg-gradient);
    border: 3px solid var(--neon-green);
    border-radius: 10px;
    padding: 50px;
    box-shadow: 
        0 0 30px rgba(0, 255, 65, 0.4),
        inset 0 0 30px rgba(0, 255, 65, 0.1);
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section:last-of-type {
    margin-bottom: 0;
}

.terms-section-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.terms-text {
    font-size: 16px;
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-list {
    list-style: none;
    padding-left: 20px;
    margin: 15px 0;
}

.terms-list li {
    font-size: 16px;
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.terms-list li::before {
    content: '▸';
    color: var(--neon-green);
    font-weight: bold;
    position: absolute;
    left: 0;
    text-shadow: 0 0 5px var(--neon-green);
}

.terms-notice-box {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15) 0%, rgba(255, 68, 68, 0.08) 100%);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 32px;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    backdrop-filter: blur(10px);
}

.terms-notice-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    opacity: 0.95;
}

.terms-notice-content {
    text-align: center;
}

.terms-notice-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.terms-notice-text {
    font-size: 16px;
    color: var(--text-white);
    line-height: 1.8;
}

.terms-link {
    color: var(--neon-green);
    text-decoration: none;
    transition: color var(--transition-base);
}

.terms-link:hover {
    color: var(--neon-green-light);
    text-decoration: underline;
}

.terms-footer-info {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 255, 65, 0.3);
    text-align: center;
}

.terms-date {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.terms-date strong {
    color: var(--neon-green);
}

@media (max-width: 768px) {
    .terms-hero-title {
        font-size: 32px;
    }
    
    .terms-content {
        padding: 30px;
    }
    
    .terms-section-title {
        font-size: 20px;
    }
    
    .terms-text {
        font-size: 14px;
    }
    
    .terms-notice-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .terms-hero-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .terms-content {
        padding: 20px;
    }
    
    .terms-section-title {
        font-size: 18px;
    }
    
    .terms-notice-box {
        flex-direction: column;
    }
}

.privacy-hero-section {
    padding: 80px 20px;
    text-align: center;
}

.privacy-hero-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green);
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.privacy-hero-subtitle {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 30px;
    font-weight: normal;
}

.privacy-content-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-content {
    background: var(--card-bg-gradient);
    border: 3px solid var(--neon-green);
    border-radius: 10px;
    padding: 50px;
    box-shadow: 
        0 0 30px rgba(0, 255, 65, 0.4),
        inset 0 0 30px rgba(0, 255, 65, 0.1);
}

.privacy-intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0, 255, 65, 0.3);
}

.privacy-intro-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-align: center;
}

.privacy-intro-text {
    font-size: 18px;
    color: var(--text-white);
    line-height: 1.8;
    text-align: center;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section:last-of-type {
    margin-bottom: 0;
}

.privacy-section-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.privacy-text {
    font-size: 16px;
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-list {
    list-style: none;
    padding-left: 20px;
    margin: 15px 0;
}

.privacy-list li {
    font-size: 16px;
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.privacy-list li::before {
    content: '▸';
    color: var(--neon-green);
    font-weight: bold;
    position: absolute;
    left: 0;
    text-shadow: 0 0 5px var(--neon-green);
}

.privacy-list li strong {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.privacy-link {
    color: var(--neon-green);
    text-decoration: none;
    transition: all 0.3s;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.privacy-link:hover {
    text-shadow: 0 0 10px var(--neon-green);
    color: var(--neon-green-dark);
    text-decoration: underline;
}

.privacy-footer-info {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 255, 65, 0.3);
    text-align: center;
}

.privacy-date {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.privacy-date strong {
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green);
}

@media (max-width: 768px) {
    .privacy-hero-title {
        font-size: 32px;
    }
    
    .privacy-content {
        padding: 30px;
    }
    
    .privacy-intro-title {
        font-size: 24px;
    }
    
    .privacy-section-title {
        font-size: 20px;
    }
    
    .privacy-text {
        font-size: 14px;
    }
    
    .privacy-intro-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .privacy-hero-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .privacy-content {
        padding: 20px;
    }
    
    .privacy-intro-title {
        font-size: 20px;
    }
    
    .privacy-section-title {
        font-size: 18px;
    }
}

.responsible-hero-section {
    padding: 80px 20px;
    text-align: center;
}

.responsible-hero-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green);
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.responsible-hero-subtitle {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 30px;
    font-weight: normal;
}

.responsible-content-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.responsible-content {
    background: var(--card-bg-gradient);
    border: 3px solid var(--neon-green);
    border-radius: 10px;
    padding: 50px;
    box-shadow: 
        0 0 30px rgba(0, 255, 65, 0.4),
        inset 0 0 30px rgba(0, 255, 65, 0.1);
}

.responsible-notice-box {
    background: var(--warning-red);
    border: 3px solid var(--neon-green);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 
        0 0 30px rgba(255, 51, 51, 0.5),
        0 0 20px rgba(0, 255, 65, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.responsible-notice-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    filter: drop-shadow(0 0 15px rgba(0, 255, 65, 0.4));
}

.responsible-notice-content {
    text-align: center;
}

.responsible-notice-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.responsible-notice-text {
    font-size: 16px;
    color: var(--text-white);
    line-height: 1.8;
}

.responsible-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
}

.responsible-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.responsible-section-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    margin-bottom: 20px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 5px var(--neon-green));
}

.responsible-text {
    font-size: 16px;
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: 15px;
}

.responsible-text strong {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.responsible-list {
    list-style: none;
    padding-left: 20px;
    margin: 15px 0;
}

.responsible-list li {
    font-size: 16px;
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.responsible-list li::before {
    content: '▸';
    color: var(--neon-green);
    font-weight: bold;
    position: absolute;
    left: 0;
    text-shadow: 0 0 5px var(--neon-green);
}

.responsible-list li strong {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.resource-card {
    background: var(--dark-bg);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 
        0 0 15px rgba(0, 255, 65, 0.2),
        inset 0 0 15px rgba(0, 255, 65, 0.05);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 25px rgba(0, 255, 65, 0.4),
        inset 0 0 25px rgba(0, 255, 65, 0.1);
}

.resource-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto 15px;
    display: block;
    border-radius: 8px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.3));
}

.resource-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.resource-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.resource-contact {
    font-size: 16px;
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green);
    font-weight: bold;
}

.resource-link {
    color: var(--neon-green);
    text-decoration: none;
    transition: all 0.3s;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.resource-link:hover {
    text-shadow: 0 0 10px var(--neon-green);
    color: var(--neon-green-dark);
    text-decoration: underline;
}

@media (max-width: 968px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .responsible-hero-title {
        font-size: 32px;
    }
    
    .responsible-content {
        padding: 30px;
    }
    
    .responsible-section-title {
        font-size: 20px;
    }
    
    .responsible-text {
        font-size: 14px;
    }
    
    .responsible-notice-box {
        padding: 20px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .responsible-hero-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .responsible-content {
        padding: 20px;
    }
    
    .responsible-section-title {
        font-size: 18px;
    }
    
    .responsible-notice-box {
        flex-direction: column;
    }
    
    .section-icon {
        font-size: 24px;
    }
}

