/* Thanks Page Styles */
.padding-y-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.thanks-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, #1e293b 0%, #0f172a 100%);
}

.relative {
    position: relative;
}

.z-10 {
    position: relative;
    z-index: 10;
}

/* Decorative Elements */
.thanks-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.thanks-decor-1 {
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: #2b5af4;
    /* Primary Accent */
}

.thanks-decor-2 {
    bottom: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: #ff5000;
    /* Brand Orange */
    opacity: 0.2;
}

.thanks-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

.thanks-content {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    z-index: 2;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: rgba(43, 90, 244, 0.1);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--nv-primary-accent);
    margin: 0 auto 32px;
    border: 1px solid rgba(43, 90, 244, 0.2);
    box-shadow: 0 0 20px rgba(43, 90, 244, 0.2);
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
}

.thanks-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.thanks-text {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .padding-y-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .thanks-title {
        font-size: 32px;
    }

    .thanks-text {
        font-size: 16px;
    }
}