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

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #330066 50%, #660099 100%);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
}

img, svg, video, iframe {
    max-width: 100%;
    height: auto;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

.header {
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    padding: 20px 0;
    position: relative;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
}

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.auth-nav {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 215, 0, 0.3);
}

.user-welcome {
    color: #FFD700;
    font-weight: 700;
    font-size: 14px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    color: #1a0033;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.nav-btn.active {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF1744 100%);
    color: #fff;
}

.balance-display {
    display: flex;
    gap: 30px;
}

.balance-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.balance-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.balance-value {
    font-size: 24px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.win-amount {
    color: #00FF00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.main-content {
    position: relative;
    z-index: 10;
    padding: 40px 20px;
    max-width: 100vw;
    overflow-x: hidden;
}

.section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slot-machine {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.responsible-gaming-notice {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.9) 0%, rgba(255, 69, 0, 0.9) 100%);
    border: 2px solid #FF4500;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 
        0 4px 15px rgba(255, 69, 0, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.2);
    animation: gentlePulse 4s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(255, 69, 0, 0.3),
            inset 0 1px 3px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 6px 25px rgba(255, 69, 0, 0.5),
            inset 0 1px 3px rgba(255, 255, 255, 0.2);
    }
}

.disclaimer-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.disclaimer-text strong {
    font-weight: 800;
    color: #FFFF99;
}

.jackpot-display {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 20px 40px;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.jackpot-label {
    font-size: 18px;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.jackpot-amount {
    font-size: 48px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        2px 2px 4px rgba(0,0,0,0.5);
    animation: pulse 2s infinite;
}

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

.slot-container {
    background: linear-gradient(135deg, #1a0033 0%, #330066 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.5),
        inset 0 2px 10px rgba(255,255,255,0.1);
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.slot-frame {
    background: #000;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 0 50px rgba(0,0,0,0.8),
        0 0 20px rgba(255, 215, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.reels-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 360px;
    position: relative;
}

.reel {
    width: 120px;
    height: 360px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 2px solid #333;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.symbol {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.symbol-icon {
    width: 80px;
    height: 80px;
    display: block;
}

.paytable-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
}

.inline-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.spin-icon {
    width: 36px;
    height: 36px;
}

.symbol:hover {
    background: linear-gradient(135deg, rgba(255,215,0,0.2) 0%, rgba(255,165,0,0.1) 100%);
}

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

@keyframes spinSymbols {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-120px);
        opacity: 1;
    }
}

.paylines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.main-spin-area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.game-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.3) 100%);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.bet-controls {
    display: flex;
    gap: 30px;
}

.control-group {
    text-align: center;
}

.control-group label {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.bet-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 5px;
}

.bet-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a0033;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bet-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.bet-value {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    min-width: 60px;
    text-align: center;
}

