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

body {
    font-family: 'Arial Black', 'Arial Bold', sans-serif;
    background: #000;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.vegas-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1a0033 0%, #000 70%);
    z-index: -1;
}

.vegas-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 100, 0.03) 2px,
            rgba(255, 0, 100, 0.03) 4px
        );
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

.social-disclaimer-banner {
    background: linear-gradient(90deg, #ff8c00 0%, #ff0080 50%, #ff8c00 100%);
    padding: 1rem 2rem;
    text-align: center;
    border-bottom: 4px solid #ffd700;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.6);
    animation: bannerPulse 3s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 140, 0, 0.6); }
    50% { box-shadow: 0 4px 30px rgba(255, 0, 128, 0.8); }
}

.disclaimer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.disclaimer-icon {
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.disclaimer-text {
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    text-shadow:
        0 0 10px rgba(0, 0, 0, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
}

.jackpot-banner {
    background: linear-gradient(180deg, #ff0080 0%, #8000ff 100%);
    padding: 1.5rem 2rem;
    border-bottom: 8px solid #ffd700;
    box-shadow: 0 8px 30px rgba(255, 0, 128, 0.6);
    position: relative;
    overflow: hidden;
}

.banner-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    opacity: 0.3;
}

.light {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

.light:nth-child(2) { animation-delay: 0.4s; }
.light:nth-child(3) { animation-delay: 0.8s; }
.light:nth-child(4) { animation-delay: 1.2s; }
.light:nth-child(5) { animation-delay: 1.6s; }

@keyframes pulse {
    0%, 100% { opacity: 0.2; transform: scale(0.9); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.progressive-jackpot {
    text-align: center;
    position: relative;
    z-index: 2;
}

.jackpot-label {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.jackpot-amount {
    font-size: 4rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow:
        0 0 10px #ffd700,
        0 0 20px #ffd700,
        0 0 30px #ffd700,
        0 0 40px #ff00ff,
        0 0 70px #ff00ff;
    animation: jackpotGlow 2s ease-in-out infinite;
    letter-spacing: 8px;
}

@keyframes jackpotGlow {
    0%, 100% {
        text-shadow:
            0 0 10px #ffd700,
            0 0 20px #ffd700,
            0 0 30px #ffd700,
            0 0 40px #ff00ff,
            0 0 70px #ff00ff;
    }
    50% {
        text-shadow:
            0 0 20px #ffd700,
            0 0 30px #ffd700,
            0 0 40px #ffd700,
            0 0 50px #ff00ff,
            0 0 80px #ff00ff,
            0 0 100px #ff00ff;
    }
}

.game-container {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.slot-machine {
    background: linear-gradient(180deg, #2d1b4e 0%, #1a0033 100%);
    border-radius: 30px;
    border: 8px solid #ffd700;
    box-shadow:
        0 0 40px rgba(255, 0, 128, 0.5),
        inset 0 0 40px rgba(128, 0, 255, 0.3);
    padding: 2rem;
}

.machine-top {
    text-align: center;
    margin-bottom: 2rem;
}

.game-title-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.neon-title {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-badge {
    background: linear-gradient(90deg, #00ff00 0%, #00cc00 100%);
    color: #000;
    font-size: 1rem;
    font-weight: 900;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    border: 3px solid #ffd700;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.5);
    animation: socialBadgeGlow 2s ease-in-out infinite;
}

@keyframes socialBadgeGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 255, 0, 0.5);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 255, 0, 0.8);
    }
}

.neon-letter {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff00ff;
    text-shadow:
        0 0 10px #ff00ff,
        0 0 20px #ff00ff,
        0 0 30px #ff00ff,
        0 0 40px #ff00ff;
    animation: neonFlicker 3s ease-in-out infinite;
}

.neon-letter:nth-child(odd) { animation-delay: 0.5s; }

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

.machine-body {
    background: linear-gradient(180deg, #0a0015 0%, #1a0033 100%);
    border-radius: 20px;
    border: 5px solid #8000ff;
    padding: 2rem;
}

.display-panel {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    gap: 2rem;
}

.win-display, .multiplier-display {
    flex: 1;
    background: linear-gradient(180deg, #000 0%, #1a0033 100%);
    border: 4px solid #ff00ff;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.win-label, .multiplier-label {
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.win-value {
    font-size: 2.5rem;
    color: #00ff00;
    font-weight: 900;
    text-shadow: 0 0 15px #00ff00;
}

.multiplier-value {
    font-size: 2.5rem;
    color: #ff00ff;
    font-weight: 900;
    text-shadow: 0 0 15px #ff00ff;
}

.reels-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.reel-box {
    background: linear-gradient(180deg, #4a0080 0%, #2d004d 100%);
    border: 6px solid #ffd700;
    border-radius: 20px;
    padding: 1rem;
    box-shadow:
        0 8px 30px rgba(255, 0, 128, 0.4),
        inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.reel {
    width: 120px;
    height: 140px;
    background: linear-gradient(180deg, #000 0%, #1a0033 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.symbol {
    font-size: 5rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

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

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

.message-zone {
    margin-top: 2rem;
    text-align: center;
}

.game-status {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: 900;
    text-shadow: 0 0 15px #ffd700;
    padding: 1rem;
    background: rgba(255, 0, 128, 0.2);
    border-radius: 15px;
    border: 3px solid #ff00ff;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-status.win {
    color: #00ff00;
    text-shadow: 0 0 20px #00ff00;
    animation: winPulse 0.5s ease-in-out infinite;
}

@keyframes winPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.control-zone {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
}

.balance-section {
    background: linear-gradient(135deg, #1a0033 0%, #2d1b4e 100%);
    border: 4px solid #ffd700;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.balance-label {
    font-size: 0.9rem;
    color: #ffd700;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.balance-display {
    font-size: 2rem;
    color: #00ff00;
    font-weight: 900;
    text-shadow: 0 0 15px #00ff00;
}

.currency {
    font-size: 1.5rem;
}

.virtual-notice {
    font-size: 0.7rem;
    color: #ff8c00;
    font-weight: 700;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: noticeFlash 2s ease-in-out infinite;
}

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

.bet-controls {
    text-align: center;
}

.bet-label {
    font-size: 1rem;
    color: #ffd700;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.bet-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.bet-btn {
    background: linear-gradient(180deg, #4a0080 0%, #2d004d 100%);
    border: 3px solid #ff00ff;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
}

.bet-btn:hover {
    background: linear-gradient(180deg, #6a00a0 0%, #4d006d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 255, 0.5);
}

.bet-btn.active {
    background: linear-gradient(180deg, #ffd700 0%, #ff8c00 100%);
    border-color: #ffd700;
    color: #000;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

.current-bet-display {
    font-size: 1.1rem;
    color: #ffd700;
    font-weight: 700;
}

.spin-button {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0080 0%, #ff00ff 100%);
    border: 8px solid #ffd700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 30px rgba(255, 0, 128, 0.6),
        0 0 40px rgba(255, 0, 255, 0.4);
    justify-self: center;
}

.spin-button:hover:not(:disabled) {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 12px 40px rgba(255, 0, 128, 0.8),
        0 0 60px rgba(255, 0, 255, 0.6);
}

.spin-button:active:not(:disabled) {
    transform: scale(0.95);
}

.spin-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.spin-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
}

.spin-text {
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.spin-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.max-bet-btn {
    background: linear-gradient(180deg, #ff8c00 0%, #ff0080 100%);
    border: 4px solid #ffd700;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.max-bet-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.7);
}

.stats-panel {
    background: linear-gradient(180deg, #1a0033 0%, #0a0015 100%);
    border: 5px solid #8000ff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(128, 0, 255, 0.4);
}

.stats-header {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px #ffd700;
    letter-spacing: 3px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(128, 0, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    border: 2px solid #ff00ff;
}

.stat-label {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.stat-value {
    color: #00ff00;
    font-weight: 900;
    font-size: 1.1rem;
    text-shadow: 0 0 10px #00ff00;
}

.paytable {
    background: linear-gradient(180deg, #2d1b4e 0%, #1a0033 100%);
    border: 5px solid #ffd700;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.paytable-header {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px #ffd700;
    letter-spacing: 3px;
}

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

.pay-item {
    background: rgba(0, 0, 0, 0.5);
    border: 3px solid #ff00ff;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.pay-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.6);
}

.pay-item.special {
    border-color: #ffd700;
}

.pay-symbol {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.pay-value {
    font-size: 1.3rem;
    color: #00ff00;
    font-weight: 900;
    text-shadow: 0 0 10px #00ff00;
}

.game-footer {
    background: linear-gradient(180deg, #1a0033 0%, #000 100%);
    border-top: 5px solid #ffd700;
    padding: 2rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-disclaimer {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.disclaimer-title {
    font-size: 1.2rem;
    color: #00ff00;
    font-weight: 900;
    letter-spacing: 3px;
    text-shadow: 0 0 15px #00ff00;
}

.disclaimer-details {
    font-size: 0.95rem;
    color: #ffd700;
    font-weight: 700;
    letter-spacing: 2px;
}

.disclaimer-extra {
    font-size: 0.85rem;
    color: #ff8c00;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 10px;
    border: 2px solid #ff8c00;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #ff00ff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
}

.footer-links span {
    color: #8000ff;
}

.responsible-gaming-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #ffd700;
}

.section-title {
    font-size: 1.1rem;
    color: #ffd700;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.gaming-resources {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
}

.resource-link:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.resource-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a0033 0%, #2d1b4e 100%);
    border: 3px solid #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffd700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.resource-link span {
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    max-width: 120px;
}

.resource-link:hover .resource-logo {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .jackpot-amount {
        font-size: 3rem;
    }

    .neon-letter {
        font-size: 2.5rem;
    }

    .control-zone {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .spin-button {
        width: 130px;
        height: 130px;
    }

    .paytable-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .jackpot-amount {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .neon-title {
        gap: 0.5rem;
    }

    .neon-letter {
        font-size: 1.8rem;
    }

    .reels-container {
        gap: 0.5rem;
    }

    .reel {
        width: 80px;
        height: 100px;
    }

    .symbol {
        font-size: 3rem;
    }

    .display-panel {
        flex-direction: column;
        gap: 1rem;
    }

    .bet-buttons {
        flex-wrap: wrap;
    }

    .bet-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .spin-button {
        width: 110px;
        height: 110px;
    }

    .spin-text {
        font-size: 1.4rem;
    }

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

    .disclaimer-text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .social-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .game-container {
        padding: 1rem;
    }

    .jackpot-amount {
        font-size: 1.5rem;
    }

    .neon-letter {
        font-size: 1.3rem;
    }

    .reel {
        width: 60px;
        height: 80px;
    }

    .symbol {
        font-size: 2rem;
    }

    .win-value, .multiplier-value {
        font-size: 1.8rem;
    }

    .game-status {
        font-size: 1.1rem;
    }

    .disclaimer-text {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .disclaimer-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-badge {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }

    .disclaimer-title {
        font-size: 1rem;
    }

    .disclaimer-details {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .disclaimer-extra {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .gaming-resources {
        gap: 1rem;
    }

    .resource-link {
        padding: 0.75rem;
    }

    .resource-logo {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .resource-link span {
        font-size: 0.75rem;
        max-width: 100px;
    }

    .section-title {
        font-size: 0.95rem;
    }
}