* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #f0f0f0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-emblem {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 10px;
    color: #000;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffa500;
}

.title-banner {
    background-color: #e0e0e0;
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Casino Section */
.casino-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    padding: 30px;
    background-color: #111;
    border-radius: 10px;
}

.casino-logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.casino-logo-text {
    font-size: 5rem;
    font-weight: bold;
    color: #00a65a;
}

.casino-info {
    flex: 1;
}

.casino-features {
    margin-bottom: 20px;
}

.casino-features p {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.rating {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 15px 0;
    color: #00a65a;
}

.play-button {
    display: inline-block;
    background-color: #e0e0e0;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: #c0c0c0;
    transform: translateY(-2px);
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #111;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

.warning {
    color: #ff6b6b;
    font-weight: bold;
    margin-bottom: 15px;
}

.disclaimer-text {
    margin-bottom: 20px;
    color: #ccc;
}

/* Responsible Gambling Section */
.responsible-gambling {
    background-color: #111;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.rg-quote {
    font-style: italic;
    margin: 20px 0;
    padding-left: 20px;
    border-left: 3px solid #007bff;
    color: #ccc;
}

.support-links {
    margin: 20px 0;
}

.support-links a {
    color: #007bff;
    text-decoration: none;
    margin-right: 20px;
}

.support-links a:hover {
    text-decoration: underline;
}

/* Affiliate Disclaimer */
.affiliate-disclaimer {
    background-color: #111;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    color: #ccc;
}

/* Support Logos */
.support-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.support-logo {
    background-color: #222;
    padding: 15px;
    border-radius: 10px;
    min-width: 150px;
    text-align: center;
    font-weight: bold;
    color: #f0f0f0;
}

.support-logo.blue {
    background-color: #1e3a8a;
    color: white;
}

.support-logo.purple {
    background-color: #6d28d9;
    color: white;
}

.support-logo.gray {
    background-color: #374151;
    color: white;
}

/* Footer */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.footer-links a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-tagline {
    text-align: right;
    color: #666;
    font-size: 0.8rem;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
    }
    
    .casino-section {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-logo-text {
        font-size: 3.5rem;
    }
    
    .support-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .support-logo {
        width: 80%;
    }
}