:root {
    --bg-color: #050508;
    --accent-primary: #8a2be2;
    --accent-secondary: #00e5ff;
    --card-bg: rgba(20, 20, 28, 0.4);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 20% 40%, rgba(138, 43, 226, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(0, 229, 255, 0.1) 0%, transparent 40%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    animation: float infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

.container {
    width: 100%;
    max-width: 680px;
    padding: 2rem;
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.banner-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #000;
}

.banner-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.glass-card:hover .banner-photo {
    transform: scale(1.05);
}

/* Blend the bottom of the banner smoothly into the dark card */
.banner-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, rgba(20, 20, 28, 1) 0%, transparent 100%);
    pointer-events: none;
}

.content-wrapper {
    padding: 0 2.5rem 3.5rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(20, 20, 28, 1) 0%, rgba(20, 20, 28, 0.2) 100%);
}

.profile-container {
    position: relative;
    width: 130px;
    height: 130px;
    margin: -65px auto 1.5rem;
    z-index: 2;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #14141c; 
    background-color: #14141c;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.profile-container:hover .profile-photo {
    transform: scale(1.08) rotate(-5deg);
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.85;
    z-index: 1;
    animation: rotateGlow 3s infinite linear;
}

@keyframes rotateGlow {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1.2); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1.2); }
}

.title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.7rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 0.4rem;
    background: linear-gradient(to right, #ffffff, #dcdcdc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 0.95rem;
    color: var(--accent-secondary);
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight {
    color: #fff;
}

.description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0 auto 2.5rem;
    max-width: 480px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 1);
    color: #000;
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.cta-button:hover svg {
    color: #ff0000; /* Keeping the YouTube red when hovering */
}

.cta-button svg {
    color: #ff0000;
    width: 20px;
    height: 20px;
    transition: color 0.3s ease;
}

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

@media (max-width: 500px) {
    .container {
        padding: 1rem;
    }
    .title {
        font-size: 2.2rem;
    }
    .content-wrapper {
        padding: 0 1.5rem 2.5rem;
    }
}
