/* ==========================================
   PARTNERS PAGE STYLES
   ========================================== */

/* ===== HERO ===== */
.partner-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 160px 0 100px;
    background: radial-gradient(ellipse at 60% 40%, rgba(255, 30, 60, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(255, 30, 60, 0.04) 0%, transparent 50%);
}

.partner-hero-glow {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 30, 60, 0.12) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.partner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.partner-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 30, 60, 0.1);
    border: 1px solid rgba(255, 30, 60, 0.3);
    color: #ff1e3c;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: badgePulse 3s ease-in-out infinite alternate;
}

@keyframes badgePulse {
    0% { box-shadow: 0 0 0 rgba(255, 30, 60, 0); }
    100% { box-shadow: 0 0 15px rgba(255, 30, 60, 0.25); }
}

.partner-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 24px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.partner-hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 44px;
}

.partner-hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #ff1e3c;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Floating decorative icons */
.partner-decor-1,
.partner-decor-2,
.partner-decor-3,
.partner-decor-4 {
    position: absolute;
    color: rgba(255, 30, 60, 0.06);
    font-size: 8rem;
    pointer-events: none;
    z-index: 1;
    animation: floatDecor 8s ease-in-out infinite alternate;
}

.partner-decor-1 { top: 15%; right: 8%; font-size: 10rem; animation-delay: 0s; }
.partner-decor-2 { top: 55%; right: 20%; font-size: 7rem; animation-delay: 1.5s; }
.partner-decor-3 { bottom: 20%; right: 5%; font-size: 6rem; animation-delay: 0.8s; }
.partner-decor-4 { top: 30%; right: 40%; font-size: 4rem; animation-delay: 2s; opacity: 0.04; }

@keyframes floatDecor {
    0% { transform: translateY(0) rotate(-5deg); }
    100% { transform: translateY(-24px) rotate(5deg); }
}

@media (max-width: 768px) {
    .partner-decor-1, .partner-decor-2, .partner-decor-3, .partner-decor-4 { display: none; }
}

/* ===== WHY SECTION ===== */
.why-partner {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 30, 60, 0.02) 50%, transparent 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

@media (max-width: 1100px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .why-grid { grid-template-columns: 1fr; }
}

.why-card {
    position: relative;
    background: rgba(10, 10, 14, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 36px 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 30, 60, 0.4), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-card:hover::before { transform: scaleX(1); }

.why-card:hover {
    border-color: rgba(255, 30, 60, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 30, 60, 0.06);
}

.why-card-featured {
    border-color: rgba(255, 30, 60, 0.25);
    background: rgba(255, 30, 60, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 30, 60, 0.1);
}

.why-card-featured::before { transform: scaleX(1); background: linear-gradient(90deg, transparent, #ff1e3c, transparent); }

.why-card-featured-badge {
    position: absolute;
    top: 18px; right: 18px;
    background: #ff1e3c;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 100px;
}

.why-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 30, 60, 0.1);
    border: 1px solid rgba(255, 30, 60, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff1e3c;
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
    background: rgba(255, 30, 60, 0.18);
    box-shadow: 0 0 15px rgba(255, 30, 60, 0.3);
}

.why-card-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ff1e3c;
    margin-bottom: 10px;
}

.why-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}

.why-card-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-card-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.why-card-perks li i {
    color: #ff1e3c;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ===== PLATFORMS SECTION ===== */
.requirements-section {
    background: rgba(0, 0, 0, 0.3);
}

/* Unified Role Banner */
.unified-role-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 30, 60, 0.06);
    border: 1px solid rgba(255, 30, 60, 0.2);
    border-radius: 16px;
    padding: 20px 28px;
    margin: 40px 0 48px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.unified-role-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff1e3c, transparent);
}

.unified-role-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 30, 60, 0.12);
    border: 1px solid rgba(255, 30, 60, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff1e3c;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.unified-role-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.unified-role-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 30, 60, 0.8);
}

.unified-role-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.unified-role-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 20px;
    flex: 1;
    min-width: 200px;
}

/* Platform Cards Grid */
.platform-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .platform-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

