:root {
    --color-primary: #9cc6db;
    --color-secondary: #fcf6d9;
    --color-tertiary: #cf4b00;
    --color-quaternary: #ddba7d;
    --color-accent: #e88d56;
    --color-white: #ffffff;
    --color-gray-light: #f8f9fa;
    --color-gray: #6c757d;
    --color-dark: #212529;
    --font-primary: 'Work Sans', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, rgba(156, 198, 219, 0.1) 0%, rgba(252, 246, 217, 0.15) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.thanks-container {
    width: 100%;
    max-width: 600px;
}

.thanks-content {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: rgba(207, 75, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: scaleIn 0.5s ease;
}

.thanks-icon i {
    font-size: 3rem;
    color: var(--color-tertiary);
}

h1 {
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.7s ease;
}

.thanks-info {
    background: var(--color-gray-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
    animation: fadeInUp 0.8s ease;
}

.thanks-info p {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.thanks-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.thanks-info li {
    padding: 0.8rem 0;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.thanks-info li::before {
    content: '✓';
    background: var(--color-tertiary);
    color: var(--color-white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.9s ease;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--color-tertiary);
    color: var(--color-white);
    border: none;
}

.btn-primary:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(207, 75, 0, 0.25);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--color-tertiary);
    color: var(--color-tertiary);
}

.btn-outline-primary:hover {
    background: var(--color-tertiary);
    color: var(--color-white);
    transform: translateY(-2px);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

@media (max-width: 768px) {
    .thanks-content {
        padding: 2rem;
    }
    h1 {
        font-size: 2rem;
    }
    .thanks-message {
        font-size: 1.1rem;
    }
    .thanks-actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
}