body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 0, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(220, 20, 60, 0.015) 0%, transparent 50%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    z-index: -2;
    pointer-events: none;
}

/* Floating Particles */
.particle {
    position: fixed;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.4);
    box-shadow:
        0 0 8px rgba(220, 20, 60, 0.6),
        0 0 16px rgba(220, 20, 60, 0.4),
        0 0 24px rgba(220, 20, 60, 0.3);
    pointer-events: none;
    z-index: -1;
    animation: float 20s infinite linear;
}

.particle.reverse {
    animation: float-reverse 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) scale(0.5);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    50% {
        transform: translateY(-50vh) translateX(50px) scale(1.2);
        opacity: 0.7;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) translateX(100px) scale(0.5);
        opacity: 0;
    }
}

@keyframes float-reverse {
    0% {
        transform: translateY(100vh) translateX(0) scale(0.5);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    50% {
        transform: translateY(-50vh) translateX(-50px) scale(1.2);
        opacity: 0.7;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) translateX(-100px) scale(0.5);
        opacity: 0;
    }
}

/* Hero Section */
.hero-section {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 20px 0;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Profile Container */
.profile-container {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

/* Name & Title */
.name-title {
    margin-bottom: 3rem;
}

.name {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow:
        0 0 20px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.title {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1rem;
    color: #b8b8b8;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Bio Section */
.bio-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(10, 10, 10, 0.4);
    border: none;
    border-radius: 0;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.bio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(212, 175, 55, 0.5),
            rgba(139, 0, 0, 0.5),
            transparent);
    opacity: 0.6;
}

.bio-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(139, 0, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.bio-section:hover {
    background: rgba(10, 10, 10, 0.5);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 60px rgba(212, 175, 55, 0.1);
}

.bio-text {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b8b8b8;
    text-align: left;
}

.bio-text p {
    margin-bottom: 1.5rem;
}

.bio-text .highlight {
    color: #d4af37;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    padding: 0 20px 4rem;
    background: transparent;
    position: relative;
    margin-top: 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 0;
    margin-top: 0;
    padding-top: 1.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(10, 10, 10, 0.4);
    border: none;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(212, 175, 55, 0.5),
            rgba(139, 0, 0, 0.5),
            transparent);
    opacity: 0.6;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    background: rgba(10, 10, 10, 0.5);
    transform: translateY(-5px);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 60px rgba(212, 175, 55, 0.15);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-number,
.stat-label {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow:
        0 0 20px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #b8b8b8;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up-delay-1 {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.fade-in-up-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.fade-in-up-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .name {
        font-size: 3rem;
    }

    .title {
        font-size: 1.2rem;
    }

    .bio-section {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}