/* ========================================
   AFFILIATE DISCLOSURE PAGE STYLES
   ======================================== */
.affiliate-disclosure-page {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.affiliate-hero {
    margin: var(--space-16) 0 var(--space-12) 0;
    position: relative;
    overflow: hidden;
}

.affiliate-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

.affiliate-hero-text h2 {
    font-size: var(--text-4xl);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-6);
    font-weight: var(--font-bold);
    animation: slideInLeft 0.8s ease-out;
}

.affiliate-hero-text p {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--gray-700);
    margin-bottom: var(--space-8);
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.affiliate-hero-image {
    position: relative;
    animation: slideInRight 0.8s ease-out 0.3s both;
}

.placeholder-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 19, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.placeholder-image i {
    font-size: 4rem;
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
}

.placeholder-image p {
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    position: relative;
    z-index: 1;
}

/* Details Section */
.affiliate-details {
    margin: var(--space-16) 0;
}

.affiliate-details h3 {
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
}

.affiliate-details p {
    color: var(--gray-700);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    font-size: var(--text-base);
}

.affiliate-details a {
    color: var(--primary-color);
    text-decoration: underline;
}

.affiliate-details a:hover {
    color: var(--secondary-color);
}

/* CTA Section */
.affiliate-cta {
    margin: var(--space-16) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.affiliate-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-4);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
}

.cta-content p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--white);
    color: var(--primary-color);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: var(--font-semibold);
    font-size: var(--text-lg);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow);
    margin-bottom: var(--space-4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--secondary-color);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: var(--font-semibold);
    font-size: var(--text-lg);
    transition: all var(--transition-normal);
    margin-bottom: var(--space-4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .affiliate-hero-content {
        gap: var(--space-8);
    }
    .affiliate-hero-text h2 {
        font-size: var(--text-3xl);
    }
}

@media (max-width: 768px) {
    .affiliate-hero {
        margin: var(--space-12) 0 var(--space-8) 0;
    }
    .affiliate-hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }
    .affiliate-hero-text h2 {
        font-size: var(--text-2xl);
    }
    .affiliate-hero-text p {
        font-size: var(--text-base);
    }
    .placeholder-image {
        padding: var(--space-8);
    }
    .placeholder-image i {
        font-size: 3rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .affiliate-hero-text h2 {
        font-size: var(--text-xl);
    }
    .affiliate-hero-text p {
        font-size: var(--text-sm);
    }
    .affiliate-details h3 {
        font-size: var(--text-lg);
    }
    .affiliate-details p {
        font-size: var(--text-sm);
    }
    .cta-content h2 {
        font-size: var(--text-xl);
    }
    .cta-content p {
        font-size: var(--text-sm);
    }
} 