/* Affiliates Section */
.affiliates {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem;
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.affiliates .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.affiliates .section-title {
    margin-bottom: 1rem;
    color: #e0e7ff;
}

.affiliates .section-header p {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 32rem;
    margin: 0 auto;
}

.affiliates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.affiliate-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.affiliate-card:hover {
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(0, 212, 255, 0.2);
}

.affiliate-logo {
    height: 6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.affiliate-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e0e7ff;
    margin-bottom: 0.5rem;
}

.affiliate-card p {
    color: #cbd5e1;
    font-size: 0.875rem;
}

.affiliate-cta {
    text-align: center;
}

.affiliate-cta p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}