/* Thank You Page Styles */
.thank-you-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.thank-you-hero {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.thank-you-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.thank-you-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.thank-you-intro-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.thank-you-intro-section p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.thank-you-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.thank-you-person-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.thank-you-person-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.thank-you-person-card:hover::before {
    left: 100%;
}

.thank-you-person-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.thank-you-person-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4ecdc4;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.thank-you-person-role {
    font-size: 0.9rem;
    color: #ff6b6b;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.thank-you-person-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.thank-you-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thank-you-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.thank-you-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4ecdc4, #45b7d1);
    transition: left 0.3s ease;
    z-index: -1;
}

.thank-you-link:hover::before {
    left: 0;
}

.thank-you-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.thank-you-honorable-mentions {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    grid-column: 1 / -1;
}

.thank-you-honorable-mentions h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #96ceb4;
}

.thank-you-mentions-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.thank-you-mention {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.thank-you-mention:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.thank-you-mention a {
    color: #4ecdc4;
    text-decoration: none;
}

.thank-you-sparkle {
    display: inline-block;
    font-size: 1.2rem;
    animation: thank-you-sparkle 1.5s ease-in-out infinite;
}

@keyframes thank-you-sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

@media (max-width: 768px) {
    .thank-you-hero h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-container {
        padding: 40px 15px;
    }
    
    .thank-you-person-card {
        padding: 20px;
    }
    
    .thank-you-links {
        justify-content: center;
    }
    
    .thank-you-grid {
        grid-template-columns: 1fr;
    }
}