:root {
    /* Colors */
    --primary-color: #FFD700;  /* Yellow gold */
    --primary-hover: #FFCC00;
    --primary-dark: #FFB700;
    --dark-color: #111;
    --dark-secondary: #1a1a1a;
    --gray-dark: #222;
    --gray-medium: #444;
    --gray-light: #888;
    --light-color: #fff;
    --text-primary: #f5f5f5;
    --text-secondary: #d0d0d0;
    --danger: #ff4a4a;
    --success: #4caf50;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-display: 'Anton', sans-serif;
    --font-size-xs: 0.75rem;   /* 12px */
    --font-size-sm: 0.875rem;  /* 14px */
    --font-size-md: 1rem;      /* 16px */
    --font-size-lg: 1.125rem;  /* 18px */
    --font-size-xl: 1.25rem;   /* 20px */
    --font-size-2xl: 1.5rem;   /* 24px */
    --font-size-3xl: 1.875rem; /* 30px */
    --font-size-4xl: 2.25rem;  /* 36px */
    --font-size-5xl: 3rem;     /* 48px */
    --font-size-6xl: 3.75rem;  /* 60px */
    --font-size-7xl: 4.5rem;   /* 72px */
    
    /* Spacing */
    --spacing-xs: 0.25rem;     /* 4px */
    --spacing-sm: 0.5rem;      /* 8px */
    --spacing-md: 1rem;        /* 16px */
    --spacing-lg: 1.5rem;      /* 24px */
    --spacing-xl: 2rem;        /* 32px */
    --spacing-2xl: 3rem;       /* 48px */
    --spacing-3xl: 4rem;       /* 64px */
    --spacing-4xl: 6rem;       /* 96px */
    
    /* Borders */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-2xl: 24px;
    --border-radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-yellow: 0 0 15px rgba(255, 215, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-indices */
    --z-negative: -1;
    --z-elevate: 1;
    --z-dropdown: 10;
    --z-sticky: 100;
    --z-drawer: 200;
    --z-modal: 300;
    --z-overlay: 400;
    --z-toast: 500;
    --z-tooltip: 600;
}

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

body {
    font-family: var(--font-primary);
    background: url('assets/images/backgrounds/black-gold-background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Section Filter Overlays */
.section-filter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.5s ease;
}

/* Different filter styles for each section */
.hero .section-filter-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    opacity: 0;
}

.portfolio .section-filter-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    backdrop-filter: brightness(0.8) contrast(1.3) saturate(1.2);
    -webkit-backdrop-filter: brightness(0.8) contrast(1.3) saturate(1.2);
    box-shadow: inset 0 0 30px rgba(255, 215, 0, 0.1);
}

.social-impact .section-filter-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    backdrop-filter: brightness(0.85) contrast(1.2) saturate(1.1);
    -webkit-backdrop-filter: brightness(0.85) contrast(1.2) saturate(1.1);
    box-shadow: inset 0 0 25px rgba(255, 215, 0, 0.08);
}

.experience .section-filter-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.75));
    backdrop-filter: brightness(0.82) contrast(1.25) saturate(1.15);
    -webkit-backdrop-filter: brightness(0.82) contrast(1.25) saturate(1.15);
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.07);
}

.skills .section-filter-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.65));
    backdrop-filter: brightness(0.88) contrast(1.15) saturate(1.05);
    -webkit-backdrop-filter: brightness(0.88) contrast(1.15) saturate(1.05);
    box-shadow: inset 0 0 15px rgba(255, 215, 0, 0.06);
}

.contact .section-filter-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    backdrop-filter: brightness(0.9) contrast(1.1) saturate(1.05);
    -webkit-backdrop-filter: brightness(0.9) contrast(1.1) saturate(1.05);
    box-shadow: inset 0 0 10px rgba(255, 215, 0, 0.05);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--primary-hover);
}

ul {
    padding-left: var(--spacing-xl);
}

