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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #0f1419 0%, #1a202c 50%, #0f1419 100%);
    background-attachment: fixed;
    color: #ffffff;
    font-size: 16px;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 120px;
}

.header {
    background: #0f1419;
    padding: 0;
    border-top: 4px solid #f6ad55;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    width: 268px;
    height: 48px;
}

.logo img {
    max-width: 100%;
}

.logo-icon {
    width: 48px;
    height: 48px;
    margin-right: 15px;
    position: relative;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    fill: #ffffff;
}

.hero {
    text-align: center;
    padding: 100px 0;
    background: #0f1419;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    color: #e2e8f0;
    margin-bottom: 30px;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle .highlight {
    color: #f6ad55;
}

.updates-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(246, 173, 85, 0.02) 100%);
    border-radius: 24px;
    padding: 50px;
    margin: 60px auto;
    max-width: 1200px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(246, 173, 85, 0.2);
    position: relative;
    overflow: hidden;
}

.updates-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(246, 173, 85, 0.03) 90deg, transparent 180deg);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.updates-title {
    color: #f6ad55;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.update-item {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    padding-left: 30px;
}

.update-item::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #f6ad55;
    font-size: 12px;
    top: 2px;
}

.update-item:last-child {
    margin-bottom: 0;
}

.signup-form {
    background: linear-gradient(135deg, rgba(246, 173, 85, 0.1) 0%, rgba(237, 137, 54, 0.05) 100%);
    border-radius: 24px;
    padding: 60px;
    margin: 80px auto;
    max-width: 900px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(246, 173, 85, 0.3);
    box-shadow: 0 20px 60px rgba(246, 173, 85, 0.1);
    position: relative;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group:last-of-type,
.form-group.single-field {
    grid-template-columns: 1fr;
}

.signup-form input,
.signup-form select {
    padding: 18px 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.signup-form input::placeholder {
    color: #a0aec0;
}

.signup-form input:focus,
.signup-form select:focus {
    outline: none;
    border-color: #f6ad55;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(246, 173, 85, 0.15);
    transform: translateY(-2px);
}

.signup-form select {
    cursor: pointer;
    color: #ffffff;
}

.signup-form select option {
    background: #2d3748;
    color: #ffffff;
}

.checkbox-group {
    margin: 25px 0;
    text-align: center;
}

.checkbox-group label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #cbd5e0;
    gap: 5px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.1);
    cursor: pointer;
}

.checkbox-group a {
    color: #f6ad55;
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
    color: #1a1a1a;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(246, 173, 85, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ed8936 0%, #dd7724 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 173, 85, 0.5);
}

.submit-btn {
    width: 100%;
    margin-top: 0;
}