.total-bet {
    font-size: 24px;
    font-weight: 900;
    color: #00FF00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.spin-button {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: none;
    background: radial-gradient(circle, #FFD700 0%, #FF6B6B 50%, #FF1744 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(255, 107, 107, 0.5),
        inset 0 2px 5px rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.spin-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.spin-button:hover {
    transform: scale(1.1);
    box-shadow: 
        0 15px 40px rgba(255, 107, 107, 0.7),
        inset 0 2px 5px rgba(255,255,255,0.3);
}

.spin-button:hover::before {
    animation: shine 0.5s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

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

.spin-button.spinning {
    animation: spinButton 1s linear infinite;
    pointer-events: none;
    opacity: 0.7;
}

@keyframes spinButton {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spin-icon {
    font-size: 36px;
}

.auto-controls {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.auto-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.auto-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

.paytable-container,
.info-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.8),
        0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 3px;
}

.paytable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.paytable-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.paytable-item:hover {
    background: rgba(255,215,0,0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,215,0,0.2);
}

.paytable-symbols {
    font-size: 24px;
    margin-bottom: 10px;
}

.paytable-payout {
    font-size: 24px;
    font-weight: 900;
    color: #00FF00;
    text-shadow: 0 0 10px rgba(0,255,0,0.5);
}

.info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-block {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 25px;
}

.info-block h3 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-block ul {
    list-style: none;
}

.info-block li {
    padding: 8px 0;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info-block li:last-child {
    border-bottom: none;
}

.win-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.win-popup.show {
    display: flex;
    animation: fadeIn 0.5s ease;
}

.win-content {
    background: radial-gradient(circle, #FFD700 0%, #FFA500 50%, #FF6B6B 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    box-shadow: 
        0 0 100px rgba(255,215,0,0.8),
        0 0 200px rgba(255,165,0,0.5);
    animation: winPulse 1s ease infinite;
}

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

.win-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 72px;
    color: #fff;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.5),
        0 0 20px rgba(255,255,255,0.5);
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.win-amount-display {
    font-size: 96px;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        2px 2px 8px rgba(0,0,0,0.5),
        0 0 30px rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.win-close {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    color: #FF6B6B;
    border: none;
    padding: 20px 60px;
    font-size: 24px;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.win-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.modal-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #1a0033 0%, #330066 100%);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 100px rgba(255, 215, 0, 0.2);
    animation: slideUp 0.5s ease;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.modal-header h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 2px;
}

.modal-header p {
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-body {
    padding: 40px 30px;
    text-align: center;
}

.age-icon, .cookie-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.age-text {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.age-buttons, .cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-confirm, .btn-accept {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

.btn-confirm:hover, .btn-accept:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.6);
}

.btn-deny {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.4);
}

.btn-deny:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(244, 67, 54, 0.6);
}

.btn-accept:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.disclaimer {
    color: #999;
    font-size: 12px;
}

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

.policy-links a {
    color: #FFD700;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.policy-links a:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0;
    text-align: left;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
}

.checkbox-container label {
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 15px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.4);
}

.age-restriction p {
    color: #999;
    font-size: 14px;
    flex: 1;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 12px;
    margin-bottom: 10px;
}

.footer-disclaimer {
    color: #FFD700;
    font-size: 14px;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-url {
    color: #FFD700;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
    body {
        width: 100%;
        overflow-x: hidden !important;
    }
    
    .main-content {
        padding: 20px 10px;
        width: 100%;
        overflow-x: hidden !important;
    }
    
    .slot-machine {
        padding: 0 10px;
        width: 100%;
    }
    
    .slot-container {
        padding: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
        width: 100%;
    }
    
    .nav {
        width: 100%;
        justify-content: center;
    }
    
    .balance-display {
        width: 100%;
        justify-content: space-around;
    }
    
    .reels-container {
        gap: 5px;
    }
    
    .reel {
        width: 60px;
        height: 180px;
    }
    
    .symbol {
        height: 60px;
        font-size: 30px;
    }
    
    .reels-container {
        height: 180px;
    }
    
    .game-controls {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
    
    .controls {
        flex-direction: column;
        gap: 30px;
    }
    
    .bet-controls {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .spin-button {
        width: 120px;
        height: 120px;
    }
    
    .auto-controls {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .auto-btn {
        width: 100%;
        padding: 15px 30px;
    }
    
    .win-content {
        padding: 40px;
    }
    
    .win-title {
        font-size: 48px;
    }
    
    .win-amount-display {
        font-size: 60px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .age-buttons, .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .responsible-gaming-notice {
        padding: 12px 15px;
        margin-bottom: 15px;
    }
    
    .disclaimer-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .slot-container {
        padding: 10px;
    }
    
    .slot-frame {
        padding: 10px;
    }
    
    .reels-container {
        gap: 3px;
        height: 150px;
    }
    
    .reel {
        width: 50px;
        height: 150px;
    }
    
    .symbol {
        height: 50px;
        font-size: 25px;
    }
    
    .symbol-icon {
        width: 40px;
        height: 40px;
    }
    
    .main-spin-area {
        padding: 15px;
    }
    
    .spin-button {
        width: 100px;
        height: 100px;
        font-size: 18px;
    }
}