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

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Background container */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Mobile background by default */
.bg-container {
    background-image: url('../images/bg-mobile.jpg');
}

/* Desktop background for larger screens */
@media (min-width: 768px) {
    .bg-container {
        background-image: url('../images/bg-desktop.jpg');
    }
}

/* Blur overlay */
.bg-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.5);
}

/* Main container */
.disclaimer-container {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .disclaimer-container {
        padding: 20px;
        height: auto;
    }
}

/* Logo */
.logo {
    max-width: 180px;
    width: 75%;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

@media (min-width: 768px) {
    .logo {
        max-width: 280px;
        margin-bottom: 30px;
    }
}

/* Disclaimer box */
.disclaimer-box {
    background: rgba(139, 0, 0, 0.95);
    border: 3px solid #FFD700;
    border-radius: 15px;
    padding: 20px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

@media (min-width: 768px) {
    .disclaimer-box {
        padding: 40px 50px;
    }
}

.disclaimer-box h1 {
    font-size: 22px;
    color: #FFD700;
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .disclaimer-box h1 {
        font-size: 36px;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }
}

.disclaimer-box p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
    text-align: center;
}

@media (min-width: 768px) {
    .disclaimer-box p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
}

.disclaimer-box p:last-of-type {
    margin-bottom: 18px;
}

@media (min-width: 768px) {
    .disclaimer-box p:last-of-type {
        margin-bottom: 30px;
    }
}

/* Enter button */
.enter-button {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    padding: 12px 30px;
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    border: 3px solid #FFD700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (min-width: 768px) {
    .enter-button {
        max-width: 300px;
        padding: 15px 40px;
        font-size: 24px;
    }
}

.enter-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
}

.enter-button:active {
    transform: translateY(-1px);
}

/* NO button (red) */
.no-button {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 12px auto 0;
    padding: 12px 30px;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    border: 3px solid #FFD700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .no-button {
        max-width: 300px;
        padding: 15px 40px;
        font-size: 24px;
    }
}

.no-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
}

.no-button:active {
    transform: translateY(-1px);
}

/* Button container */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

@media (min-width: 768px) {
    .button-container {
        gap: 15px;
    }
}

/* Hidden SEO content */
.seo-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Footer */
.footer {
    position: fixed;
    bottom: 5px;
    width: 100%;
    text-align: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    z-index: 10;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .footer {
        font-size: 14px;
        bottom: 20px;
    }
}
