.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

.thanks-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    background: #1a1a1a;
    padding: 80px 60px;
    border-radius: 30px;
    border: 3px solid #333;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
    animation: scaleIn 0.8s ease-out;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: #ffffff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 40px;
    animation: bounceIn 1s ease-out;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideDown 0.8s ease-out 0.3s both;
}

.thanks-content p {
    font-size: 1.3rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
    animation: slideDown 0.8s ease-out 0.5s both;
}

.thanks-content .highlight {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.4rem;
    display: block;
    margin: 30px 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    animation: slideUp 0.8s ease-out 0.7s both;
}

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ffffff;
    color: #000;
    border: 3px solid #ffffff;
}

.btn-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: rotate(-2deg) scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 3px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000;
    transform: rotate(2deg) scale(1.05);
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    animation: slideUp 0.8s ease-out 0.9s both;
}

.info-box {
    background: #0d0d0d;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.info-box-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-box h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 0.95rem;
    color: #999;
    margin: 0;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .thanks-content {
        padding: 60px 40px;
    }

    .thanks-content h1 {
        font-size: 2.2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .info-boxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .thanks-content {
        padding: 40px 25px;
    }

    .success-icon {
        width: 90px;
        height: 90px;
        font-size: 3rem;
    }
}