#apply-now .section-label {
    display: inline-block;
    background: linear-gradient(270deg, #a71c1c, #6907c5);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

/* --- Tier System Section Start --- */
.tier-structure {
    padding: 30px 0;
    margin: 20px auto 0;
}

.tier-structure-container {
    max-width: min(70%, var(--section-max-width));
    margin: 0 auto;
}

.commission-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    padding: 0;
}

.tier-card {
    background: #f8f9fa;
    padding: 25px 20px;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
    transform: scale(0.95);
    opacity: 0.85;
}

.tier-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(167, 28, 28, 0.1);
    transform: scale(0.98);
    opacity: 1;
}

.tier-card.popular {
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transform: scale(1);
    opacity: 1;
}

.tier-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.tier-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.tier-selection-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-selection-indicator::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.tier-radio:checked+.tier-selection-indicator {
    border-color: var(--accent-color);
    background: white;
}

.tier-radio:checked+.tier-selection-indicator::after {
    opacity: 1;
    transform: scale(1);
}

.tier-card:hover .tier-selection-indicator {
    border-color: var(--accent-color);
}

.tier-cta {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.tier-apply-btn {
    background: linear-gradient(270deg, #a71c1c, #6907c5, #a71c1c, #6907c5);
    background-size: 300% 100%;
    background-position: 0% 0%;
    color: white;
    border: none;
    border-radius: 16px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease, background-position 0.6s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: auto;
}

.tier-apply-btn:hover {
    background-position: 100% 0%;
    transform: translateY(-2px);
}

.tier-apply-btn:active {
    transform: translateY(0);
}

.tier-radio:checked~.tier-badge,
.tier-radio:checked~h3,
.tier-radio:checked~.tier-subtitle {
    color: var(--accent-color);
}

.tier-radio:checked+.tier-selection-indicator+.tier-badge {
    background: var(--accent-color);
    color: white;
}

.tier-card:has(.tier-radio:checked) {
    border-color: var(--accent-color);
    background: rgba(167, 28, 28, 0.02);
    box-shadow: 0 15px 40px rgba(167, 28, 28, 0.2);
    transform: scale(1.05);
    opacity: 1;
    z-index: 2;
}

/* When any card is selected, make unselected cards smaller */
.commission-tiers:has(.tier-radio:checked) .tier-card:not(:has(.tier-radio:checked)) {
    transform: scale(0.92);
    opacity: 0.7;
}

.commission-tiers:has(.tier-radio:checked) .tier-card:not(:has(.tier-radio:checked)):hover {
    transform: scale(0.95);
    opacity: 0.85;
}

.tier-badge {
    background: #666;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.tier-card.popular .tier-badge {
    background: var(--accent-color);
}

.tier-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.tier-subtitle {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    margin-left: 2%;
    text-align: left;
}

.tier-features li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.tier-earnings {
    background: none;
    color: black;
    font-weight: 600;
    border: 1px solid black;
    border-radius: 10px;
    padding: 6px 10px;
    width: fit-content;
    margin: 0 auto;
}

.tier-earnings span {
    font-size: 12px;
}

.sponsorship-callout {
    background: linear-gradient(135deg, rgba(167, 28, 28, 0.05) 0%, rgba(105, 7, 197, 0.05) 100%);
    border: 1px solid rgba(167, 28, 28, 0.1);
    border-radius: 16px;
    padding: 20px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 85%;
    margin: 30px auto 0;
}

.sponsorship-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 20%, rgba(167, 28, 28, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(105, 7, 197, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.callout-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.callout-content i {
    font-size: 20px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.callout-content p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1400px) {
    .tier-structure-container {
        max-width: min(80%, var(--section-max-width));
    }

    .sponsorship-callout {
        width: 100%;
        padding: 16px;
    }

    .callout-content {
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .tier-structure {
        padding: 20px 0 30px;
    }

    .tier-structure-container {
        max-width: min(90%, var(--section-max-width));
    }

    .commission-tiers {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 12px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .tier-structure {
        padding: 20px 0;
        margin-top: 0;
    }

    .tier-structure-container {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .tier-structure {
        padding: 0 0 20px;
    }

    .tier-structure-container {
        max-width: 85%;
    }

    .commission-tiers {
        margin-top: 20px;
    }

    .tier-badge {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .tier-card {
        padding: 20px 25px 16px;
    }

    .tier-card h3 {
        font-size: 20px;
    }

    .tier-card .tier-subtitle {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .tier-features {
        margin-bottom: 12px;
    }

    .tier-card .tier-features li {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .tier-card .tier-features li::before {
        font-size: 10px;
    }

    .tier-earnings {
        padding: 4px 10px;
        margin-bottom: 10px;
        align-items: center;
        display: flex;
        border-radius: 8px;
    }

    .tier-earnings span {
        font-size: 10px;
    }

    .tier-apply-btn {
        padding: 8px 16px;
        font-size: 11px;
        border-radius: 12px;
    }

    .sponsorship-callout {
        padding: 16px;
        margin-top: 18px;
    }

    .callout-content {
        gap: 12px;
    }

    .callout-content i {
        font-size: 16px;
    }

    .callout-content p {
        font-size: 11px;
    }
}

/* --- Tier System Section End --- */


/* --- Application Form Start --- */
.application-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.application-form-container {
    max-width: min(85%, var(--section-max-width));
    margin: 0 auto;
    text-align: center;
}

.application-form-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 10;
}

.application-form-container h2::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 8px;
    background: linear-gradient(270deg, #a71c1c, #6907c5);
    opacity: 0.4;
    box-shadow: 0 0 10px rgba(0, 0, 0, 1);
    border-radius: 3px;
    z-index: -1;
}

.application-form-container p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #ccc;
}

.form-layout {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 40px;
    align-items: start;
    text-align: left;
    margin-top: 20px;
}

.form-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    background: linear-gradient(135deg, rgba(167, 28, 28, 0.1), rgba(105, 7, 197, 0.1));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.creator-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.form-image:hover .creator-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
}

.stats-badge {
    background: rgba(190, 187, 187, 0.2);
    backdrop-filter: blur(1px);
    padding: 12px 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

.stats-badge i {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    font-size: 16px;
}

.affiliate-application-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #ccc;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select option {
    background: #1a1a1a;
    color: white;
}

.checkbox-group.compact {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #ccc;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 6px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #ccc;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 20px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(270deg, #a71c1c, #6907c5, #a71c1c, #6907c5);
    background-size: 300% 100%;
    background-position: 0% 0%;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background-position: 100% 0%;
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 12px !important;
    color: #999;
    margin: 16px 0 0 0 !important;
}

@media (max-width: 1400px) {
    .application-form-container {
        max-width: min(90%, var(--section-max-width));
        margin: 0 auto;
    }

    .application-form-container h2 {
        font-size: 30px;
    }

    .application-form-container p {
        margin-bottom: 20px;
    }

    .form-layout {
        grid-template-columns: 350px 1fr;
    }

    .form-image {
        height: 350px;
    }

    .stats-badge {
        padding: 10px 14px;
        font-size: 12px;
    }

    .affiliate-application-form {
        padding: 22px 30px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 12px;
        font-size: 13px;
    }

    .form-group:nth-child(4) {
        margin-bottom: 10px;
    }

    .checkbox-group {
        gap: 4px;
    }

    .checkbox-group label {
        width: fit-content;
    }

    .btn-primary {
        font-size: 13px;
        padding: 10px 20px;
        max-width: fit-content;
    }

    .form-note {
        font-size: 10px;
        margin-top: 10px;
    }
}

@media (max-width: 992px) {
    .form-layout {
        grid-template-columns: 1fr;
    }

    .form-image {
        height: 25vh;
        width: 100%;
    }

    .stats-badge {
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .application-section {
        padding: 20px 0;
    }

    .application-form-container {
        max-width: 90%;
    }

    .application-form-container h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .application-form-container h2::after {
        width: 40%;
        height: 6px;
        bottom: 0;
    }

    .application-form-container p {
        font-size: 12px;
        margin-bottom: 20px;
    }

    #apply-now .section-label {
        font-size: 7px;
        margin-bottom: 8px;
    }

    .form-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-image {
        height: 200px;
        width: 100%;
        order: 2;
    }

    .affiliate-application-form {
        order: 1;
        padding: 20px 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-grid .form-group {
        margin-bottom: 0;
    }

    .form-grid .form-group:last-child {
        margin-bottom: 10px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .form-group input,
    .form-group textarea {
        padding: 8px 12px;
        font-size: 12px;
    }

    .form-group select {
        padding: 8px 12px !important;
        font-size: 12px;
    }

    .checkbox-group.compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .checkbox-group label {
        font-size: 10px;
    }

    .checkbox-group input {
        border-radius: 4px;
        margin-right: 0 !important;
    }

    .checkbox-label {
        font-size: 10px !important;
        align-items: center !important;
        display: flex !important;
    }

    .checkbox-label input {
        margin-right: 2px !important;
    }

    .checkbox-label a {
        margin: 0 2px !important;
    }

    .btn-primary {
        font-size: 11px;
        padding: 10px 16px;
        max-width: 180px;
        border-radius: 12px;
        width: 100%;
    }

    .form-submit {
        margin-top: 10px;
    }

    .form-submit p {
        font-size: 9px !important;
        margin-top: 12px !important;
    }

    .stats-badge {
        padding: 8px 10px;
        font-size: 11px;
        border-radius: 10px;
    }

    .stats-badge i {
        font-size: 12px;
    }

    .image-overlay {
        bottom: 10px;
        left: 10px;
        right: 10px;
        gap: 8px;
    }
}

/* --- Application Form End --- */