:root {
    --primary-color: #FFEA00;
    --text-color: #000000;
    --secondary-text-color: #555555;
    --background-color: #ffffff;
    --soft-gray: #f9f9f9;
    --accent-shadow: rgba(255, 234, 0, 0.2);
    --card-shadow: rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    line-height: 1.6;
}

.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
}

.thank-you-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 40px 100px var(--card-shadow);
    transition: transform 0.3s ease;
    animation: fadeIn 1s ease-out;
}

.thank-you-card:hover {
    transform: translateY(-5px);
}

.headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.2;
}

.subheadline {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.illustration-container {
    position: relative;
    margin: 3rem auto;
    width: 100%;
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.3;
    z-index: 1;
    animation: blobPulse 6s infinite alternate;
}

.thank-you-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    animation: float 4s ease-in-out infinite;
}

.note-box {
    background-color: var(--soft-gray);
    border-left: 6px solid var(--primary-color);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: inline-block;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.note-text {
    font-size: 1rem;
    color: var(--secondary-text-color);
    text-align: left;
}

.note-text strong {
    color: var(--text-color);
}

.footer {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.8rem;
    color: var(--secondary-text-color);
    opacity: 0.6;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes blobPulse {
    from { transform: scale(1); opacity: 0.2; }
    to { transform: scale(1.2); opacity: 0.4; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }
    
    .thank-you-card {
        padding: 2rem;
        border-radius: 30px;
    }

    .illustration-container {
        max-width: 280px;
    }

    .note-box {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 1rem;
    }

    .headline {
        font-size: 1.7rem;
    }

    .subheadline {
        font-size: 1rem;
    }

    .illustration-container {
        max-width: 220px;
    }

    .note-text {
        font-size: 0.9rem;
    }
}
