:root {
    --gold: #D4A843;
    --gold-light: #F0D78C;
    --gold-dark: #A07C28;
    --silver: #C0C0C0;
    --black: #0A0A0A;
    --dark: #111111;
    --darker: #080808;
    --white: #FFFFFF;
    --gray: #888888;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }

/* PRELOADER */
.preloader { position: fixed; inset: 0; background: var(--black); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity .6s, visibility .6s; }
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-text { font-family: 'Orbitron', sans-serif; font-size: 3rem; font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--silver)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.05); } }

/* NAV */
nav { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 1.2rem 5%; display: flex; justify-content: space-between; align-items: center; transition: all .4s; }
nav.scrolled { background: rgba(10, 10, 10, .95); backdrop-filter: blur(20px); padding: .8rem 5%; box-shadow: 0 2px 30px rgba(212, 168, 67, .1); }
.nav-logo { font-family: 'Orbitron', sans-serif; font-size: 1.8rem; font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-decoration: none; display: flex; align-items: center; }
.nav-logo-img { height: 45px; width: auto; filter: drop-shadow(0 0 10px rgba(212, 168, 67, .3)); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--white); text-decoration: none; font-size: .9rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; position: relative; transition: color .3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width .3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span { width: 28px; height: 2px; background: var(--gold); transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* HERO */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(212, 168, 67, .08) 0%, transparent 50%), radial-gradient(ellipse at 80% 50%, rgba(192, 192, 192, .05) 0%, transparent 50%), var(--black); }
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle { position: absolute; width: 3px; height: 3px; background: var(--gold); border-radius: 50%; animation: float linear infinite; opacity: .4; }
@keyframes float { 0% { transform: translateY(100vh) rotate(0); opacity: 0; } 10% { opacity: .4; } 90% { opacity: .4; } 100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; } }
.hero-content { z-index: 2; padding: 0 5%; text-align: left; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.hero-logo-container { margin-bottom: 2rem; display: inline-block; }
.hero-logo-img { height: 160px; width: auto; filter: drop-shadow(0 0 40px rgba(212, 168, 67, .3)); animation: logoFloat 4s ease-in-out infinite; }
@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.hero-tagline { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 300; color: var(--silver); letter-spacing: 8px; text-transform: uppercase; margin-bottom: 1rem; opacity: 0; animation: fadeInUp 1s ease forwards .5s; }
.hero-title { font-family: 'Orbitron', sans-serif; font-size: 5rem; font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--white), var(--silver)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.1; margin-bottom: 1.5rem; opacity: 0; animation: fadeInUp 1s ease forwards .7s; }
.hero-subtitle { font-size: 1.1rem; color: var(--gray); max-width: 500px; margin: 0 0 2.5rem 0; line-height: 1.7; opacity: 0; animation: fadeInUp 1s ease forwards .9s; }
.hero-buttons { display: flex; gap: 1.5rem; justify-content: flex-start; opacity: 0; animation: fadeInUp 1s ease forwards 1.1s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.scroll-indicator { display: none; }
.scroll-indicator span { font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(.5); opacity: .3; } }

/* BUTTONS */
.btn-primary { padding: 1rem 2.5rem; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--black); border: none; font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; position: relative; overflow: hidden; transition: all .3s; text-decoration: none; display: inline-block; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--gold-light), var(--gold)); opacity: 0; transition: opacity .3s; }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(212, 168, 67, .3); }
.btn-outline { padding: 1rem 2.5rem; background: transparent; color: var(--gold); border: 2px solid var(--gold); font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all .3s; text-decoration: none; display: inline-block; }
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); box-shadow: 0 10px 40px rgba(212, 168, 67, .2); }

/* WAVE DIVIDER */
.wave-divider { display: flex; justify-content: center; align-items: center; gap: 4px; padding: 2rem 0; }
.wave-bar { width: 3px; background: var(--gold); border-radius: 3px; animation: waveAnim 1.2s ease-in-out infinite; }
@keyframes waveAnim { 0%, 100% { height: 10px; opacity: .3; } 50% { height: 30px; opacity: 1; } }

