* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', 'Segoe UI', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* Age Verification Popup */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.age-modal {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
}

.age-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

.age-modal h1 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-modal p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.age-note {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 3px solid #ff0000;
}

.disclaimer p {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-yes-btn {
    background: linear-gradient(45deg, #8a2be2, #4b0082);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.age-yes-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.age-no-btn {
    background: #333;
    color: #fff;
    border: 1px solid #555;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.age-no-btn:hover {
    background: #444;
    transform: translateY(-2px);
}

/* Casino Main Content */
.casino-main {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    border: 2px solid #ffd700;
    margin-top: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    }
    to {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
    }
}

.casino-main h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.casino-main p {
    font-size: 1.5rem;
    color: #ccc;
    line-height: 1.6;
}

/* Casino Content */
.casino-content {
    padding: 2rem;
}

header {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid #ffd700;
}

header h1 {
    color: #ffd700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .age-modal {
        padding: 2rem;
        margin: 1rem;
    }
    
    .age-modal h1 {
        font-size: 1.5rem;
    }
    
    .age-image {
        width: 50px;
        height: 50px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .casino-main {
        padding: 2rem 1rem;
        margin: 1rem;
    }
    
    .casino-main h2 {
        font-size: 2rem;
    }
    
    .casino-content {
        padding: 1rem;
    }
}

/* Hungarian Restriction Modal */
.restriction-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.restriction-content {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    border: 1px solid #333;
}

.restriction-content h1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.4;
}

.restriction-content p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

/* Hide screens when not needed */
.age-verification.hidden {
    display: none;
}

/* BeGambleAware Disclaimer */
.begambleaware-disclaimer {
    background: rgba(0, 0, 0, 0.95);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    border: 2px solid #333;
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.disclaimer-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.disclaimer-text {
    text-align: center;
    max-width: 700px;
}

.disclaimer-text p {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.begambleaware-logo {
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #444;
    min-width: 350px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo-text {
    position: relative;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.logo-main {
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    font-family: 'Arial', sans-serif;
    text-transform: none;
    letter-spacing: 0.5px;
}

.logo-trademark {
    position: absolute;
    top: -8px;
    right: -20px;
    font-size: 1rem;
    color: #fff;
    font-weight: normal;
}

.helpline {
    font-size: 1.2rem;
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-weight: 500;
}

/* Responsive design for disclaimer */
@media (max-width: 768px) {
    .begambleaware-disclaimer {
        padding: 2rem 1.5rem;
        margin: 1rem;
        max-width: 95%;
    }
    
    .disclaimer-text p {
        font-size: 0.9rem;
    }
    
    .logo-main {
        font-size: 1.8rem;
    }
    
    .helpline {
        font-size: 1rem;
    }
    
    .begambleaware-logo {
        min-width: 280px;
        padding: 2rem 1.5rem;
    }
    
    .disclaimer-content {
        gap: 2rem;
    }
} 