.success-message {
    background: rgb(0 0 0 / 0%);
    border: 2px solid #48bb78;
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.success-message h3 {
    color: #68d391;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.success-message p {
    color: #000000;
    margin-bottom: 20px;
}

.affiliate-preview {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.affiliate-preview code {
    background: rgb(0 0 0 / 64%);
    padding: 10px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    display: block;
    margin: 10px 0;
    word-break: break-all;
    color: #ffa534;
}

.copy-btn {
    background: #48bb78;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #38a169;
}

.content-section {
    background: transparent;
    border-radius: 0;
    padding: 40px 0;
    margin: 40px auto;
    max-width: 1400px;
    backdrop-filter: none;
    border: none;
}

.login-button,
.dashboard-button {
    background: #f6ad55 !important;
    color: #1a2332 !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.login-button:hover,
.dashboard-button:hover {
    background: #ed8936 !important;
    transform: translateY(-1px) !important;
}

.content-section.white-bg {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 32px;
    padding: 60px;
    margin: 80px auto;
    position: relative;
    overflow: hidden;
}

.content-section.white-bg::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #f6ad55, #ed8936, #f6ad55);
    border-radius: 34px;
    z-index: -1;
}

.content-section.white-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 32px;
    z-index: -1;
}

.content-section.white-bg .section-title {
    color: #1a1a1a;
}

.content-section.white-bg .section-title .highlight {
    color: #f6ad55;
}

.content-section.white-bg .highlight-item {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
}

.content-section.white-bg .highlight-item:hover {
    background: #fff;
    border-color: #f6ad55;
    box-shadow: 0 10px 30px rgba(246, 173, 85, 0.15);
}

.content-section.white-bg .highlight-item h4 {
    color: #f6ad55;
}

.content-section.white-bg .highlight-item p {
    color: #4a5568;
}

.content-section.white-bg .step-item {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
}

.content-section.white-bg .step-item:hover {
    background: #fff;
    border-color: rgba(246, 173, 85, 0.4);
}

.content-section.white-bg .step-item h4 {
    color: #1a1a1a;
}

.content-section.white-bg .step-item p {
    color: #4a5568;
}

.white-bg-wrapper {
    background: #ffffff;
    padding: 80px 0;
}

.full-width-white {
    background: #ffffff;
    padding: 80px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.white-content {
    color: #1a1a1a;
}

.white-content .section-title {
    color: #1a1a1a;
}

.white-content .updates-title {
    color: #f6ad55;
}

.white-content .update-item {
    color: #2d3748;
}

.white-content .form-title {
    color: #1a1a1a;
}

.white-content input,
.white-content select {
    background: #f8f9fa !important;
    color: #1a1a1a !important;
    border: 2px solid #e2e8f0 !important;
}

.white-content input:focus,
.white-content select:focus {
    background: #ffffff !important;
    border-color: #f6ad55 !important;
}

.white-content input::placeholder {
    color: #6b7280 !important;
}

.white-content .checkbox-group label {
    color: #4a5568;
}

.white-content .notice {
    color: #6b7280;
}

.white-content select option {
    background: #ffffff;
    color: #1a1a1a;
}

.white-content .faq-question {
    color: #f6ad55;
}

.white-content .faq-answer p {
    color: #4a5568;
}

.white-content .faq-icon {
    color: #f6ad55;
}

.white-content .faq-item {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
}

.white-content .faq-item:hover {
    background: #ffffff;
    border-color: #f6ad55;
}



.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.section-title .highlight {
    color: #f6ad55;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #f6ad55;
}

.card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.card h3 .highlight {
    color: #f6ad55;
}

.rule-item, .note-item {
    margin-bottom: 20px;
}

.rule-item h4 {
    color: #f6ad55;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.rule-item h4::before {
    content: '✓';
    background: #f6ad55;
    color: #1a2332;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 10px;
}

.rule-item p, .note-item p {
    color: #cbd5e0;
    font-size: 14px;
    line-height: 1.5;
}

.important-highlight {
    font-weight: 700;
    color: #ffffff;
}

.link-highlight {
    color: #f6ad55;
    text-decoration: underline;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.highlight-item {
    text-align: center;
    padding: 40px 25px;
    background: linear-gradient(135deg, rgba(246, 173, 85, 0.08) 0%, rgba(246, 173, 85, 0.03) 100%);
    border-radius: 24px;
    border: 2px solid rgba(246, 173, 85, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(246, 173, 85, 0.1), transparent);
    transition: left 0.5s ease;
}

.highlight-item:hover {
    border-color: rgba(246, 173, 85, 0.4);
    background: linear-gradient(135deg, rgba(246, 173, 85, 0.12) 0%, rgba(246, 173, 85, 0.06) 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(246, 173, 85, 0.25);
}

.highlight-item:hover::before {
    left: 100%;
}

.highlight-icon {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
    border-radius: 20px;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(246, 173, 85, 0.3);
    position: relative;
    overflow: hidden;
}

.highlight-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.highlight-item:hover .highlight-icon::after {
    transform: translateX(100%);
}

.highlight-item h4 {
    color: #f6ad55;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-item p {
    color: #cbd5e0;
    font-size: 14px;
    line-height: 1.4;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(246, 173, 85, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(246, 173, 85, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(246, 173, 85, 0.06);
    border-color: rgba(246, 173, 85, 0.4);
    transform: translateY(-3px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
    color: #1a1a1a;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(246, 173, 85, 0.4);
    position: relative;
}

.step-item h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-item p {
    color: #cbd5e0;
    font-size: 14px;
    line-height: 1.5;
}

.commission-highlight {
    background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
    color: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 15px 40px rgba(246, 173, 85, 0.4);
}

.commission-highlight h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.commission-highlight p {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    background: rgba(246, 173, 85, 0.04);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(246, 173, 85, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(246, 173, 85, 0.08);
    border-color: rgba(246, 173, 85, 0.3);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    background: transparent;
    border: none;
    color: #f6ad55;
    font-size: 18px;
    font-weight: 700;
    padding: 25px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(246, 173, 85, 0.05);
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: #f6ad55;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: #cbd5e0;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.notice {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #a0aec0;
}

.footer {
    text-align: center;
    padding: 40px 0;
    color: #a0aec0;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

/* Modal overlay */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Modal content */
.modal-content {
    background: linear-gradient(135deg, rgba(246, 173, 85, 0.1) 0%, rgba(237, 137, 54, 0.05) 100%);
    border-radius: 24px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(246, 173, 85, 0.3);
    box-shadow: 0 20px 60px rgba(246, 173, 85, 0.1);
    position: relative;
}

/* Close button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #f6ad55;
}

.modal-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

#affiliateLoginForm input {
    padding: 18px 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 1);
    color: #000;
    backdrop-filter: blur(10px);
}

@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 60px;
    }

    .header-container {
        padding: 15px 60px;
    }

    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }

    .steps-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .updates-section,
    .content-section,
    .signup-form {
        margin: 0;
        padding: 30px 15px !important;
    }

    .form-group {
        grid-template-columns: 1fr;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .header-container {
        justify-content: center;
    }

    .container  .container {
        padding: 0 10px !important;
    }
    .container {
        padding: 0 15px;
    }
}