* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

h1 {
    font-size: 36px;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.casino-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 40px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.casino-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.casino-logo {
    height: 90px;
    width: auto;
}

.rating {
    background: #4CAF50;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 18px;
}

h2 {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.casino-features {
    margin: 25px 0;
}

.feature-item {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
}

.feature-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.play-button {
    background: linear-gradient(to right, #FF512F, #DD2476);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    display: block;
    margin: 30px auto 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: bold;
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(221, 36, 118, 0.4);
}

.divider {
    height: 1px;
    background-color: #ddd;
    margin: 40px 0;
}

.responsible-gaming {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.responsible-gaming h3 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #222;
}

.bonus-section {
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 22px;
    color: #DD2476;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.footer-links a {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .casino-box {
        padding: 20px;
    }
    
    .casino-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .rating {
        margin-top: 10px;
        align-self: flex-end;
    }
}
/* Legal Pages Styles */
.legal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.legal-content section {
    margin-bottom: 30px;
}

.legal-content h2 {
    color: #222;
    margin-bottom: 15px;
    font-size: 20px;
}

.legal-content p, .legal-content li {
    margin-bottom: 10px;
    color: #555;
}

.last-updated {
    color: #777;
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th, .cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 20px;
    }
    
    .cookie-table {
        display: block;
        overflow-x: auto;
    }
}

.addiction-help {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
}

.addiction-help h3 {
    color: #d9534f;
    margin-bottom: 20px;
    font-size: 22px;
}

.help-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 20px 0;
}

.help-logos a {
    display: flex;
    align-items: center;
    height: 60px;
    transition: transform 0.3s ease;
}

.help-logos a:hover {
    transform: scale(1.05);
}

.help-logos img {
    max-height: 100%;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.9;
}

.help-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.help-text {
    color: #666;
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .help-logos {
        gap: 20px;
    }
    
    .help-logos a {
        height: 50px;
        width: calc(50% - 10px);
        justify-content: center;
    }
    
    .help-logos img {
        max-width: 150px;
    }
}

/* Age Warning Banner */
.age-disclaimer {
    background-color: #FF8C00; /* Vibrant orange */
    color: white;
    padding: 15px 0;
    text-align: center;
    font-size: 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    width: 100%;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Casino Box Warning */
.age-warning {
    background-color: #FFA500; /* Orange */
    color: white;
    padding: 12px 20px;
    margin: 25px 0 0;
    font-size: 14px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* Footer Warning */
.footer-disclaimer {
    background-color: #FF8C00; /* Orange */
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-size: 13px;
    margin-top: 40px;
    border-radius: 5px;
}

/* Help Link in Warnings */
.help-link {
    color: white;
    font-weight: bold;
    text-decoration: underline;
    white-space: nowrap;
}

/* Icons in Warnings */
.disclaimer-icon, .warning-icon {
    font-size: 18px;
}