* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #080b14;
    font-family: "Segoe UI", Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-wrapper {
    width: 100%;
    padding: 24px;
}

.thankyou-box {
    max-width: 480px;
    margin: 0 auto;
    background: #111525;
    border: 1px solid rgba(196, 201, 255, 0.12);
    border-radius: 24px;
    padding: 48px 40px 40px;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.thankyou-icon {
    font-size: 72px;
    margin-bottom: 16px;
    display: block;
}

.thankyou-title {
    font-size: 32px;
    font-weight: 700;
    color: #f2f4ff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.thankyou-desc {
    font-size: 16px;
    color: #9da5ba;
    line-height: 1.6;
    margin-bottom: 32px;
}

.thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.thankyou-home-btn,
.thankyou-contact-btn {
    display: inline-block;
    padding: 14px 32px;
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.thankyou-home-btn {
    background: linear-gradient(135deg, #635bff, #4d93e8);
    color: #fff;
    box-shadow: 0 8px 24px rgba(99, 91, 255, 0.25);
}

.thankyou-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 91, 255, 0.35);
}

.thankyou-contact-btn {
    background: transparent;
    color: #6f788d;
    border: 1px solid rgba(196, 201, 255, 0.15);
}

.thankyou-contact-btn:hover {
    color: #aaa4ff;
    border-color: rgba(99, 91, 255, 0.3);
}