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

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(10, 10, 10, 0.8) 50%, rgba(0, 20, 20, 0.85) 100%),
                        url('bg.png') center/cover no-repeat fixed;
            min-height: 100vh;
            color: #fff;
            display: flex;
            flex-direction: column;
        }

        /* Age Verification Modal */
        .age-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.98);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(15px);
        }

        .modal-content {
            background: linear-gradient(145deg, #000000, #1a1a1a);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            max-width: 500px;
            margin: 20px;
            border: 2px solid rgb(255, 60, 60);
            box-shadow: 0 20px 40px rgba(255, 60, 60, 0.4);
        }

        .modal-content h2 {
            color: rgb(30 218 231);
            margin-bottom: 20px;
            font-size: 2.5em;
            text-shadow: 0 0 15px rgba(30 218 231, 0.6);
        }

        .modal-content p {
            margin-bottom: 30px;
            font-size: 1.1em;
            line-height: 1.6;
            color: #e0e0e0;
        }

        .modal-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 10px;
            font-size: 1.1em;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
            text-transform: uppercase;
        }

        .btn-continue {
            background: linear-gradient(145deg, rgb(60, 255, 92), rgb(95, 223, 10));
            color: #000;
            box-shadow: 0 5px 15px rgba(255, 60, 60, 0.5);
        }

        .btn-continue:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 30, 30, 0.7);
            background: linear-gradient(145deg, #1aff2d, #ff3c3c);
        }

        .btn-leave {
            background: linear-gradient(145deg, #333, #222);
            color: white;
            border: 1px solid #555;
        }

        .btn-leave:hover {
            background: linear-gradient(145deg, #e60808, #8f0505);
            transform: translateY(-2px);
        }

        /* Main Content */
:root {
    --main-color: #ff3c3c;
    --hover-color: #ff1a1a;
    --gold-color: #FFD700;
    --bonus-blue: #ff6666;
    --text-light: #e0e0e0;
    --text-muted: #b0b0b0;
    --bg-dark: #000000;
    --bg-darker: #1a1a1a;
}

.main-content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header h1 {
    text-align: center;
    margin-bottom: 5px;
}

.header .logo-image {
    max-width: 400px;
    max-height: 280px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}

.header p {
    text-align: center;
    font-size: 1em;
    color: var(--text-muted);
}

.hero-section {
    padding: 10px 0;
    text-align: center;
}

.hero-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--main-color);
    text-shadow: 0 0 20px rgba(255, 60, 60, 0.8);
}

.hero-section p {
    font-size: 1.3em;
    color: var(--text-light);
    margin-bottom: 40px;
}

.main-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.logo-image {
    max-width: 650px;
    max-height: 220px;
    object-fit: contain;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 5px;
    max-width: 800px;
    margin: 0 auto;
}

.casino-card {
    background: linear-gradient(145deg, var(--bg-dark), var(--bg-darker));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--main-color);
    transition: all 0.3s ease;
    position: relative;
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 60, 60, 0.5);
    border-color: var(--hover-color);
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--main-color), var(--hover-color), var(--main-color));
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

.casino-header {
    padding: 20px;
    background: radial-gradient(circle at center, rgba(255, 60, 60, 0.1), transparent);
}

.casino-logo {
    width: 80px;
    height: 80px;
    background: #000;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    color: #000;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    overflow: hidden;
    border: 3px solid var(--main-color);
    box-shadow: 0 0 20px rgba(255, 60, 60, 0.6);
    position: relative;
    padding: 8px;
}

.casino-logo img {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    object-fit: contain;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 8px;
    background: #000;
    padding: 4px;
}

.casino-name {
    font-size: 1.5em;
    color: var(--main-color);
    margin-bottom: 8px;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 60, 60, 0.7);
}

.casino-rating {
    text-align: center;
    margin-bottom: 20px;
}

.stars {
    color: var(--main-color);
    font-size: 1.5em;
    margin-right: 10px;
}

.rating-text {
    color: var(--text-light);
    font-size: 1.1em;
}

.casino-body {
    padding: 0 20px 20px;
}

.bonus-info {
    background: rgba(255, 60, 60, 0.15);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 60, 60, 0.4);
}

.bonus-amount {
    font-size: 2em;
    font-weight: bold;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.bonus-description {
    text-align: center;
    color: var(--bonus-blue);
    font-size: 1.1em;
    font-weight: 600;
}

.features {
    list-style: none;
    margin-bottom: 20px;
}

.features li {
    padding: 5px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    font-size: 0.9em;
}

.features li::before {
    content: '✓';
    color: var(--main-color);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
    text-shadow: 0 0 10px rgba(255, 60, 60, 0.6);
}

.casino-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(145deg, var(--main-color), var(--hover-color));
    color: #000;
    border: none;
    border-radius: 15px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(255, 60, 60, 0.5);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.casino-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 60, 60, 0.7);
    background: linear-gradient(145deg, var(--hover-color), var(--main-color));
}

.footer {
    background: linear-gradient(145deg, var(--bg-dark), var(--bg-darker));
    padding: 20px 0;
    margin-top: 40px;
    border-top: 2px solid var(--main-color);
    box-shadow: 0 -3px 15px rgba(255, 60, 60, 0.4);
}

.footer-content {
    text-align: center;
}

.footer-title {
    color: var(--main-color);
    font-size: 1.4em;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(255, 60, 60, 0.8);
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid rgba(255, 60, 60, 0.3);
    min-width: 80px;
}

.contact-item:hover {
    transform: translateY(-3px);
    color: var(--main-color);
    background: rgba(255, 60, 60, 0.2);
    border-color: var(--main-color);
    box-shadow: 0 5px 15px rgba(255, 60, 60, 0.4);
}

.contact-icon {
    font-size: 1.8em;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 8px rgba(255, 60, 60, 0.6));
}

.contact-label {
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .casino-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .hero-section h2 {
        font-size: 1.8em;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .contact-icons {
        gap: 15px;
    }

    .contact-item {
        min-width: 70px;
        padding: 8px;
    }

    .contact-icon {
        font-size: 1.5em;
    }

    .footer-title {
        font-size: 1.2em;
    }

    .logo-image {
        max-width: 450px;
        max-height: 190px;
    }

    .header {
        margin-bottom: 80px;
    }

    .header .logo-image {
        max-width: 450px;
        max-height: 190px;
    }
}
