* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 46, 0.9) 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.95);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .modal-content {
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            max-width: 500px;
            margin: 20px;
            border: 2px solid #4fc3f7;
            box-shadow: 0 20px 40px rgba(79, 195, 247, 0.3);
        }

        .modal-content h2 {
            color: #4fc3f7;
            margin-bottom: 20px;
            font-size: 2.5em;
            text-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
        }

        .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, #4fc3f7, #29b6f6);
            color: white;
            box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
        }

        .btn-continue:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(79, 195, 247, 0.6);
        }

        .btn-leave {
            background: linear-gradient(145deg, #666, #555);
            color: white;
        }

        .btn-leave:hover {
            background: linear-gradient(145deg, #777, #666);
            transform: translateY(-2px);
        }

        /* Main Content */
        .main-content {
            display: none;
            flex: 1;
            display: flex;
            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: 220px;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
            margin: 0 auto;
            margin-bottom: 100px;
        }

        .header p {
            text-align: center;
            font-size: 1em;
            color: #b0b0b0;
        }

        .hero-section {
            padding: 10px 0;
            text-align: center;
        }

        .hero-section h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #4fc3f7;
            text-shadow: 0 0 15px rgba(79, 195, 247, 0.6);
        }

        .hero-section p {
            font-size: 1.3em;
            color: #e0e0e0;
            margin-bottom: 40px;
        }

        .main-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 5px;
        }

        .logo-image {
            max-width: 650px;
            max-height: 220px;
            width: auto;
            height: auto;
            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-left: auto;
            margin-right: auto;
        }

        .casino-card {
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border: 2px solid #4fc3f7;
            transition: all 0.3s ease;
            position: relative;
        }

        .casino-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(79, 195, 247, 0.4);
        }

        .casino-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #4fc3f7, #29b6f6, #4fc3f7);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { opacity: 0.5; }
            to { opacity: 1; }
        }

        .casino-header {
            padding: 20px;
            background: radial-gradient(circle at center, rgba(79, 195, 247, 0.1), transparent);
        }

        .casino-logo {
            width: 80px;
            height: 80px;
            background: black;
            border-radius: 50%;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            font-weight: bold;
            color: black;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
            overflow: hidden;
            border: 3px solid #4fc3f7;
            box-shadow: 0 0 15px rgba(79, 195, 247, 0.4);
            position: relative;
            padding: 8px;
        }

        .casino-logo img {
            width: calc(100% - 16px);
            height: calc(100% - 16px);
            object-fit: contain;
            object-position: center;
            border-radius: 50%;
            position: absolute;
            top: 8px;
            left: 8px;
            background: black;
            padding: 4px;
        }

        .casino-name {
            font-size: 1.5em;
            color: #4fc3f7;
            margin-bottom: 8px;
            text-align: center;
            text-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
        }

        .casino-rating {
            text-align: center;
            margin-bottom: 20px;
        }

        .stars {
            color: #ffd700;
            font-size: 1.5em;
            margin-right: 10px;
        }

        .rating-text {
            color: #e0e0e0;
            font-size: 1.1em;
        }

        .casino-body {
            padding: 0 20px 20px;
        }

        .bonus-info {
            background: rgba(79, 195, 247, 0.1);
            padding: 15px;
            border-radius: 15px;
            margin-bottom: 15px;
            border: 1px solid rgba(79, 195, 247, 0.3);
        }

        .bonus-amount {
            font-size: 2em;
            font-weight: bold;
            color: #4fc3f7;
            text-align: center;
            margin-bottom: 8px;
            text-shadow: 0 0 15px rgba(79, 195, 247, 0.6);
        }

        .bonus-description {
            text-align: center;
            color: #b0b0b0;
            font-size: 1em;
        }

        .features {
            list-style: none;
            margin-bottom: 20px;
        }

        .features li {
            padding: 5px 0;
            color: #e0e0e0;
            display: flex;
            align-items: center;
            font-size: 0.9em;
        }

        .features li::before {
            content: '✓';
            color: #4fc3f7;
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2em;
        }

        .casino-button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(145deg, #4fc3f7, #29b6f6);
            color: white;
            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(79, 195, 247, 0.4);
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .casino-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(79, 195, 247, 0.6);
            background: linear-gradient(145deg, #29b6f6, #4fc3f7);
        }

        .footer {
            background: linear-gradient(145deg, #0a0a0a, #1a1a2e);
            padding: 20px 0;
            margin-top: 40px;
            border-top: 2px solid #4fc3f7;
            box-shadow: 0 -3px 15px rgba(79, 195, 247, 0.3);
        }

        .footer-content {
            text-align: center;
        }

        .footer-title {
            color: #4fc3f7;
            font-size: 1.4em;
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(79, 195, 247, 0.6);
        }

        .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: #e0e0e0;
            transition: all 0.3s ease;
            padding: 10px;
            border-radius: 10px;
            background: rgba(79, 195, 247, 0.05);
            border: 1px solid rgba(79, 195, 247, 0.2);
            min-width: 80px;
        }

        .contact-item:hover {
            transform: translateY(-3px);
            color: #4fc3f7;
            background: rgba(79, 195, 247, 0.1);
            border-color: #4fc3f7;
            box-shadow: 0 5px 15px rgba(79, 195, 247, 0.3);
        }

        .contact-icon {
            font-size: 1.8em;
            margin-bottom: 5px;
            filter: drop-shadow(0 0 5px rgba(79, 195, 247, 0.5));
        }

        .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;
            }
        }