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

html {
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

:root {
    --black: #000000;
    --dark-gray: #0a0a0a;
    --gold: #d4af37;
    --gold-light: #f4e4bc;
    --gold-dark: #b8941f;
    --text-gray: #cccccc;
    --text-light: #e5e5e5;
}

body {
    font-family: 'Crimson Text', serif;
    background-color: var(--black);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    font-weight: 400;
    width: 100%;
    height: auto;
    min-height: 100vh;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

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

/* Background Icons */
.bg-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
}

.bg-icon {
    position: absolute;
    stroke: var(--gold);
    stroke-width: 1.5;
    width: 200px;
    height: 200px;
    animation: float 20s ease-in-out infinite;
}

.mic-icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.mic-icon-2 {
    top: 60%;
    right: 8%;
    animation-delay: 5s;
    width: 150px;
    height: 150px;
}

.mic-icon-3 {
    bottom: 15%;
    left: 12%;
    animation-delay: 10s;
    width: 180px;
    height: 180px;
}

.stage-icon-1 {
    top: 30%;
    right: 15%;
    animation-delay: 7s;
    width: 220px;
    height: 220px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* Page Container */
.page-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px 40px 30px;
    width: 100%;
    box-sizing: border-box;
}

/* Section 1: Header with Title and Description */
.header-section {
    margin-bottom: 10px;
    padding: 60px 0 40px 0;
    text-align: center;
}

.header-section .header-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.portrait-wrapper {
    flex-shrink: 0;
}

.portrait-frame {
    position: relative;
    width: 280px;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}


.portrait-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portrait-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%) contrast(1.1) brightness(0.9);
}

.portrait-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.header-text {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    font-family: 'Cormorant', serif;
    font-size: 5.5rem;
    font-weight: 500;
    letter-spacing: 16px;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    line-height: 1.1;
    opacity: 0;
    animation: fadeInDown 1s ease-out 0.5s forwards;
    font-style: normal;
    text-align: center;
    width: 100%;
    display: block;
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    letter-spacing: 10px;
    color: var(--text-gray);
    font-weight: 300;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
    text-transform: uppercase;
    opacity: 0;
    font-style: italic;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
    display: block;
}

.description {
    font-family: 'Crimson Text', serif;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-gray);
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
    max-width: 600px;
    margin: 20px auto 0;
    text-align: center;
    width: 100%;
    display: block;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Glossy Box Effect */
.glossy-box {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInBox 0.8s ease-out forwards;
    animation-delay: calc(var(--box-index, 0) * 0.4s + 2s);
}

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