/* SECTIONS */
.page-hero { padding: 8rem 5% 4rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(212, 168, 67, .06) 0%, transparent 60%); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; margin-bottom: 1rem; position: relative; }
.page-hero p { color: var(--gray); max-width: 600px; margin: 0 auto; line-height: 1.8; position: relative; }
section { padding: 6rem 5%; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label { font-family: 'Orbitron', sans-serif; font-size: .8rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; margin-bottom: 1rem; }
.section-line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 0 auto 1.5rem; }
.section-desc { color: var(--gray); max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* ABOUT */
.about { background: var(--darker); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 4px; filter: grayscale(20%); transition: all .5s; }
.about-image:hover img { filter: grayscale(0); transform: scale(1.02); }
.about-image::before { content: ''; position: absolute; top: -15px; left: -15px; width: 100px; height: 100px; border-top: 3px solid var(--gold); border-left: 3px solid var(--gold); z-index: -1; }
.about-image::after { content: ''; position: absolute; bottom: -15px; right: -15px; width: 100px; height: 100px; border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold); z-index: -1; }
.about-text h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 1.5rem; line-height: 1.3; }
.about-text h3 span { color: var(--gold); }
.about-text p { color: var(--gray); line-height: 1.9; margin-bottom: 1.5rem; }
.about-stats { display: flex; gap: 3rem; margin-top: 2rem; }
.stat { text-align: center; }
.stat-number { font-family: 'Orbitron', sans-serif; font-size: 2.5rem; font-weight: 900; color: var(--gold); display: block; }
.stat-label { font-size: .8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 2px; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.service-card { background: linear-gradient(145deg, rgba(20, 20, 20, .8), rgba(10, 10, 10, .9)); border: 1px solid rgba(212, 168, 67, .1); padding: 3rem 2rem; text-align: center; transition: all .5s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transition: transform .5s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-10px); border-color: rgba(212, 168, 67, .3); box-shadow: 0 20px 60px rgba(212, 168, 67, .1); }
.service-icon { font-size: 3rem; color: var(--gold); margin-bottom: 1.5rem; transition: transform .5s; }
.service-card:hover .service-icon { transform: scale(1.15); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1rem; }
.service-card p { color: var(--gray); font-size: .95rem; line-height: 1.7; }

/* GALLERY */
.gallery { background: var(--darker); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: all .6s; }
.gallery-item:hover img { transform: scale(1.1); filter: brightness(.6); }
.gallery-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: all .4s; background: rgba(10, 10, 10, .7); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--gold); margin-bottom: .5rem; }
.gallery-overlay span { font-size: .85rem; letter-spacing: 3px; text-transform: uppercase; color: var(--white); }

/* MUSIC PLAYER */
.player-section { background: linear-gradient(180deg, var(--black), var(--darker)); }
.player-container { max-width: 800px; margin: 0 auto; background: linear-gradient(145deg, rgba(20, 20, 20, .9), rgba(15, 15, 15, .95)); border: 1px solid rgba(212, 168, 67, .15); padding: 3rem; position: relative; }
.player-container::before { content: ''; position: absolute; inset: -1px; background: linear-gradient(135deg, var(--gold), transparent, var(--silver)); z-index: -1; opacity: .1; }
.player-top { display: flex; gap: 2rem; align-items: center; margin-bottom: 2rem; }
.player-cover { width: 120px; height: 120px; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; overflow: hidden; }
.player-cover::after { content: ''; position: absolute; width: 30px; height: 30px; background: var(--black); border-radius: 50%; }
.player-cover i { font-size: 2.5rem; color: var(--black); z-index: 1; }
.player-info h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: .3rem; }
.player-info p { color: var(--gold); font-size: .9rem; letter-spacing: 2px; }
.player-track-list { list-style: none; }
.player-track { display: flex; align-items: center; padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255, 255, 255, .05); cursor: pointer; transition: all .3s; }
.player-track:hover { background: rgba(212, 168, 67, .05); }
.player-track.active { background: rgba(212, 168, 67, .1); border-left: 3px solid var(--gold); }
.track-num { font-family: 'Orbitron', sans-serif; font-size: .8rem; color: var(--gray); width: 30px; }
.track-name { flex: 1; font-weight: 500; }
.track-duration { color: var(--gray); font-size: .85rem; }
.track-play { color: var(--gold); margin-left: 1rem; opacity: 0; transition: opacity .3s; }
.player-track:hover .track-play { opacity: 1; }
.player-controls { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-top: 2rem; }
.player-controls i { font-size: 1.3rem; color: var(--gray); cursor: pointer; transition: color .3s; }
.player-controls i:hover { color: var(--gold); }
.play-btn { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .3s; }
.play-btn i { color: var(--black) !important; font-size: 1.5rem !important; }
.play-btn:hover { transform: scale(1.1); box-shadow: 0 0 30px rgba(212, 168, 67, .4); }
.progress-bar { width: 100%; height: 4px; background: rgba(255, 255, 255, .1); border-radius: 4px; margin-top: 2rem; overflow: hidden; cursor: pointer; }
.progress-fill { width: 35%; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 4px; transition: width .3s; }

