/* Modern Color Scheme */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #4f46e5;
    --accent: #8b5cf6;
    --background: #f8fafc;
    --text: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* Topbar Styles */
.disclaimer-topbar {
    background-color: #ef4444;
    color: white;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1000;
}

.disclaimer-topbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.disclaimer-topbar i {
    margin-right: 0.5rem;
}

.disclaimer-topbar strong {
    font-weight: 600;
    margin: 0 0.25rem;
}

@media (max-width: 768px) {
    .disclaimer-topbar {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }
    
    .disclaimer-topbar .container {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary);
}

h2 {
    font-size: 2rem;
    color: var(--secondary);
}

h3 {
    font-size: 1.5rem;
    color: var(--text);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 6rem 0;
    color: var(--white);
    text-align: center;
    border-radius: 0 0 3rem 3rem;
    margin-bottom: 4rem;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 4rem 0;
}

.feature-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
    height: 100%;
    cursor: pointer;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Listings Section */
.listings {
    padding: 4rem 0;
}

.listing-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.listing-item:hover {
    transform: translateX(5px);
}

.site-logo img {
    max-width: 150px;
    height: auto;
}

.bonus-info {
    text-align: center;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.score-info {
    text-align: center;
}

.score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.score span {
    font-size: 1rem;
    color: var(--text-light);
}

.stars {
    color: var(--warning);
    font-size: 1.2rem;
}

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

.pros li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.pros i {
    color: var(--success);
    margin-right: 0.5rem;
}

/* Enhanced Button Styles */
.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.btn-register:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.6s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    color: var(--white);
}

.btn-register:hover:before {
    left: 100%;
}

/* Listing Section Button Specific */
.listing-item .btn-register {
    margin-top: 0.5rem;
    width: 100%;
    max-width: 250px;
}

.listing-item .btn-register i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .listing-item .btn-register {
        max-width: 100%;
        padding: 0.8rem 1.5rem;
    }
}

/* Text Sections */
.text-sections {
    padding: 4rem 0;
}

.text-block {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.text-block h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.text-block ul {
    padding-left: 1.5rem;
}

.text-block li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.age-warning {
    background: var(--error);
    color: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.help-info {
    background: var(--background);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
}

.help-contact, .help-website {
    margin: 0.5rem 0;
}

.help-contact a, .help-website a {
    color: var(--primary);
    text-decoration: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding-top: 4rem;
    margin-top: 4rem;
}

.trusted-partners {
    background: linear-gradient(to right, rgba(30, 41, 59, 0.98), rgba(30, 41, 59, 0.95));
    padding: 3rem 0;
    margin-bottom: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.trusted-partners .container {
    max-width: 100%;
    padding: 0 2rem;
}

.trusted-partners:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    pointer-events: none;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    gap: 2rem;
    padding: 1rem 0;
}

.partner-link {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
    text-decoration: none;
}

.partner-logo {
    width: 150px;
    height: 65px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    margin: 0;
}

.partner-link:hover .partner-logo {
    opacity: 1;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .partner-link {
        margin: 0 1rem;
    }
    
    .partner-logo {
        width: 100px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .trusted-partners {
        padding: 2rem 0;
    }

    .trusted-partners .container {
        padding: 0 1rem;
    }

    .partner-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        justify-items: center;
    }

    .partner-link {
        margin: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .partner-logo {
        width: 140px;
        height: 60px;
    }
}

.footer-content {
    padding: 4rem 0;
}

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

.footer-block h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-block p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    padding: 2rem 0;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
        border-radius: 0 0 2rem 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .listing-item {
        text-align: center;
    }

    .site-logo {
        margin-bottom: 1rem;
    }

    .bonus-info, .score-info, .pros {
        margin: 1rem 0;
    }

    .partner-logo {
        max-height: 40px;
    }

    .footer-links ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .trusted-partners {
        padding: 2rem 0;
    }

    .partner-logos {
        gap: 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-box, .listing-item, .text-block {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
} 

/* Policy Pages Specific Styles */
.policy-hero {
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.policy-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.policy-hero .hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Text Block Enhancements for Policy Pages */
.text-block {
    animation: fadeIn 0.6s ease-out forwards;
    margin-bottom: 2rem;
}

.text-block h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.text-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.text-block .content {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
}

.text-block ul {
    list-style: none;
    padding-left: 0;
}

.text-block ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.text-block ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2em;
    line-height: 1;
}

.text-block strong {
    color: var(--text);
    font-weight: 600;
}

/* Help Info Box Enhancement */
.help-info {
    background: var(--background);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 1.5rem;
    border: 1px solid var(--border);
}

/* Back Button Enhancement */
.btn-register {
    min-width: 200px;
}

/* Responsive Adjustments for Policy Pages */
@media (max-width: 768px) {
    .policy-hero {
        padding: 3rem 0;
    }

    .policy-hero h1 {
        font-size: 2rem;
    }

    .text-block h2 {
        font-size: 1.5rem;
    }

    .text-block .content {
        font-size: 0.95rem;
    }
} 

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.age-modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.age-modal-icon {
    font-size: 3rem;
    color: var(--warning);
    margin-bottom: 1.5rem;
}

.age-modal-title {
    color: var(--text);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.age-modal-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.age-btn-enter, .age-btn-leave {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    min-width: 180px;
}

@media (max-width: 768px) {
    .age-modal-content {
        padding: 2rem;
    }

    .age-modal-buttons {
        flex-direction: column;
    }

    .age-btn-enter, .age-btn-leave {
        width: 100%;
    }
} 