:root {
    --primary-color: #2C3E50;
    --secondary-color: #3498DB;
    --accent-color: #E74C3C;
    --text-color: #2C3E50;
    --light-bg: #ECF0F1;
}

.age-verification {
    position: relative;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 40px 0;
    z-index: 1000;
}

.age-verification-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.age-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.age-verification h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.age-verification p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.age-verification .warning {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1.2rem;
    margin: 20px 0;
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.age-buttons button {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-yes {
    background: var(--accent-color);
    color: white;
}

.btn-yes:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-no {
    background: #95a5a6;
    color: white;
}

.btn-no:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.age-notice {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.age-notice a {
    color: var(--accent-color);
    text-decoration: none;
}

.age-notice a:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .age-verification-content {
        max-width: 500px;
    }
}

@media (max-width: 992px) {
    .age-verification {
        padding: 250px 0!important;
    }

    .age-verification-content {
        max-width: 450px;
    }

    .age-icon {
        font-size: 42px;
    }

    .age-verification h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .age-verification {
        padding: 20px 0;
    }

    .age-verification-content {
        max-width: 100%;
        padding: 15px;
    }

    .age-verification h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .age-verification p {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .age-verification .warning {
        font-size: 1.1rem;
        margin: 15px 0;
    }

    .age-buttons {
        flex-direction: column;
        gap: 10px;
        margin: 20px 0;
    }

    .age-buttons button {
        width: 100%;
        padding: 10px 20px;
        font-size: 1rem;
    }

    .age-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .age-notice {
        font-size: 0.85rem;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .age-verification {
        padding: 15px 0;
    }

    .age-verification-content {
        padding: 10px;
    }

    .age-verification h2 {
        font-size: 1.3rem;
    }

    .age-verification p {
        font-size: 0.9rem;
    }

    .age-verification .warning {
        font-size: 1rem;
    }

    .age-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .age-buttons button {
        padding: 8px 16px;
        font-size: 0.95rem;
    }

    .age-notice {
        font-size: 0.8rem;
        margin-top: 12px;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}

.topbar {
    background-color: var(--primary-color);
    color: white;
    font-size: 14px;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    padding: 0;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0;
    margin-top: 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.last-update {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
}

.listing-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.offer-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.offer-image img {
    border-radius: 10px;
    max-width: 100%;
}

.welcome-bonus {
    text-align: center;
}

.welcome-bonus h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.bonus-spins {
    color: var(--secondary-color);
    font-weight: 600;
}

.scores {
    padding: 0 20px;
}

.score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.score-label {
    color: var(--text-color);
    font-size: 0.9rem;
}

.score-value {
    font-weight: 700;
    color: var(--primary-color);
}

.pros-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pros-list li {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.visit-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.visit-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.offer-disclaimer {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .offer-card {
        padding: 20px;
    }
    
    .welcome-bonus, .scores, .pros-list {
        margin: 20px 0;
    }
    
    .scores {
        padding: 0;
    }
    
    .visit-button {
        width: 100%;
    }
}

.text-sections {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.text-block {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.text-block:hover {
    transform: translateY(-5px);
}

.text-block h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.text-block h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.text-block p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .text-sections {
        padding: 40px 0;
    }
    
    .text-block {
        margin-bottom: 20px;
    }
    
    .text-block h2 {
        font-size: 1.3rem;
    }
}

.responsible-gambling {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.rg-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.rg-subtitle {
    color: var(--text-color);
    font-size: 1.2rem;
    opacity: 0.8;
}

.rg-block {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    height: 100%;
    margin-bottom: 20px;
}

.rg-block h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}

.rg-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rg-list li {
    margin-bottom: 25px;
}

.rg-list li:last-child {
    margin-bottom: 0;
}

.rg-list strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.rg-list p {
    margin: 5px 0;
    color: var(--text-color);
}

.rg-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.rg-link:hover {
    color: var(--accent-color);
}

.rg-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rg-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.rg-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
}

.rg-feature-text strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.rg-feature-text p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.rg-footer {
    margin-top: 50px;
}

.rg-certifications {
    margin-bottom: 20px;
}

.cert-logo {
    height: 50px;
    margin: 0 15px;
}

.rg-notice {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .responsible-gambling {
        padding: 40px 0;
    }

    .rg-header h2 {
        font-size: 2rem;
    }

    .rg-block {
        margin-bottom: 20px;
    }

    .cert-logo {
        height: 40px;
        margin: 10px;
    }
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-certifications {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

.footer-certifications a {
    flex: 0 0 auto;
    width: calc(20% - 16px);
    max-width: 120px;
    min-width: 80px;
}

.footer-certifications img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-certifications img:hover {
    opacity: 1;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-block {
    margin-bottom: 30px;
}

.footer-block h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.footer-block p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.support-info, .contact-info {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.footer-links {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links li {
    margin: 5px 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-certifications {
        gap: 10px;
    }
    
    .footer-certifications a {
        min-width: 60px;
    }

    .footer-links ul {
        flex-direction: column;
        text-align: center;
    }

    .footer-links li {
        margin: 8px 0;
    }
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px 0;
    margin-bottom: 40px;
}

.page-header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.breadcrumb {
    margin: 10px 0 0;
    padding: 0;
    background: none;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.content-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.content-card h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
}

.content-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 30px 0 20px;
}

.content-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 20px 0 15px;
}

.content-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.content-card ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-card ul li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.cookie-type {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.regulation-block {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tool-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.warning-signs ul {
    list-style-type: none;
    padding: 0;
}

.warning-signs ul li {
    padding: 10px 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
    padding-left: 30px;
}

.warning-signs ul li:before {
    content: "⚠️";
    position: absolute;
    left: 10px;
}

.protection-measures h4 {
    margin-top: 25px;
}

.gaming-tips ul {
    list-style-type: none;
    padding: 0;
}

.gaming-tips ul li {
    padding: 10px 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    position: relative;
    padding-left: 30px;
}

.gaming-tips ul li:before {
    content: "✓";
    position: absolute;
    left: 10px;
    color: var(--accent-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .page-header {
        padding: 30px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-card {
        padding: 25px;
    }

    .content-card h2 {
        font-size: 1.8rem;
    }

    .content-card h3 {
        font-size: 1.3rem;
    }

    .tools-grid, .cookie-types {
        grid-template-columns: 1fr;
    }
}