/* Construction Canvas */
.construction-canvas {
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.widget-particle-canvas {
    opacity: 1;
    transition: opacity 0.5s ease-out;
}



/* Section Titles */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 30px;
    letter-spacing: 4px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 400;
    opacity: 0;
    font-style: italic;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

/* Section 2: Featured Video */
.featured-video {
    margin: 10px 0 60px 0;
    padding: 0;
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (max-width: 768px) {
}

.video-hero {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.video-container-hero {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 
        0 0 80px rgba(212, 175, 55, 0.25),
        0 0 160px rgba(212, 175, 55, 0.15),
        inset 0 0 60px rgba(212, 175, 55, 0.08);
    transition: all 0.8s ease-out;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Video Watermark */
.video-watermark {
    position: absolute;
    bottom: 80px;
    right: 20px;
    z-index: 20;
    color: rgba(212, 175, 55, 0.3);
    font-family: 'Crimson Text', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    pointer-events: none;
    user-select: none;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .video-watermark {
        bottom: 60px;
        right: 15px;
        font-size: 12px;
    }
}

/* Video Quality Selection Menu */
.video-quality-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 50;
    font-family: 'Crimson Text', serif;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.video-quality-menu.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.quality-menu-toggle {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: rgba(212, 175, 55, 0.9);
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Crimson Text', serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.quality-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.85);
    border-color: rgba(212, 175, 55, 0.7);
    color: rgba(212, 175, 55, 1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.quality-menu-toggle:active {
    transform: translateY(0);
}

.quality-menu-icon {
    font-size: 14px;
    line-height: 1;
}

.quality-menu-text {
    text-transform: uppercase;
}

.quality-menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.video-quality-menu.active .quality-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.quality-menu-header {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(212, 175, 55, 0.8);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.quality-menu-list {
    padding: 4px 0;
    max-height: 300px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.quality-menu-list::-webkit-scrollbar {
    display: none;
}

.quality-menu-item {
    padding: 10px 14px;
    color: rgba(212, 175, 55, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 3px solid transparent;
}

.quality-menu-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: rgba(212, 175, 55, 1);
    border-left-color: rgba(212, 175, 55, 0.5);
}

.quality-menu-item.active {
    background: rgba(212, 175, 55, 0.15);
    color: rgba(212, 175, 55, 1);
    border-left-color: rgba(212, 175, 55, 0.9);
    font-weight: 600;
}

.quality-menu-item-name {
    flex: 1;
}

.quality-menu-item-check {
    color: rgba(212, 175, 55, 0.9);
    font-size: 14px;
    margin-left: 8px;
}

.quality-menu-item.active .quality-menu-item-check {
    display: block;
}

.quality-menu-item:not(.active) .quality-menu-item-check {
    display: none;
}

@media (max-width: 768px) {
    .video-quality-menu {
        top: 10px;
        right: 10px;
    }
    
    .quality-menu-toggle {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .quality-menu-dropdown {
        min-width: 160px;
        max-height: 70vh;
        overflow: hidden;
    }
    
    .quality-menu-list {
        max-height: calc(70vh - 50px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .quality-menu-list::-webkit-scrollbar {
        display: none;
    }
    
    .quality-menu-dropdown {
        touch-action: none;
    }
    
    .quality-menu-item {
        padding: 8px 12px;
        font-size: 12px;
        touch-action: manipulation;
    }
}



.video-container-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--dark-gray);
    pointer-events: auto;
    opacity: 1 !important;
    transition: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
}

/* Video.js Player Customization */
.video-container-hero .video-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video-container-hero .video-js .vjs-tech {
    width: 100%;
    height: 100%;
    opacity: 1 !important;
    filter: none !important;
    object-fit: contain;
}

.video-container-hero .video-js .vjs-tech:hover {
    opacity: 1 !important;
    filter: none !important;
}

/* Video.js Controls Styling - Golden Theme */
.video-container-hero .video-js .vjs-control-bar {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    border: none;
    padding: 10px 20px;
    z-index: 10;
    height: 60px;
}

.video-container-hero .video-js .vjs-button {
    color: var(--gold) !important;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.2s ease;
    cursor: pointer;
    border-radius: 4px;
    margin: 0 4px;
}

.video-container-hero .video-js .vjs-button:hover {
    background: rgba(212, 175, 55, 0.4);
    color: var(--gold) !important;
    transform: scale(1.1);
}

.video-container-hero .video-js .vjs-button > .vjs-icon-placeholder:before {
    color: var(--gold) !important;
    font-size: 18px;
}

.video-container-hero .video-js .vjs-big-play-button {
    background: rgba(212, 175, 55, 0.9);
    border: 2px solid var(--gold);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    line-height: 80px;
    margin-top: -40px;
    margin-left: -40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide play button when video is playing (desktop) */
.video-container-hero .video-js.vjs-playing .vjs-big-play-button,
.video-container-hero .video-js.vjs-has-started .vjs-big-play-button {
    display: none !important;
}

.video-container-hero .video-js .vjs-big-play-button:before {
    color: var(--black);
    font-size: 40px;
    line-height: 1;
    display: block;
    position: relative;
    left: 2px; /* Slight adjustment for visual centering */
}

.video-container-hero .video-js .vjs-big-play-button:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.video-container-hero .video-js .vjs-big-play-button:hover:before {
    color: var(--black);
}

/* Progress Bar - Golden Theme */
.video-container-hero .video-js .vjs-progress-holder {
    background: rgba(255, 255, 255, 0.2);
    height: 4px;
    border-radius: 2px;
}

.video-container-hero .video-js .vjs-play-progress {
    background: var(--gold);
    height: 4px;
}

.video-container-hero .video-js .vjs-load-progress {
    background: rgba(212, 175, 55, 0.3);
}

.video-container-hero .video-js .vjs-volume-horizontal {
    width: 80px;
}

.video-container-hero .video-js .vjs-volume-level {
    background: var(--gold);
}

/* Time Display */
.video-container-hero .video-js .vjs-time-control {
    color: var(--gold);
    font-family: 'Crimson Text', serif;
    font-size: 14px;
}

/* Menu Styling */
.video-container-hero .video-js .vjs-menu-content {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
}

.video-container-hero .video-js .vjs-menu li.vjs-selected {
    background: rgba(212, 175, 55, 0.4);
    color: var(--gold);
}

.video-container-hero .video-js .vjs-menu li:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

/* Quality Selector */
.video-container-hero .video-js .vjs-menu-button-popup .vjs-menu {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.video-container-hero .video-js .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    background: transparent;
    border: none;
}

/* Discography Section */
.discography {
    margin-top: 80px;
}

.discography-box {
    padding: 50px 40px;
}

.songs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
}

.song-card {
    display: flex;
    align-items: center;
    padding: 22px 30px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}


.song-number {
    font-family: 'Cormorant', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-right: 30px;
    font-weight: 500;
    min-width: 50px;
    opacity: 0.85;
    letter-spacing: 3px;
}

.song-info {
    flex: 1;
}

.song-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0;
    font-style: italic;
}

.song-date {
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Crimson Text', serif;
}

/* Section 3: Footer with Credits */
.footer-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: none;
}

.credits {
    margin: 0 0 30px 0;
    text-align: center;
}

.credits-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.credits-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-gray);
    letter-spacing: 2px;
    font-weight: 300;
    font-style: italic;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.credits-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 8px;
    opacity: 0.7;
}

.credits-name {
    display: block;
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 3px;
    font-weight: 400;
    font-style: normal;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.credits-details {
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 3px;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.8s forwards;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--gold);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-link:hover .social-icon {
    color: var(--gold-light);
    opacity: 1;
    transform: scale(1.15);
}

.social-link:active .social-icon {
    transform: scale(0.95);
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Crimson Text', serif;
}

.language-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.15) 0%,
        rgba(212, 175, 55, 0.08) 100%
    );
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.language-toggle .language-flag[style*="display: none"],
.language-toggle .language-flag:empty {
    display: none !important;
    width: 0;
}

.language-toggle:hover {
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.25) 0%,
        rgba(212, 175, 55, 0.15) 100%
    );
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.language-flag {
    display: none !important;
}

.language-code {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(10, 10, 10, 0.98) 100%
    );
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.language-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.language-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-family: 'Crimson Text', serif;
    font-size: 14px;
}

.language-option:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

.language-option.active {
    background: rgba(212, 175, 55, 0.25);
    color: var(--gold);
    font-weight: 600;
}

.language-option .language-flag {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.language-option .language-flag {
    display: none !important;
}

.language-option .language-name {
    width: 100%;
    text-align: center;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    color: var(--text-gray);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
}

/* Animations */
@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);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .page-container {
        max-width: 1100px;
        padding: 40px 30px;
    }
}

@media (max-width: 968px) {
    .header-section {
        padding: 40px 0 30px 0;
        margin-bottom: 40px;
    }
    
    .logo {
        font-size: 4rem;
        letter-spacing: 10px;
    }
}

@media (max-width: 768px) {
    .language-selector {
        top: 15px;
        right: 15px;
    }
    
    .language-toggle {
        padding: 8px 12px;
    }
    
    .language-flag {
        font-size: 18px;
    }
    
    .language-code {
        font-size: 12px;
    }
    
    .language-menu {
        min-width: 160px;
    }
    
    .page-container {
        padding: 20px 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .logo {
        font-size: 3rem;
        letter-spacing: 6px;
    }

    .tagline {
        font-size: 0.95rem;
        letter-spacing: 6px;
    }

    .description {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .intro-title {
        font-size: 1.9rem;
    }

    .intro-text {
        font-size: 1rem;
    }
    
    .intro .glossy-box {
        padding: 40px 35px;
    }

    .section-title {
        font-size: 1.6rem;
    }
    
    .video-box {
        padding: 30px 25px;
    }
    
    .discography-box {
        padding: 40px 30px;
    }

    .song-card {
        padding: 20px 25px;
    }

    .song-title {
        font-size: 1.15rem;
    }
    
    .bg-icon {
        width: 120px;
        height: 120px;
    }
    
    /* Video responsive */
    .video-hero {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .header-section {
        padding: 30px 0 20px 0;
        margin-bottom: 30px;
    }
    
    .featured-video {
        margin: 40px 0;
    }
    
    .footer-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .video-container-hero .video-js .vjs-control-bar {
        padding: 8px 10px;
        height: 50px;
    }
    
    .video-container-hero .video-js .vjs-button {
        margin: 0 2px;
        padding: 5px;
    }
    
    .video-container-hero .video-js .vjs-big-play-button {
        width: 60px;
        height: 60px;
        margin-top: -30px;
        margin-left: -30px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }
    
    /* Hide play button when video is playing */
    .video-container-hero .video-js.vjs-playing .vjs-big-play-button,
    .video-container-hero .video-js.vjs-has-started .vjs-big-play-button {
        display: none !important;
    }
    
    .video-container-hero .video-js .vjs-big-play-button:before {
        font-size: 30px;
        line-height: 1;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, calc(-50% + 4px)); /* Slight adjustment down for visual centering */
        margin: 0;
        padding: 0;
    }
    
    .video-container-hero .video-js .vjs-time-control {
        font-size: 12px;
    }
    
    .credits-content {
        padding: 20px 15px;
    }
    
    .credits-text {
        font-size: 1rem;
    }
    
    .credits-details {
        font-size: 0.85rem;
    }
    
    .social-links {
        gap: 20px;
        margin-top: 20px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .logo {
        font-size: 1.75rem;
        letter-spacing: 2px;
    }
    
    .tagline {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
    
    .description {
        font-size: 0.85rem;
    }
    
    .video-container-hero .video-js .vjs-control-bar {
        height: 40px;
        padding: 4px 5px;
    }
    
    .video-container-hero .video-js .vjs-button {
        min-width: 28px;
        padding: 3px;
    }
    
    .video-container-hero .video-js .vjs-time-control {
        font-size: 10px;
        padding: 0 3px;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 15px 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .logo {
        font-size: 2rem;
        letter-spacing: 3px;
        line-height: 1.2;
    }
    
    .tagline {
        font-size: 0.85rem;
        letter-spacing: 4px;
    }
    
    .description {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 0 5px;
    }
    
    .portrait-frame {
        width: 200px;
        height: 270px;
        border-radius: 18px;
    }
    
    .intro .glossy-box,
    .video-box,
    .discography-box {
        padding: 30px 20px;
    }
    
    .glossy-box {
        border-radius: 16px;
    }
    
    .song-card {
        padding: 18px 20px;
        border-radius: 12px;
    }
    
    /* Video mobile optimizations */
    .video-hero {
        padding: 0 5px;
        width: 100%;
        max-width: 100%;
    }
    
    .video-container-hero {
        border-radius: 8px;
    }
    
    .header-section {
        padding: 20px 0 15px 0;
        margin-bottom: 20px;
    }
    
    .featured-video {
        margin: 30px 0;
    }
    
    .footer-section {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .video-container-hero .video-js .vjs-control-bar {
        padding: 5px 8px;
        height: 45px;
        font-size: 12px;
    }
    
    .video-container-hero .video-js .vjs-button {
        margin: 0 1px;
        padding: 4px;
        min-width: 32px;
    }
    
    .video-container-hero .video-js .vjs-button > .vjs-icon-placeholder:before {
        font-size: 14px;
    }
    
    .video-container-hero .video-js .vjs-big-play-button {
        width: 50px;
        height: 50px;
        margin-top: -25px;
        margin-left: -25px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        position: relative;
    }
    
    /* Hide play button when video is playing */
    .video-container-hero .video-js.vjs-playing .vjs-big-play-button,
    .video-container-hero .video-js.vjs-has-started .vjs-big-play-button {
        display: none !important;
    }
    
    .video-container-hero .video-js .vjs-big-play-button:before {
        font-size: 24px;
        line-height: 1;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, calc(-50% + 3px)); /* Slight adjustment down for visual centering */
        margin: 0;
        padding: 0;
    }
    
    .video-container-hero .video-js .vjs-time-control {
        font-size: 11px;
        padding: 0 5px;
    }
    
    .video-container-hero .video-js .vjs-volume-horizontal {
        width: 60px;
    }
    
    .credits-content {
        padding: 15px 10px;
    }
    
    .credits-text {
        font-size: 0.9rem;
    }
    
    .credits-name {
        font-size: 1.1rem;
    }
    
    .credits-details {
        font-size: 0.8rem;
    }
    
    .social-links {
        gap: 15px;
        margin-top: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
    }
    
    .footer {
        padding: 20px 10px;
        font-size: 0.85rem;
    }
    
    .bg-icon {
        width: 80px;
        height: 80px;
        opacity: 0.02;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