/* TESTIMONIALS */
.testimonials { background: var(--darker); }
.testimonial-slider { max-width: 700px; margin: 0 auto; text-align: center; position: relative; }
.testimonial-item { display: none; }
.testimonial-item.active { display: block; animation: fadeIn .5s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.testimonial-quote { font-size: 4rem; color: var(--gold); opacity: .3; font-family: 'Playfair Display', serif; line-height: 1; }
.testimonial-text { font-size: 1.15rem; line-height: 1.9; color: var(--silver); font-style: italic; margin: 1rem 0 2rem; }
.testimonial-author { font-weight: 700; color: var(--gold); font-size: 1rem; }
.testimonial-role { color: var(--gray); font-size: .85rem; margin-top: .3rem; }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 2rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .2); cursor: pointer; transition: all .3s; }
.dot.active { background: var(--gold); transform: scale(1.2); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 1.5rem; }
.gold-text { color: var(--gold); }
.contact-info p { color: var(--gray); line-height: 1.8; margin-bottom: 2rem; }
.contact-details { list-style: none; }
.contact-details li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; color: var(--gray); }
.contact-details i { color: var(--gold); font-size: 1.1rem; width: 20px; text-align: center; }
.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-links a { width: 45px; height: 45px; border: 1px solid rgba(212, 168, 67, .3); display: flex; align-items: center; justify-content: center; color: var(--gold); text-decoration: none; transition: all .3s; font-size: 1.1rem; }
.social-links a:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group input, .form-group textarea { width: 100%; padding: 1rem 1.5rem; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); color: var(--white); font-family: 'Inter', sans-serif; font-size: .95rem; transition: border-color .3s; outline: none; resize: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray); }

/* TEAM / FOUNDER */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; }
.team-card { text-align: center; }
.team-card img { width: 280px; height: 280px; object-fit: cover; border-radius: 50%; border: 3px solid var(--gold); margin-bottom: 1.5rem; transition: all .5s; filter: grayscale(20%); }
.team-card:hover img { filter: grayscale(0); transform: scale(1.05); box-shadow: 0 0 40px rgba(212, 168, 67, .2); }
.team-card h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: .3rem; }
.team-card .team-role { color: var(--gold); font-size: .85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.team-card p { color: var(--gray); line-height: 1.8; max-width: 450px; margin: 0 auto; }

/* PODCAST PLAYER */
.podcast-hero { background: linear-gradient(135deg, var(--darker), var(--black)); }
.podcast-embed { max-width: 800px; margin: 0 auto; }

/* PLATFORMS */
.platforms-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.platform-card { background: linear-gradient(145deg, rgba(20, 20, 20, .8), rgba(10, 10, 10, .9)); border: 1px solid rgba(212, 168, 67, .1); padding: 2rem 1rem; text-align: center; transition: all .5s; text-decoration: none; color: var(--white); display: block; }
.platform-card:hover { transform: translateY(-8px); border-color: rgba(212, 168, 67, .3); box-shadow: 0 15px 40px rgba(212, 168, 67, .1); }
.platform-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.platform-card span { font-size: .85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* QUOTE BLOCK */
.quote-block { background: linear-gradient(135deg, rgba(212, 168, 67, .05), rgba(212, 168, 67, .02)); border-left: 4px solid var(--gold); padding: 3rem; max-width: 800px; margin: 3rem auto; position: relative; }
.quote-block::before { content: '\201C'; font-size: 6rem; color: var(--gold); opacity: .15; position: absolute; top: -10px; left: 20px; font-family: 'Playfair Display', serif; }
.quote-block p { font-size: 1.2rem; line-height: 2; color: var(--silver); font-style: italic; position: relative; z-index: 1; }
.quote-block .quote-author { color: var(--gold); font-weight: 700; font-style: normal; margin-top: 1rem; display: block; font-size: 1rem; }
.quote-block .quote-role { color: var(--gray); font-style: normal; font-size: .85rem; }

/* FOOTER */
footer { background: var(--darker); padding: 3rem 5%; text-align: center; border-top: 1px solid rgba(212, 168, 67, .1); }
.footer-logo { font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: .5rem; }
.footer-tagline { color: var(--gray); font-size: .9rem; letter-spacing: 3px; text-transform: uppercase; }
.footer-line { width: 40px; height: 2px; background: var(--gold); margin: 1.5rem auto; }
.footer-copy { color: var(--gray); font-size: .8rem; }

/* RESPONSIVE */
@media(max-width: 968px) {
    .nav-links { position: fixed; top: 0; right: -100%; width: 70%; height: 100vh; background: rgba(10, 10, 10, .98); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; transition: right .4s; }
    .nav-links.active { right: 0; }
    .hamburger { display: flex; z-index: 1001; }
    .hero-title { font-size: 3rem; }
    .hero-logo-img { height: 120px; }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2.2rem; }
    .page-hero h1 { font-size: 2.5rem; }
}
@media(max-width: 600px) {
    .hero-title { font-size: 2.2rem; }
    .hero-tagline { font-size: 1rem; letter-spacing: 4px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; gap: 1.5rem; }
    .player-top { flex-direction: column; text-align: center; }
    .page-hero h1 { font-size: 2rem; }
}
