/* Reset e fontes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-height: 100vh;
    background: linear-gradient(120deg, #f9c5d1 0%, #fbc2eb 100%);
    font-family: 'Quicksand', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.thankyou-main {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.thankyou-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(255, 117, 140, 0.18), 0 1.5px 8px rgba(0,0,0,0.07);
    padding: 48px 32px 32px 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: fadeIn 1s cubic-bezier(.39,.575,.565,1.000);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.thankyou-icon {
    background: linear-gradient(135deg, #ff758c 60%, #ff7eb3 100%);
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 18px auto;
    box-shadow: 0 4px 16px rgba(255, 117, 140, 0.18);
    animation: pop 0.7s cubic-bezier(.39,.575,.565,1.000);
}
@keyframes pop {
    0% { transform: scale(0.7); opacity: 0; }
    80% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); }
}

.thankyou-title {
    font-family: 'Playball', cursive;
    font-size: 2.2rem;
    color: #ff758c;
    margin-bottom: 12px;
    font-weight: 700;
}

.thankyou-message {
    font-size: 1.08rem;
    margin-bottom: 16px;
    color: #444;
    line-height: 1.6;
}
.thankyou-highlight {
    color: #ff758c;
    font-weight: 700;
}

.thankyou-note {
    font-size: 1rem;
    color: #666;
    margin-bottom: 18px;
}

.support-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    font-size: 1.08rem;
    font-weight: 700;
    color: #fff;
    background: #ff758c;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(255, 117, 140, 0.13);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.support-btn:hover {
    background: #ff7eb3;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 16px rgba(255, 117, 140, 0.18);
}
.wpp { background: #25D366; }
.wpp:hover { background: #1ebe5d; }
.ttk { background: #000; }
.ttk:hover { background: #222; }
.ig { background: linear-gradient(90deg, #fd5d7d 0%, #f58529 100%); }
.ig:hover { background: linear-gradient(90deg, #f58529 0%, #fd5d7d 100%); }
.mail { background: #ff758c; }
.mail:hover { background: #ff7eb3; }

.back-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 0;
    width: 100%;
    background: #fff0f6;
    color: #ff758c;
    border: 2px solid #ff758c;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.back-btn:hover {
    background: #ff758c;
    color: #fff;
}

@media (max-width: 500px) {
    .thankyou-card {
        padding: 32px 8px 24px 8px;
    }
    .thankyou-title {
        font-size: 1.5rem;
    }
    .thankyou-icon {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
}
