:root {
    --primary-color: #4F46E5;
    --secondary-color: #4338CA;
    --accent-color: #6366F1;
    --text-color: #1E293B;
    --light-bg: #F1F5F9;
    --warning-color: #EF4444;
    --gradient-start: #4F46E5;
    --gradient-end: #6366F1;
    --card-hover-shadow: rgba(79, 70, 229, 0.15);
    --bonus-bg: rgba(99, 102, 241, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Age Disclaimer */
.age-disclaimer {
    background: linear-gradient(to right, var(--warning-color), #DC2626);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Main Header */
.main-header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(79, 70, 229, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.navbar-brand span {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.hero-image {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 6rem 0;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

/* Listing Section */
.listing-section {
    background-color: var(--light-bg);
}

.offer-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(79, 70, 229, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px var(--card-hover-shadow);
}

.offer-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.offer-image img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.offer-content {
    padding: 1.5rem;
}

.offer-score {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.score {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stars {
    color: #6366F1;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.offer-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.bonus-box {
    background: var(--bonus-bg);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.bonus-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.3rem;
}

.bonus-amount {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
}

.bonus-desc {
    font-size: 0.9rem;
    color: #4b5563;
}

.visit-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    width: 100%;
    padding: 0.8rem;
    font-weight: 500;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.visit-btn:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.offer-disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid #e5e7eb;
}

/* Responsive adjustments for listing */
@media (max-width: 991.98px) {
    .offer-image {
        height: 180px;
    }
    
    .offer-title {
        font-size: 1.3rem;
    }
    
    .bonus-amount {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .offer-image {
        height: 160px;
    }
    
    .offer-content {
        padding: 1.2rem;
    }
    
    .score {
        font-size: 1.6rem;
    }
}

/* Content Sections */
.content-section {
    background: white;
}

.content-block {
    margin-bottom: 4rem;
    padding: 2rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.content-block h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.content-text {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.8;
}

.content-text ul {
    padding-left: 1.2rem;
    margin: 1rem 0;
}

.content-text li {
    margin-bottom: 0.8rem;
    position: relative;
}

.step-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    position: relative;
}

.step-number {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.disclaimer-block {
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
}

.disclaimer-block h2 {
    color: #991B1B;
}

.disclaimer-block h2::after {
    background: linear-gradient(to right, #DC2626, #EF4444);
}

.disclaimer-block .content-text {
    color: #7F1D1D;
}

@media (max-width: 768px) {
    .content-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .step-guide {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Footer Styles */
.site-footer {
    background: #1E293B;
    color: white;
    padding-top: 3rem;
}

.footer-links {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

.payment-methods {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
}

.payment-icon {
    height: 30px;
    width: auto;
    margin: 0.5rem;
    transition: filter 0.3s ease;
}


.footer-disclaimer {
    padding: 2rem 0;
    background: rgba(239, 68, 68, 0.1);
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.copyright {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.8rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer-links .row {
        flex-direction: column;
        text-align: center;
    }

    .footer-link {
        display: block;
        padding: 0.5rem;
    }

    .payment-methods .row {
        justify-content: center;
    }

    .payment-icon {
        height: 25px;
        margin: 0.3rem;
    }

    .footer-disclaimer,
    .copyright {
        font-size: 0.75rem;
    }
} 