@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2d8bac;
    --text-color: #1f2937;
    --light-text: #ffffff;
    --bg-gradient: linear-gradient(135deg, #1a5f7a 0%, #2d8bac 100%);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: #f8fafc;
}

.age-verification-section {
    background: var(--bg-gradient);
    color: var(--light-text);
    padding: 3rem 0;
}

.age-content {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.age-header {
    background: var(--bg-gradient);
    color: var(--light-text);
    padding: 2rem;
    text-align: center;
}

.age-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.age-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.age-warning {
    text-align: center;
    margin: 2rem;
    padding: 1.5rem;
    background: #fef3cd;
    border-radius: 8px;
    border: 1px solid #fde047;
}

.age-warning i {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    display: block;
}

.age-warning p {
    color: #92400e;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 0 2rem 2rem 2rem;
}

.btn-age-confirm,
.btn-age-deny {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.btn-age-confirm {
    background: #22c55e;
    color: #ffffff;
}

.btn-age-confirm:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-age-deny {
    background: #ef4444;
    color: #ffffff;
}

.btn-age-deny:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.age-footer {
    background: #f8fafc;
    padding: 1rem 2rem;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.age-footer p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.age-verification-section.hidden {
    display: none;
}

.topbar {
    background-color: #0f172a;
    color: var(--light-text);
    font-size: 14px;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: padding 0.3s ease;
}

.logo {
    height: 40px;
    width: auto;
}

.hero-section {
    background: var(--bg-gradient);
    color: var(--light-text);
    padding: 4rem 0;
    position: relative;
    margin-bottom: 2rem;
}

.hero-section .subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.casino-listings {
    padding: 3rem 0;
}

.casino-offer {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    overflow: hidden;
}

.offer-main {
    padding: 1.5rem;
}

.casino-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.welcome-bonus h3 {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.bonus-extra {
    font-size: 0.9rem;
    color: #64748b;
}

.casino-pros ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.casino-pros li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.casino-pros i {
    color: #22c55e;
    margin-right: 0.5rem;
}

.casino-score {
    text-align: center;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
}

.score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.score-text {
    font-size: 0.9rem;
    color: #64748b;
}

.btn-visit {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-visit:hover {
    background: var(--secondary-color);
    color: #ffffff;
}

.offer-disclaimer {
    background: #f8fafc;
    padding: 0.75rem 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.offer-disclaimer p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
}

.content-sections {
    padding: 3rem 0;
    background: #ffffff;
}

.info-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.info-section p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .topbar {
        font-size: 12px;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .casino-offer {
        margin-bottom: 1.5rem;
    }

    .offer-main {
        padding: 1rem;
    }

    .casino-logo, .welcome-bonus, .casino-pros, .casino-score {
        margin-bottom: 1rem;
        text-align: center;
    }

    .casino-pros ul {
        display: inline-block;
        text-align: left;
    }

    .btn-visit {
        width: 100%;
        text-align: center;
    }

    .info-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .info-section h2 {
        font-size: 1.5rem;
    }

         .info-section p {
         font-size: 1rem;
     }
 }

.footer {
    background-color: #0f172a;
    color: var(--light-text);
    padding: 4rem 0 2rem;
    margin-top: 3rem;
}

.footer-disclaimer {
    margin-bottom: 2rem;
}

.footer-disclaimer i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

.footer-disclaimer p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.certificates-row {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.cert-img {
    max-width: 100px;
    height: auto;
    filter: grayscale(1) brightness(1.8);
    transition: filter 0.3s ease;
}

.cert-img:hover {
    filter: grayscale(0) brightness(1);
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-links ul {
    margin: 0;
    padding: 0;
}

.footer-links .list-inline-item:not(:last-child) {
    margin-right: 1.5rem;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--light-text);
}

.copyright-row p {
    font-size: 0.8rem;
    opacity: 0.6;
    margin: 0;
}

@media (max-width: 992px) {
    .age-verification-section {
        padding: 15rem 0!important;
    }

    .age-header h2 {
        font-size: 1.6rem;
    }

    .age-buttons {
        gap: 0.75rem;
    }

    .btn-age-confirm,
    .btn-age-deny {
        min-width: 160px;
        padding: 0.875rem 1.25rem;
    }
}

@media (max-width: 768px) {
    .age-verification-section {
        padding: 2rem 0;
    }

    .age-header {
        padding: 1.5rem;
    }

    .age-header h2 {
        font-size: 1.4rem;
    }

    .age-header p {
        font-size: 0.9rem;
    }

    .age-warning {
        margin: 1.5rem;
        padding: 1rem;
    }

    .age-warning i {
        font-size: 1.75rem;
    }

    .age-warning p {
        font-size: 0.85rem;
    }

    .age-buttons {
        flex-direction: column;
        padding: 0 1.5rem 1.5rem 1.5rem;
        gap: 0.75rem;
    }

    .btn-age-confirm,
    .btn-age-deny {
        min-width: auto;
        width: 100%;
        padding: 1rem;
        font-size: 0.95rem;
    }

    .age-footer {
        padding: 0.75rem 1.5rem;
    }

    .age-footer p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .age-verification-section {
        padding: 1.5rem 0;
    }

    .age-content {
        margin: 0 0.5rem;
    }

    .age-header {
        padding: 1.25rem;
    }

    .age-header h2 {
        font-size: 1.25rem;
    }

    .age-header p {
        font-size: 0.85rem;
    }

    .age-warning {
        margin: 1rem;
        padding: 0.875rem;
    }

    .age-warning i {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .age-warning p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .age-buttons {
        padding: 0 1rem 1.25rem 1rem;
        gap: 0.5rem;
    }

    .btn-age-confirm,
    .btn-age-deny {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    .age-footer {
        padding: 0.5rem 1rem;
    }

    .age-footer p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-disclaimer {
        margin-bottom: 1.5rem;
    }

    .certificates-row {
        padding: 1.5rem 0;
        margin: 1.5rem 0;
    }

    .cert-img {
        max-width: 80px;
        margin-bottom: 1rem;
    }

    .footer-links .list-inline-item {
        display: block;
        margin: 0.5rem 0 !important;
    }
}