:root {
    --pt-green: #006600;
    --pt-red: #FF0000;
    --pt-gold: #FFD700;
}

.age-verification {
    background: linear-gradient(to right, var(--pt-green), var(--pt-red));
    padding: 1rem 0;
    color: white;
}

.age-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.age-text {
    font-size: 1.1rem;
}

.age-text strong {
    font-weight: 600;
}

.age-actions {
    display: flex;
    gap: 1rem;
}

.btn-confirm, .btn-leave {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: white;
    color: var(--pt-green);
}

.btn-confirm:hover {
    background: var(--pt-gold);
    transform: translateY(-2px);
}

.btn-leave {
    background: rgba(0,0,0,0.2);
    color: white;
}

.btn-leave:hover {
    background: rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .age-verification {
        padding: 21rem 1rem;
    }

    .age-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .age-text {
        font-size: 1rem;
        line-height: 1.4;
    }

    .age-actions {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-confirm, .btn-leave {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.95rem;
    }
}

body {
    font-family: 'Poppins', sans-serif;
}

.page-header {
    background: linear-gradient(135deg, var(--pt-green) 0%, var(--pt-red) 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.page-header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

.policy-content {
    padding: 0 0 4rem;
}

.policy-content .content-block {
    margin-bottom: 2.5rem;
}

.policy-content .content-block:last-child {
    margin-bottom: 0;
}

.policy-content h2 {
    color: var(--pt-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-content p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.3rem;
    }

    .policy-content p {
        font-size: 1rem;
    }
}

.top-bar {
    background-color: var(--pt-red);
    color: white;
    font-size: 0.9rem;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    color: var(--pt-green);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-brand:hover {
    color: var(--pt-red);
}

.hero-section {
    background: linear-gradient(135deg, var(--pt-green) 0%, var(--pt-red) 100%);
    color: white;
    padding: 6rem 0;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.update-date {
    color: var(--pt-gold);
    font-size: 1.1rem;
}

.casino-listings {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.casino-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.casino-main {
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 2.5rem;
    justify-content: space-between;
}

.casino-logo {
    width: 150px;
    flex-shrink: 0;
}

.casino-logo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.casino-bonus {
    width: 200px;
    flex-shrink: 0;
}

.casino-bonus h3 {
    color: var(--pt-green);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.casino-bonus p {
    font-weight: 600;
    margin: 0;
    font-size: 1.2rem;
    color: var(--pt-red);
}

.casino-pros {
    flex-grow: 0;
    width: 220px;
}

.casino-pros ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.casino-pros li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.casino-pros li:before {
    content: "✓";
    color: var(--pt-green);
    position: absolute;
    left: 0;
}

.casino-rating {
    text-align: center;
    width: 100px;
    flex-shrink: 0;
}

.casino-rating .score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pt-green);
}

.casino-rating .votes {
    font-size: 0.9rem;
    color: #666;
}

.casino-cta {
    width: 150px;
    flex-shrink: 0;
}

.btn-visit {
    display: inline-block;
    background: var(--pt-red);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-visit:hover {
    background: var(--pt-green);
    color: white;
    transform: translateY(-2px);
}

.casino-disclaimer {
    background: #f8f9fa;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #eee;
}

@media (max-width: 1200px) {
    .casino-main {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .casino-logo {
        width: 120px;
    }
    
    .casino-bonus, .casino-pros {
        width: calc(50% - 150px);
    }
    
    .casino-rating, .casino-cta {
        width: auto;
        flex: 1;
    }
}

.content-sections {
    padding: 4rem 0;
    background: #fff;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    color: var(--pt-green);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.content-block p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .top-bar {
        font-size: 0.8rem;
    }
    
    .casino-main {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
        gap: 1.5rem;
    }
    
    .casino-logo, .casino-bonus, .casino-pros, .casino-rating, .casino-cta {
        width: 100%;
    }
    
    .casino-pros ul {
        display: inline-block;
        text-align: left;
    }
    
    .casino-disclaimer {
        text-align: center;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .content-block p {
        font-size: 1rem;
    }
}

.site-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-disclaimer {
    text-align: center;
    margin-bottom: 2.5rem;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    text-align: justify;
}

.disclaimer-text p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclaimer-text p:last-child {
    margin-bottom: 0;
}

.footer-certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-certifications img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-certifications img:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--pt-red);
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.footer-copyright p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}