button, .btn {
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    font-size: var(--font-size-sm);
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.btn.primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.slide-up {
    animation: slideUp 0.7s ease-in-out;
}

.slide-in-left {
    animation: slideInLeft 0.7s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 0.7s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInLeft {
    from { transform: translateX(-40px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(40px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* New fade-in-up animation */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-sm) 0;
    z-index: var(--z-sticky);
    transition: all var(--transition-normal);
    background-color: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.logo {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: var(--spacing-lg);
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding: var(--spacing-xs) var(--spacing-sm);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 80%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--light-color);
    margin: 5px 0;
    transition: var(--transition-normal);
}

/* Main Content Sections */
main {
    padding-top: 60px;
}

section {
    padding: var(--spacing-4xl) 0;
    position: relative;
    overflow: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.diagonal-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.05;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        45deg,
        var(--light-color),
        var(--light-color) 1px,
        transparent 1px,
        transparent 30px
    );
}

.stage-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.15;
    animation: pulsate 5s ease-in-out infinite alternate;
}

.stage-light.yellow {
    background-color: var(--primary-color);
    width: 400px;
    height: 400px;
}

.stage-light.red {
    background-color: #ff4747;
    width: 350px;
    height: 350px;
}

.stage-light.white {
    background-color: #ffffff;
    width: 300px;
    height: 300px;
}

@keyframes pulsate {
    0% {
        opacity: 0.15;
        transform: scale(1);
    }
    100% {
        opacity: 0.18;
        transform: scale(1.05);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero .stage-light.yellow {
    top: 10%;
    left: -150px;
}

.hero .stage-light.red {
    bottom: -100px;
    right: -80px;
}

.hero .stage-light.white {
    bottom: 30%;
    left: 60%;
}

/* Spotlight effect */
.spotlight-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(255, 215, 0, 0.05) 0%,
        transparent 70%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    position: relative;
    z-index: 3;
}

.profile-img-container {
    width: 180px;
    height: 180px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-yellow);
    border: 3px solid var(--primary-color);
    position: relative;
    z-index: 2;
}

.profile-img-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--primary-color);
    z-index: -1;
    border-radius: var(--border-radius-md);
    opacity: 0.2;
    filter: blur(15px);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        opacity: 0.2;
        filter: blur(15px);
    }
    100% {
        opacity: 0.4;
        filter: blur(20px);
    }
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-size: var(--font-size-6xl);
    margin-bottom: var(--spacing-lg);
    color: var(--light-color);
    font-weight: 800;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-family: var(--font-heading);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.name::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -10px;
    right: -10px;
    height: 15px;
    background: var(--primary-color);
    z-index: -1;
    opacity: 0.6;
}

/* Tagline - Stage-lit effect */
.tagline {
    font-size: 38px; /* Between 32-40px as requested */
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px; /* Tight letter spacing */
    font-family: var(--font-heading);
    position: relative;
    z-index: 3;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    margin: var(--spacing-xl) 0;
    text-transform: uppercase;
    text-align: center;
}

/* Tagline spotlight effect */
.tagline::before {
    content: '';
    position: absolute;
    width: 300%;
    height: 300%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle at center,
        rgba(255, 215, 0, 0.12) 0%,
        rgba(255, 215, 0, 0.05) 30%,
        transparent 70%
    );
    z-index: -1;
    border-radius: 50%;
}

