* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #A34CE8;
    --primary-cyan: #34E6E6;
    --dark-bg: #0A0015;l
    --dark-card: #1A0B2E;
    --text-white: #FFFFFF;
    --text-gray: #B8B8D1;
    --accent-glow: rgba(163, 76, 232, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 50%, rgba(163, 76, 232, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(52, 230, 230, 0.15) 0%, transparent 50%);
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(163, 76, 232, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    height: 60px;
    max-width: 200px;
    filter: drop-shadow(0 0 20px rgba(163, 76, 232, 0.4));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(163, 76, 232, 0.4)); }
    50% { filter: drop-shadow(0 0 30px rgba(52, 230, 230, 0.6)); }
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-login {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-login:hover {
    background: var(--primary-purple);
    color: white;
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-register {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(163, 76, 232, 0.4);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(163, 76, 232, 0.6);
}

/* Hero Section with Background Image */
.hero {
    position: relative;
    padding: 12rem 5% 8rem;
    text-align: center;
    background-image: url('wepayaff.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: fadeIn 1s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 0, 21, 0.75);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(163, 76, 232, 0.5);
}

@keyframes textShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-white);
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeIn 1s ease 0.2s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero .btn-register {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
    animation: fadeIn 1s ease 0.4s backwards;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(26, 11, 46, 0.6);
    border: 1px solid rgba(163, 76, 232, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: fadeIn 1s ease backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(163, 76, 232, 0.3);
}

.stat-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Brands Section */
.brands {
    padding: 6rem 5%;
    text-align: center;
}

.brands h2 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-card {
    background: rgba(26, 11, 46, 0.6);
    border: 1px solid rgba(163, 76, 232, 0.3);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeIn 1s ease backwards;
}

.brand-card:nth-child(1) { animation-delay: 0.2s; }
.brand-card:nth-child(2) { animation-delay: 0.3s; }
.brand-card:nth-child(3) { animation-delay: 0.4s; }

.brand-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-cyan);
    box-shadow: 0 30px 60px rgba(163, 76, 232, 0.4);
}

.brand-image {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.brand-image img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

.brand-content {
    padding: 2.5rem;
}

.brand-content h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.brand-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.brand-features li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.brand-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: bold;
}

.btn-learn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(163, 76, 232, 0.5);
}

/* Features Section */
.features {
    padding: 6rem 5%;
    background: rgba(26, 11, 46, 0.3);
}

.features h2 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    padding: 2.5rem;
    background: rgba(26, 11, 46, 0.6);
    border: 1px solid rgba(163, 76, 232, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(163, 76, 232, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    padding: 8rem 5%;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background: rgba(26, 11, 46, 0.6);
    border: 2px solid rgba(163, 76, 232, 0.4);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(163, 76, 232, 0.3);
}

.cta h2 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.cta .btn-register {
    font-size: 1.2rem;
    padding: 1.3rem 3.5rem;
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(163, 76, 232, 0.2);
}

footer p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-section {
    padding: 6rem 5%;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form {
    background: rgba(26, 11, 46, 0.6);
    border: 1px solid rgba(163, 76, 232, 0.3);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 0, 21, 0.6);
    border: 1px solid rgba(163, 76, 232, 0.3);
    border-radius: 10px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(52, 230, 230, 0.3);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(163, 76, 232, 0.6);
}

/* Captcha Styles */
.captcha-group {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 2px solid rgba(148, 87, 235, 0.2);
}

.captcha-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.captcha-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
}

.captcha-math {
    background: linear-gradient(135deg, #9457EB 0%, #5BC3EB 100%);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(148, 87, 235, 0.3);
}

.captcha-input {
    max-width: 100px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(148, 87, 235, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 600;
}

.captcha-input:focus {
    outline: none;
    border-color: #9457EB;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(148, 87, 235, 0.3);
}

.captcha-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.captcha-error-elegant {
    display: none;
    margin-top: 12px;
    padding: 10px 15px;
    background: rgba(244, 67, 54, 0.15);
    border-left: 3px solid #f44336;
    color: #ff5252;
    font-size: 14px;
    border-radius: 4px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button improvements */
.btn-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, #9457EB 0%, #5BC3EB 100%);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(148, 87, 235, 0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(148, 87, 235, 0.6);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

/* Success/Error Messages */
.success-message {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(56, 142, 60, 0.2));
    border: 2px solid #4caf50;
    color: #a5d6a7;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    animation: fadeIn 0.5s ease;
}

.error-message {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2), rgba(211, 47, 47, 0.2));
    border: 2px solid #f44336;
    color: #ef5350;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    animation: fadeIn 0.5s ease;
}

