:root {
    --primary: #715A5A;
    --primary-600: #5d4a4a;
    --accent: #D3DAD9;
    --surface: #2d2838;
    --heading: #e8e4f0;
    --text: #c4bfd0;
    --bg: #1a1820;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg);
    overflow-x: hidden;
}

.bw-thanks {
    min-height: 100vh;
    padding: 80px 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bw-thanks-bg,
.bw-thanks-bg2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.2;
    z-index: 0;
}

.bw-thanks-bg {
    top: -140px;
    left: -120px;
    background: rgba(113, 90, 90, 0.3);
}

.bw-thanks-bg2 {
    bottom: -160px;
    right: -120px;
    background: rgba(211, 218, 217, 0.25);
}

.bw-thanks-wrap {
    background: var(--surface);
    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, 0.5);
    border: 2px solid rgba(113, 90, 90, 0.3);
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bw-thanks-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    gap: 12px;
}

.bw-thanks-logo img {
    width: 44px;
    height: 44px;
}

.bw-thanks-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading);
}

.bw-thanks-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 18px;
    line-height: 1.2;
}

.bw-thanks-title i {
    color: var(--primary);
    margin-left: 10px;
    font-size: 2.4rem;
}

.bw-thanks-sub {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 32px;
}

.bw-thanks-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(113, 90, 90, 0.3);
}

.bw-thanks-btn:hover {
    opacity: 0.85;
    transform: scale(0.98);
}

@media (max-width: 767px) {
    .bw-thanks-wrap {
        padding: 50px 32px;
    }

    .bw-thanks-title {
        font-size: 2rem;
    }

    .bw-thanks-sub {
        font-size: 1rem;
    }
}