.profile-text {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.7;
    text-align: center;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.cta-buttons .btn {
    min-width: 150px;
}

/* Section Title */
.section-title {
    font-size: var(--font-size-4xl);
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

.subsection-title {
    font-size: var(--font-size-2xl);
    color: var(--light-color);
    margin: 0 auto var(--spacing-xl);
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

/* About Section */
.about {
    position: relative;
    background-color: var(--dark-secondary);
}

.about .stage-light.yellow {
    top: 60%;
    left: -120px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
}

.about-text p {
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    line-height: 1.8;
}

/* Portfolio Section */
.portfolio {
    position: relative;
}

.portfolio .stage-light.yellow {
    top: 20%;
    right: -150px;
}

.portfolio .stage-light.red {
    bottom: 30%;
    left: -120px;
}

/* Videos Grid */
.videos-container,
.photos-container {
    margin-bottom: var(--spacing-3xl);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.video-card {
    background-color: var(--gray-dark);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.video-thumbnail {
    height: 180px;
    background-color: var(--gray-medium);
    position: relative;
    overflow: hidden;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    z-index: 1;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: var(--font-size-xl);
    z-index: 2;
    opacity: 0.8;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.video-card:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    z-index: 2;
}

.video-info h4 {
    color: var(--light-color);
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    line-height: 1.3;
}

.video-stats {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.video-caption {
    padding: var(--spacing-md);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.video-link {
    display: block;
    padding: var(--spacing-md);
    text-align: center;
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    font-weight: 600;
    background-color: rgba(255, 215, 0, 0.1);
    transition: all var(--transition-normal);
    margin-top: auto;
}

.video-link:hover {
    background-color: rgba(255, 215, 0, 0.2);
    color: var(--primary-hover);
}

.video-link i {
    margin-right: var(--spacing-xs);
}

/* Photos Grid */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: var(--spacing-md);
}

.photo-item {
    position: relative;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.photo-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Create staggered layout with different heights */
.photo-item:nth-child(3n+1) {
    grid-row: span 2;
}

.photo-item:nth-child(3n+2) {
    grid-row: span 1;
}

.photo-item:nth-child(3n+3) {
    grid-row: span 1;
}

.photo-item:nth-child(6n+4) {
    grid-row: span 1;
}

.photo-item:nth-child(6n+5) {
    grid-row: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-normal);
}

.photo-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Social Media Impact Section */
.social-impact {
    position: relative;
    background-color: var(--dark-secondary);
}

.social-impact .stage-light.yellow {
    bottom: 10%;
    right: -120px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.stat-card {
    background-color: var(--gray-dark);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 1;
}

.stat-card.tiktok::before {
    background-color: #ff0050;
}

.stat-card.weibo::before {
    background-color: #ff763b;
}

.stat-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    gap: var(--spacing-sm);
}

.stat-header i {
    font-size: var(--font-size-2xl);
    color: var(--light-color);
}

.stat-header h3 {
    font-size: var(--font-size-xl);
    color: var(--light-color);
    margin: 0;
    font-weight: 600;
}

.stat-numbers {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-badge {
    display: inline-block;
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impact-text p {
    color: var(--text-secondary);
    font-size: var(--font-size-md);
}

/* Experience Section */
.experience {
    position: relative;
}

.experience .stage-light.yellow {
    top: 30%;
    right: -150px;
}

/* Vertical Timeline Layout */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 120px;
    width: 2px;
    background-color: var(--gray-medium);
    z-index: 1;
}

.timeline-item {
    position: relative;
    padding-bottom: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    left: 0;
    width: 100px;
    text-align: right;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 300;
    padding-right: var(--spacing-lg);
    line-height: 1.6;
}

.timeline-content {
    margin-left: 160px;
    background-color: var(--gray-dark);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -8px;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
}

.job-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-md);
    line-height: 1.6;
}

.experience-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.experience-list li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--spacing-xl);
    font-size: var(--font-size-md);
    line-height: 1.6;
}

.experience-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Skills Section */
.skills {
    position: relative;
    background-color: var(--dark-secondary);
}

.skills .stage-light.yellow {
    bottom: 20%;
    left: -150px;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.skill-category {
    margin: 0 auto var(--spacing-xl);
}

.skill-category-title {
    font-size: var(--font-size-xl);
    color: var(--light-color);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-xs);
}

.skill-category-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.skill-item {
    background-color: var(--gray-dark);
    color: var(--text-secondary);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    transition: all var(--transition-normal);
}

.skill-item:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    position: relative;
}

.contact .stage-light.yellow {
    top: 40%;
    right: -150px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-card {
    background-color: var(--gray-dark);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-methods {
    margin: 0 auto var(--spacing-xl);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.contact-icon {
    margin-right: var(--spacing-md);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: var(--font-size-lg);
}

.contact-details h4 {
    font-size: var(--font-size-md);
    color: var(--light-color);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.contact-details p,
.contact-details a {
    color: var(--text-secondary);
    font-size: var(--font-size-md);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--gray-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: var(--font-size-md);
    transition: all var(--transition-normal);
    margin: var(--spacing-sm);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.resume-note {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    font-style: italic;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-container {
    background-color: var(--gray-dark);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--light-color);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: var(--spacing-md);
    background-color: var(--dark-secondary);
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius-md);
    color: var(--light-color);
    font-family: var(--font-primary);
    font-size: var(--font-size-md);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
    margin-bottom: var(--spacing-lg);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.form-control::placeholder {
    color: var(--gray-light);
    opacity: 0.7;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
    border-radius: var(--border-radius-md);
}

.form-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: var(--font-size-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-submit:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background-color: var(--dark-secondary);
    padding: var(--spacing-xl) 0;
    text-align: center;
    border-top: 1px solid var(--gray-dark);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.copyright {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero-content {
        padding: 0 var(--spacing-lg);
    }
    
    .name {
        font-size: var(--font-size-5xl);
    }
    
    .tagline {
        font-size: 34px;
    }
    
    .profile-text {
        font-size: var(--font-size-md);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(17, 17, 17, 0.95);
        flex-direction: column;
        align-items: center;
        padding: var(--spacing-lg) 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all var(--transition-normal);
        backdrop-filter: blur(10px);
        z-index: var(--z-dropdown);
        pointer-events: none;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-links li {
        margin: var(--spacing-sm) 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .name {
        font-size: var(--font-size-4xl);
    }
    
    .tagline {
        font-size: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .profile-img-container {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-title::after {
        width: 40px;
    }
    
    .subsection-title {
        font-size: var(--font-size-xl);
    }
    
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .skills-container {
        grid-template-columns: 1fr;
    }
    
    .experience-cards {
        grid-template-columns: 1fr;
    }
    
    .name {
        font-size: var(--font-size-3xl);
    }
    
    .tagline {
        font-size: 28px;
    }
    
    .profile-text {
        font-size: var(--font-size-sm);
    }
}

.video-link {
    display: block;
    padding: var(--spacing-md);
    text-align: center;
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    font-weight: 600;
    background-color: rgba(255, 215, 0, 0.1);
    transition: all var(--transition-normal);
    margin-top: auto;
}

.video-link:hover {
    background-color: rgba(255, 215, 0, 0.2);
    color: var(--primary-hover);
}

.video-link i {
    margin-right: var(--spacing-xs);
}
/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: var(--z-modal);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    padding-top: 60px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: block;
    opacity: 1;
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: var(--light-color);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: var(--z-modal);
    transition: color var(--transition-normal);
}

.close-lightbox:hover {
    color: var(--primary-color);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    animation: zoom 0.6s;
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--text-primary);
    padding: 10px 0;
    height: 150px;
}

@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

/* Responsive adjustments for smaller screens */
@media only screen and (max-width: 768px) {
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
}

/* Comparison Charts Styling */
.comparison-container {
    margin-top: 3rem;
}

.comparison-charts {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.chart-container {
    flex: 1;
    min-width: 300px;
    background-color: var(--dark-secondary);
    padding: 1.5rem;
    border-radius: 8px;
}

.chart-container h4 {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
}

.chart {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 100%;
    gap: 2rem;
}

.chart-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.chart-label {
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.chart-bar {
    width: 60px;
    background-color: #444;
    position: relative;
    border-radius: 4px 4px 0 0;
    transition: all 0.5s ease;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.chart-bar.my-content {
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.chart-bar.similar-creators {
    background-color: #555;
}

.chart-value {
    font-weight: bold;
    font-size: 1rem;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.my-content-color {
    background-color: var(--primary-color);
}

.similar-creators-color {
    background-color: #555;
}

/* Performance Comparison Charts */
.charts-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    margin-top: 2rem;
    gap: 4rem;
}

.chart {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.chart-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.chart-bars {
    display: flex;
    justify-content: center;
    gap: 2rem;
    height: 200px;
    align-items: flex-end;
}

.chart-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.chart-label {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.chart-bar {
    width: 60px;
    position: relative;
    border-radius: 4px 4px 0 0;
    transition: all 0.5s ease;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0.5rem;
}

.chart-bar.my-content {
    background-color: gold;
    color: #000;
}

.chart-bar.similar-creators {
    background-color: #666;
    color: #fff;
}

.chart-value {
    font-weight: bold;
    font-size: 0.9rem;
}

/* Additional chart styling */
.comparison-container {
    margin-top: 4rem;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.subsection-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    color: #fff;
}

.charts-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 4rem;
}

.chart-bar.my-content {
    background: linear-gradient(to top, #d4af37, #fbdf93);
    color: #000;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.chart-bar.similar-creators {
    background: linear-gradient(to top, #555, #999);
    color: #fff;
}

.chart-bar {
    transition: transform 0.3s ease;
}

.chart-bar:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .charts-container {
        flex-direction: column;
        align-items: center;
    }
    
    .chart {
        max-width: 100%;
        margin-bottom: 2rem;
    }
}
