body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: var(--surface, #ffffff);
    overflow-x: hidden;
}

.gw-thanks {
    min-height: 100vh;
    padding: 80px 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gw-thanks-bg,
.gw-thanks-bg2 {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(95px);
    opacity: .35;
    z-index: 0;
}

.gw-thanks-bg {
    top: -140px;
    left: -120px;
    background: rgba(255, 85, 85, 0.30);
}

.gw-thanks-bg2 {
    bottom: -160px;
    right: -120px;
    background: rgba(255, 147, 126, 0.30);
}

.gw-thanks-line {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: var(--primary, #ff5555);
    opacity: .6;
}

.gw-thanks-wrap {
    background: #ffffff;
    border-radius: 22px;
    padding: 60px 40px;
    text-align: center;
    max-width: 620px;
    width: 100%;
    position: relative;
    z-index: 3;
    box-shadow: 0 18px 60px rgba(0,0,0,.12);
    animation: fadeUp .8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gw-thanks-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    gap: 10px;
    opacity: .9;
}

.gw-thanks-logo img {
    width: 40px;
    height: 40px;
}

.gw-thanks-logo span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--heading, #333);
}

.gw-thanks-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--heading, #333);
    margin-bottom: 18px;
}

.gw-thanks-title i {
    color: var(--primary, #ff5555);
    margin-left: 10px;
}

.gw-thanks-sub {
    font-size: 1.1rem;
    color: var(--text, #555);
    line-height: 1.6;
    margin-bottom: 32px;
}

.gw-thanks-btn {
    display: inline-block;
    padding: 14px 38px;
    background: var(--primary, #ff5555);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: .3s ease;
    box-shadow: 0 8px 20px rgba(255,85,85,.25);
}

.gw-thanks-btn:hover {
    background: var(--primary-600, #ff3b3b);
    transform: translateY(-3px);
}
