/* Thanks Page Styles - Matching Main Website Design */
:root {
    --primary: #191919;
    --light: #fffaeb;
    --dark: #201d1f;
    --accent: #d1bde1;
    --gradient: linear-gradient(135deg, #191919 0%, #201d1f 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--gradient);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated background particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(209, 189, 225, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(209, 189, 225, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(209, 189, 225, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wrapper-1 {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.wrapper-2 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 2px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out;
}

.wrapper-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    z-index: 1;
}

/* Success Icon */
.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    animation: bounceIn 1s ease-out 0.2s both;
}

.success-icon::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.success-icon .material-icons {
    color: white;
    font-size: 40px;
    z-index: 2;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 20px;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.wrapper-2 p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 15px 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.wrapper-2 p:first-of-type {
    font-weight: 600;
    color: var(--primary);
}

.go-home {
    background: var(--gradient);
    border: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 40px;
    margin-top: 30px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.go-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    transition: left 0.6s ease;
}

.go-home:hover::before {
    left: 100%;
}

.go-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(25, 25, 25, 0.3);
    color: white;
    text-decoration: none;
}

.go-home .material-icons {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.go-home:hover .material-icons {
    transform: translateX(3px);
}

/* Additional decorative elements */
.decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.05;
    animation: float 6s ease-in-out infinite;
}

.decoration:nth-child(1) {
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.decoration:nth-child(2) {
    bottom: -50px;
    left: -50px;
    animation-delay: 3s;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .wrapper-2 {
        padding: 40px 30px;
        margin: 20px;
        border-radius: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .wrapper-2 p {
        font-size: 1rem;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .success-icon .material-icons {
        font-size: 35px;
    }
    
    .go-home {
        padding: 14px 30px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .wrapper-2 {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .success-icon .material-icons {
        font-size: 30px;
    }
}

