<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-color: 210 85% 45%; /* #1e90ff */
    --secondary-color: 45 100% 50%; /* #ffd700 */
    --dark-color: 220 13% 18%; /* #1a1a2e */
    --light-color: 210 11% 98%; /* #f8f9fa */
    --success-color: 120 60% 50%; /* #28a745 */
    --warning-color: 35 100% 50%; /* #ffc107 */
    --danger-color: 0 65% 51%; /* #dc3545 */
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 76px;
}

.hero-banner {
    min-height: 60vh;
    background: linear-gradient(135deg, hsl(var(--primary-color)) 0%, hsl(var(--dark-color)) 100%);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(images/casino.webp) no-repeat center center;
    background-size: cover;
    animation: float 20s ease-in-out infinite;
}


@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* Casino Cards */
.casino-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid hsl(var(--light-color));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.casino-logo-placeholder {
    padding: 1rem;
    background: hsl(var(--light-color));
    border-radius: 10px;
    border: 2px dashed hsl(var(--primary-color));
}

.bonus-info {
    background: linear-gradient(135deg, hsl(var(--primary-color)) 0%, hsl(var(--secondary-color)) 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Custom Button Styles */
.btn-primary {
    background: linear-gradient(135deg, hsl(var(--primary-color)) 0%, hsl(var(--secondary-color)) 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
    background: linear-gradient(135deg, hsl(var(--secondary-color)) 0%, hsl(var(--primary-color)) 100%);
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: hsl(var(--secondary-color));
}

.mb-4 img {
    display: block;
    margin: 0 auto;
}


.accordion-button {
    background-color: hsl(var(--light-color));
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: hsl(var(--primary-color));
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(30, 144, 255, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .casino-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .casino-card .row {
        text-align: center;
    }
    
    .casino-card .col-md-6 {
        margin: 1rem 0;
    }
}

/* Additional Styling */
.text-primary {
    color: hsl(var(--primary-color)) !important;
}

.bg-primary {
    background-color: hsl(var(--primary-color)) !important;
}

.text-success {
    color: hsl(var(--success-color)) !important;
}

.text-warning {
    color: hsl(var(--warning-color)) !important;
}

.text-danger {
    color: hsl(var(--danger-color)) !important;
}

/* Card hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom list styling */
.list-unstyled li {
    padding: 0.25rem 0;
}

/* Footer styling */
footer {
    background-color: hsl(var(--dark-color)) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-50:hover {
    color: hsl(var(--secondary-color)) !important;
}

/* Ripple effect styles */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background-color: rgba(255, 255, 255, 0.7);
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}</pre></body></html>