/* Responsive */
@media (max-width: 768px) {
    /* Navigation mobile improvements */
    nav {
        padding: 1rem 3%;
        flex-wrap: nowrap;
    }
    
    .logo {
        height: 35px;
        flex-shrink: 0;
    }
    
    .nav-buttons {
        gap: 0.4rem;
        flex-shrink: 0;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .btn-login,
    .btn-register {
        min-width: auto;
    }

    .hero {
        padding: 10rem 5% 6rem;
    }

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

    .hero p {
        font-size: 1.1rem;
    }
    
    .page-header {
        padding: 8rem 5% 3rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }

    .brands h2,
    .features h2,
    .cta h2 {
        font-size: 2rem;
    }

    .brand-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        padding: 2rem;
    }

    .captcha-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .captcha-math {
        margin-left: 0;
    }
    
    .captcha-input {
        max-width: 100%;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    nav {
        padding: 0.8rem 2%;
    }
    
    .logo {
        height: 30px;
    }
    
    .nav-buttons {
        gap: 0.3rem;
    }
    
    .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .page-header {
        padding: 7rem 5% 2rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header */
.page-header {
    padding: 10rem 5% 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(163, 76, 232, 0.1), rgba(52, 230, 230, 0.1));
}

.page-header h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Commission Page Styles */
.commission-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.commission-section {
    margin-bottom: 5rem;
}

.commission-section h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.tier-card {
    background: rgba(26, 11, 46, 0.6);
    border: 2px solid rgba(163, 76, 232, 0.3);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(163, 76, 232, 0.3);
}

.tier-card.highlighted {
    border-color: var(--primary-purple);
    background: rgba(163, 76, 232, 0.1);
}

.tier-icon {
    font-size: 2.5rem;
}

.tier-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tier-range {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.tier-rate {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cpa-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(26, 11, 46, 0.6);
    border: 1px solid rgba(163, 76, 232, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 15px 40px rgba(163, 76, 232, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.sub-affiliate-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.sub-feature {
    background: rgba(26, 11, 46, 0.6);
    border: 1px solid rgba(163, 76, 232, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.sub-feature:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
}

.sub-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sub-feature h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-white);
}

.sub-feature p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.payment-section {
    background: rgba(26, 11, 46, 0.3);
    border-radius: 30px;
    padding: 3rem;
}

.payment-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.payment-card {
    background: rgba(26, 11, 46, 0.6);
    border: 1px solid rgba(163, 76, 232, 0.3);
    border-radius: 20px;
    padding: 2rem;
}

.payment-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.payment-card ul {
    list-style: none;
    padding: 0;
}

.payment-card ul li {
    color: var(--text-gray);
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.payment-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: bold;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    color: var(--primary-cyan);
}

/* Content Pages */
.content-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.content-page h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: var(--text-white);
}

.content-page h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-white);
}

.content-page p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-page ul, .content-page ol {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-page li {
    margin-bottom: 0.8rem;
}

.content-page a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-page a:hover {
    color: var(--primary-purple);
}

.content-box {
    background: rgba(26, 11, 46, 0.6);
    border: 1px solid rgba(163, 76, 232, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.content-box h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.content-box p {
    margin-bottom: 0.8rem;
}

.content-box p:last-child {
    margin-bottom: 0;
}

/* About Page Specific */
.about-hero {
    background: linear-gradient(135deg, rgba(163, 76, 232, 0.2), rgba(52, 230, 230, 0.2));
    padding: 3rem;
    border-radius: 30px;
    margin-bottom: 3rem;
    text-align: center;
}

.about-hero h2 {
    margin-top: 0;
}

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

.value-card {
    background: rgba(26, 11, 46, 0.6);
    border: 1px solid rgba(163, 76, 232, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin: 1rem 0;
}

/* Responsive for new pages */
@media (max-width: 768px) {
    /* Déjà défini dans la section responsive principale */
    .commission-tiers,
    .cpa-benefits,
    .sub-affiliate-features,
    .payment-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .commission-section h2,
    .content-page h2 {
        font-size: 1.8rem;
    }
    
    .about-hero {
        padding: 2rem;
    }
    
    .content-page {
        padding: 2rem 5%;
    }
    
    .content-box {
        padding: 1.5rem;
    }
}