.platform-card {
    position: relative;
    background: rgba(10, 10, 14, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.platform-card-glow {
    position: absolute;
    top: -40px; left: -40px; right: -40px;
    height: 160px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.platform-card:hover .platform-card-glow { opacity: 1; }

/* TikTok */
.platform-tiktok .platform-card-glow {
    background: radial-gradient(ellipse, rgba(105, 201, 208, 0.08) 0%, transparent 70%);
}
.platform-tiktok:hover {
    border-color: rgba(105, 201, 208, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(105, 201, 208, 0.05);
    transform: translateY(-6px);
}
.platform-icon-tiktok {
    background: linear-gradient(135deg, rgba(105, 201, 208, 0.15), rgba(238, 29, 82, 0.15));
    border-color: rgba(105, 201, 208, 0.3);
    color: #69c9d0;
}

/* YouTube */
.platform-youtube .platform-card-glow {
    background: radial-gradient(ellipse, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
}
.platform-youtube {
    border-color: rgba(255, 0, 0, 0.18);
    background: rgba(255, 0, 0, 0.03);
}
.platform-youtube:hover {
    border-color: rgba(255, 0, 0, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(255, 0, 0, 0.08);
    transform: translateY(-8px);
}
.platform-card-featured {
    transform: scale(1.02);
}
.platform-card-featured:hover {
    transform: scale(1.02) translateY(-8px);
}
.platform-icon-youtube {
    background: rgba(255, 0, 0, 0.12);
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff0000;
}

/* Twitch */
.platform-twitch .platform-card-glow {
    background: radial-gradient(ellipse, rgba(145, 70, 255, 0.08) 0%, transparent 70%);
}
.platform-twitch:hover {
    border-color: rgba(145, 70, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(145, 70, 255, 0.05);
    transform: translateY(-6px);
}
.platform-icon-twitch {
    background: rgba(145, 70, 255, 0.12);
    border-color: rgba(145, 70, 255, 0.3);
    color: #9146ff;
}

/* Platform Card Header */
.platform-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.platform-icon {
    width: 54px;
    height: 54px;
    border: 1px solid;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
    box-shadow: 0 0 20px currentColor;
    opacity: 0.9;
}

.platform-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.platform-tag {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3px;
    margin-top: 2px;
}

/* Curator block */
.platform-curator {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 12px 16px;
}

.platform-curator > i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    flex-shrink: 0;
}

.platform-curator div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.curator-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.curator-contact {
    font-size: 0.88rem;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

/* Req list (shared) */
.req-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.req-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.req-list li i {
    color: #ff1e3c;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.req-tier-bonus {
    background: rgba(255, 30, 60, 0.08);
    border: 1px solid rgba(255, 30, 60, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}


/* ===== FORM SECTION ===== */
.partner-form-section {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 30, 60, 0.02) 50%, transparent 100%);
}

/* Discord Notice Banner */
.discord-notice {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(88, 101, 242, 0.08);
    border: 1px solid rgba(88, 101, 242, 0.25);
    border-radius: 14px;
    padding: 18px 24px;
    max-width: 860px;
    margin: 40px auto 0;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.discord-notice::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.7), transparent);
}

.discord-notice-icon {
    width: 44px;
    height: 44px;
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5865F2;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.discord-notice-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 180px;
}

.discord-notice-body strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
}

.discord-notice-body span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.discord-notice-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #5865F2;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: none !important;
}

.discord-notice-btn:hover {
    background: #4752C4;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
    transform: translateY(-1px);
}

/* Form Error Banner */
.form-error-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 30, 60, 0.08);
    border: 1px solid rgba(255, 30, 60, 0.35);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.form-error-banner i {
    color: #ff1e3c;
    font-size: 1rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.form-error-banner span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
}

.form-error-banner span a {
    color: #ff1e3c;
    text-decoration: underline;
}

/* Discord @ input */
.discord-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.discord-input-wrap:focus-within {
    border-color: rgba(88, 101, 242, 0.5);
    background: rgba(88, 101, 242, 0.04);
    box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.08);
}

.discord-input-wrap.has-error {
    border-color: rgba(255, 30, 60, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 30, 60, 0.12);
}

.discord-at {
    padding: 0 12px;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    user-select: none;
    flex-shrink: 0;
}

.discord-input-wrap input {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 13px 16px 13px 0;
    flex: 1;
    box-shadow: none !important;
}

.discord-input-wrap input:focus {
    border: none;
    background: transparent;
    box-shadow: none;
}

.discord-input-wrap input.field-error {
    border: none;
    box-shadow: none;
}

/* Form hint text */
.form-hint {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
}



.form-wrapper {
    position: relative;
    background: rgba(8, 8, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 52px 48px;
    max-width: 860px;
    margin: 60px auto 0;
    overflow: hidden;
}

.form-glow-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 30, 60, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Corner accents */
.form-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: rgba(255, 30, 60, 0.4);
    border-style: solid;
}
.form-corner.top-left { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.form-corner.top-right { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.form-corner.bottom-left { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.form-corner.bottom-right { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

.partner-form {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .form-wrapper { padding: 36px 24px; }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.form-group label i {
    color: rgba(255, 30, 60, 0.7);
    font-size: 0.75rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 13px 16px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    resize: vertical;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(255, 30, 60, 0.5);
    background: rgba(255, 30, 60, 0.04);
    box-shadow: 0 0 0 3px rgba(255, 30, 60, 0.08);
}

.form-group select option {
    background: #0a0a0e;
    color: #ffffff;
}

.form-group input.field-error,
.form-group textarea.field-error,
.form-group select.field-error {
    border-color: rgba(255, 30, 60, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 30, 60, 0.12);
}

.form-select-wrapper {
    position: relative;
}

.form-select-wrapper select {
    padding-right: 40px;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    pointer-events: none;
}

/* Checkbox */
.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
    display: none;
}

.form-checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    margin-top: 2px;
}

.form-checkbox-label input[type="checkbox"]:checked + .form-checkbox-custom {
    background: #ff1e3c;
    border-color: #ff1e3c;
}

.form-checkbox-label input[type="checkbox"]:checked + .form-checkbox-custom::after {
    content: '✓';
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.form-checkbox-label input[type="checkbox"].field-error + .form-checkbox-custom {
    border-color: #ff1e3c;
    box-shadow: 0 0 0 3px rgba(255, 30, 60, 0.15);
}

/* Submit */
.form-submit-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-top: 8px;
}

.btn-submit {
    min-width: 240px;
    padding: 16px 40px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.form-notice {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

/* Success */
.form-success {
    position: relative;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
    gap: 16px;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 30, 60, 0.12);
    border: 2px solid #ff1e3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff1e3c;
    font-size: 1.8rem;
    margin-bottom: 8px;
    box-shadow: 0 0 30px rgba(255, 30, 60, 0.3);
    animation: successPulse 1.5s ease-in-out infinite alternate;
}

@keyframes successPulse {
    0% { box-shadow: 0 0 20px rgba(255, 30, 60, 0.2); }
    100% { box-shadow: 0 0 40px rgba(255, 30, 60, 0.5); }
}

.form-success h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 440px;
    line-height: 1.65;
}
