* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #d32f2f;
    --dark-red: #b71c1c;
    --light-red: #ef5350;
    --bg-dark: #0d0d0d;
    --bg-darker: #050505;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --card-bg: #1a0a0a;
    --hover-bg: #2d1414;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1a0505 100%);
    color: var(--text-light);
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(211, 47, 47, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(183, 28, 28, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.profile-section {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.logo-container {
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(211, 47, 47, 0.4));
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(211, 47, 47, 0.6));
}

.tagline {
    font-size: 1rem;
    color: var(--text-gray);
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-section {
    background: var(--card-bg);
    border: 2px solid rgba(211, 47, 47, 0.2);
    border-radius: 15px;
    padding: 30px 40px;
    margin-bottom: 30px;
    text-align: center;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.about-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--light-red) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.social-card {
    background: var(--card-bg);
    border: 2px solid rgba(211, 47, 47, 0.2);
    border-radius: 15px;
    padding: 25px 15px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.6s ease-out backwards;
}

.social-card:nth-child(1) { animation-delay: 0.1s; }
.social-card:nth-child(2) { animation-delay: 0.2s; }
.social-card:nth-child(3) { animation-delay: 0.3s; }
.social-card:nth-child(4) { animation-delay: 0.4s; }
.social-card:nth-child(5) { animation-delay: 0.5s; }

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.social-card:hover .card-glow {
    opacity: 1;
}

.social-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-red);
    background: var(--hover-bg);
    box-shadow: 0 20px 60px rgba(211, 47, 47, 0.4),
                0 0 80px rgba(211, 47, 47, 0.2);
}

.social-icon-large {
    font-size: 45px;
    color: var(--primary-red);
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 20px rgba(211, 47, 47, 0.4));
}

.social-card:hover .social-icon-large {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 30px rgba(211, 47, 47, 0.7));
}

.social-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.social-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin: 0;
}

.thankyou-section {
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}

.thankyou-content {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, rgba(183, 28, 28, 0.05) 100%);
    border: 2px solid rgba(211, 47, 47, 0.3);
    border-radius: 15px;
    padding: 35px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thankyou-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(211, 47, 47, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.thankyou-content i {
    font-size: 40px;
    color: var(--primary-red);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(211, 47, 47, 0.5));
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

.thankyou-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--light-red) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.thankyou-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.footer {
    text-align: center;
    padding: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
    border-top: 1px solid rgba(211, 47, 47, 0.2);
    animation: fadeIn 1s ease-out 0.8s backwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .socials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 300px;
    }

    .about-section,
    .thankyou-content {
        padding: 25px 20px;
    }

    .about-section h2,
    .thankyou-content h2 {
        font-size: 1.5rem;
    }

    .about-section p,
    .thankyou-content p {
        font-size: 0.95rem;
    }

    .thankyou-content i {
        font-size: 35px;
    }

    .socials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .social-card {
        padding: 25px 15px;
    }

    .social-icon-large {
        font-size: 40px;
    }

    .social-card h3 {
        font-size: 1rem;
    }

    .social-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .logo {
        max-width: 250px;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .about-section,
    .thankyou-content {
        padding: 20px 15px;
    }

    .about-section h2,
    .thankyou-content h2 {
        font-size: 1.3rem;
    }

    .about-section p,
    .thankyou-content p {
        font-size: 0.9rem;
    }

    .thankyou-content i {
        font-size: 30px;
    }

    .socials-grid {
        grid-template-columns: 1fr;
    }

    .social-card {
        padding: 25px 20px;
    }

    .social-icon-large {
        font-size: 45px;
    }

    .social-card h3 {
        font-size: 1.1rem;
    }

    .social-card p {
        font-size: 0.85rem;
    }
}

