.warning-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.warning-modal.show {
    display: flex;
}

.warning-modal-content {
    background: linear-gradient(135deg, #2d3561 0%, #1a1a2e 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #ff4757;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
    max-width: 500px;
    width: 90%;
}

.warning-modal h2 {
    color: #ff4757;
    margin-bottom: 20px;
    font-size: 24px;
}

.warning-modal p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 16px;
}

.warning-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.warning-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.warning-btn-continue {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: white;
}

.warning-btn-cancel {
    background: linear-gradient(135deg, #666 0%, #444 100%);
    color: white;
}

.warning-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.official-link {
    display: inline-block;
    margin: 20px 0;
}

.info-banner {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.info-banner h3 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.info-banner p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

.app-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.app-link {
    padding: 15px 30px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 10px;
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.app-link:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    transform: translateY(-3px);
}

.game-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.game-category h3 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.game-category p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.legal-section h3 {
    color: #00d4ff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-section ul {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-section li {
    margin-bottom: 10px;
}

.footer-warning {
    background: rgba(255, 71, 87, 0.1);
    border-top: 2px solid rgba(255, 71, 87, 0.5);
    padding: 30px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-warning p {
    color: #ff4757;
    font-weight: bold;
    margin: 10px 0;
}

.footer-warning .age-restriction {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Hero background image */
.hero-background {
    background-image: url('images/Luxury Casino Interior.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* Hero logo */
.hero-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

/* Body background image */
body {
    background-image: url('images/Slot Machines Focus.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.85);
    z-index: -1;
}

/* Sections with semi-transparent background */
.overview,
.features,
.progress,
.updates,
.faq,
.contact,
.dev-showcase,
.info-banner {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(5px);
}

/* Side Banner */
.side-banner {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    width: 200px;
    max-width: 200px;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

.side-banner:hover {
    transform: translateY(-50%) translateX(-10px);
}

.side-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px 0 0 10px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.side-banner:hover .side-banner-img {
    box-shadow: -8px 0 30px rgba(0, 212, 255, 0.5);
}

/* Responsive - adjust banner on mobile */
@media (max-width: 1024px) {
    .side-banner {
        top: auto;
        bottom: 10px;
        right: 10px;
        transform: none;
        width: 150px;
    }
}

