* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--gold: #D4AF37;
--gold-light: #F4E8C1;
--gold-dark: #B8941F;
--navy: #1a1a2e;
--dark: #0f0f1e;
--darker: #0a0a15;
--white: #ffffff;
--gray: #8b8b8b;
--gray-light: #b8b8b8;
--phoenix-blue: #00BFFF;
--fuchsia: #FF69B4;
--neon-pink: #FF1493;
--neon-purple: #9400D3;
}
html { scroll-behavior: smooth; }
body {
font-family: 'Inter', sans-serif;
background: var(--darker);
color: var(--white);
overflow-x: hidden;
line-height: 1.6;
}
.language-selector {
position: fixed;
top: 22px;
right: 20px;
z-index: 1003;
display: flex;
gap: 5px;
}
.lang-btn {
background: var(--darker);
border: 1px solid rgba(212, 175, 55, 0.25);
color: var(--gray);
padding: 4px 8px;
font-size: 0.65rem;
cursor: pointer;
transition: all 0.3s;
font-weight: 600;
letter-spacing: 1px;
white-space: nowrap;
}
.lang-btn:hover, .lang-btn.active {
border-color: var(--gold);
color: var(--gold);
}
.loader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--darker);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}
.loader-content { text-align: center; }
.loader-circle {
width: 60px;
height: 60px;
border: 3px solid rgba(212, 175, 55, 0.2);
border-top-color: var(--gold);
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-text {
font-family: 'Cinzel', serif;
color: var(--gold);
letter-spacing: 4px;
font-size: 0.9rem;
}
nav {
position: fixed;
top: 0;
width: 100%;
padding: 30px 60px;
background: rgba(10, 10, 21, 0.95);
backdrop-filter: blur(20px);
z-index: 1000;
border-bottom: 1px solid rgba(212, 175, 55, 0.15);
transition: all 0.4s ease;
}
nav.scrolled {
padding: 20px 60px;
background: rgba(10, 10, 21, 0.98);
}
.nav-container {
max-width: 1500px;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.logo-nav {
position: absolute;
left: 20px;
font-family: 'Cinzel', serif;
font-size: 1.3rem;
color: var(--gold);
text-decoration: none;
font-weight: 700;
letter-spacing: 3px;
transition: all 0.3s;
}
.logo-nav:hover { text-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
.nav-links {
display: flex;
gap: 25px;
list-style: none;
align-items: center;
}
.nav-links a {
color: var(--gray-light);
text-decoration: none;
font-size: 0.8rem;
transition: color 0.3s;
position: relative;
letter-spacing: 1.5px;
text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 0;
height: 1px;
background: var(--gold);
transition: width 0.4s ease;
}
.nav-links a:hover::after { width: 100%; }
.contact-icon-wrapper {
position: relative;
display: inline-block;
}
.contact-icon {
cursor: pointer;
padding: 5px;
transition: all 0.3s;
}
.contact-icon:hover { transform: scale(1.1); }
.contact-icon svg {
width: 24px;
height: 24px;
fill: var(--gray-light);
transition: fill 0.3s;
}
.contact-icon:hover svg { fill: var(--gold); }
.mobile-menu {
display: none;
flex-direction: column;
gap: 6px;
cursor: pointer;
padding: 10px;
}
.mobile-menu span {
width: 28px;
height: 2px;
background: var(--gold);
transition: all 0.3s;
}
.mobile-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu.active span:nth-child(2) { opacity: 0; }
.mobile-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
.contact-dropdown {
position: absolute;
top: 100%;
right: 0;
margin-top: 10px;
background: rgba(10, 10, 21, 0.98);
border: 1px solid rgba(212, 175, 55, 0.3);
border-radius: 10px;
padding: 20px;
z-index: 1003;
display: none;
min-width: 250px;
backdrop-filter: blur(10px);
}
.contact-dropdown.active { display: block; }
.contact-dropdown h3 {
color: var(--gold);
margin-bottom: 15px;
font-family: 'Cinzel', serif;
}
.contact-dropdown a {
color: var(--phoenix-blue);
text-decoration: none;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 1px;
}
.contact-dropdown a:hover { text-decoration: underline; }
.page-section {
display: none;
min-height: 100vh;
padding-top: 100px;
}
.page-section.active {
display: block;
animation: fadeIn 0.6s ease;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
position: relative;
overflow: hidden;
padding: 140px 20px 80px;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
radial-gradient(ellipse at 80% 50%, rgba(26, 26, 46, 0.5) 0%, transparent 50%);
pointer-events: none;
}
.logo-container {
position: relative;
z-index: 1;
margin-bottom: 40px;
animation: fadeInScale 1.2s ease forwards;
width: 650px;
max-width: 90%;
height: 500px;
display: flex;
align-items: center;
justify-content: center;
}
@keyframes fadeInScale {
from { opacity: 0; transform: scale(0.9); }
to { opacity: 1; transform: scale(1); }
}
.logo-container img {
width: 100%;
height: auto;
max-height: 450px;
object-fit: contain;
mix-blend-mode: screen;
animation: ringEffect 10s ease-in-out infinite;
filter: brightness(1.3) contrast(1.2) saturate(1.1);
}
@keyframes ringEffect {
0%, 100% { transform: translateY(0) translateX(0) scale(1) rotate(0deg); opacity: 1; filter: brightness(1.3) contrast(1.2); }
10% { transform: translateY(-5px) translateX(3px) scale(1.02) rotate(0.5deg); opacity: 0.9; }
20% { transform: translateY(3px) translateX(-4px) scale(0.98) rotate(-0.3deg); opacity: 0.95; }
30% { transform: translateY(-8px) translateX(2px) scale(1.03) rotate(0.7deg); opacity: 0.85; filter: brightness(1.5) contrast(1.4); }
40% { transform: translateY(2px) translateX(-2px) scale(0.99) rotate(-0.2deg); opacity: 1; }
50% { transform: translateY(-3px) translateX(4px) scale(1.01) rotate(0.3deg); opacity: 0.95; }
60% { transform: translateY(6px) translateX(-3px) scale(0.97) rotate(-0.5deg); opacity: 0.9; filter: brightness(1.2) contrast(1.3); }
70% { transform: translateY(-4px) translateX(2px) scale(1.02) rotate(0.4deg); opacity: 0.95; }
80% { transform: translateY(1px) translateX(-1px) scale(1) rotate(0deg); opacity: 1; }
90% { transform: translateY(-6px) translateX(3px) scale(1.01) rotate(0.6deg); opacity: 0.88; filter: brightness(1.4) contrast(1.3); }
}
.tv-scanlines {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 650px;
max-width: 90%;
height: 500px;
pointer-events: none;
z-index: 2;
background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.15) 2px, rgba(0, 0, 0, 0.15) 4px);
animation: scanlineMove 8s linear infinite;
opacity: 0.5;
}
@keyframes scanlineMove {
0% { background-position: 0 0; }
100% { background-position: 0 100px; }
}
.tagline {
font-family: 'Playfair Display', serif;
font-size: 1.8rem;
color: var(--gold-light);
font-style: italic;
opacity: 0;
animation: fadeInUp 1s ease forwards 0.6s;
max-width: 600px;
line-height: 1.4;
margin-bottom: 15px;
text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.tagline-sub {
font-family: 'Inter', sans-serif;
font-size: 0.9rem;
color: var(--gray-light);
letter-spacing: 3px;
text-transform: uppercase;
opacity: 0;
animation: fadeInUp 1s ease forwards 1s;
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
.section {
padding: 140px 60px;
max-width: 1500px;
margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 100px; }
.section-label {
font-family: 'Inter', sans-serif;
font-size: 0.75rem;
letter-spacing: 5px;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 15px;
display: block;
}
.section-title {
font-family: 'Cinzel', serif;
font-size: 3rem;
color: var(--white);
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
display: block;
width: 80px;
height: 1px;
background: linear-gradient(90deg, transparent, var(--gold), transparent);
margin: 25px auto 0;
}
.section-subtitle {
font-family: 'Playfair Display', serif;
font-style: italic;
color: var(--gray);
font-size: 1.1rem;
margin-top: 20px;
}
.universe-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}
.universe-card {
position: relative;
border-radius: 20px;
overflow: hidden;
aspect-ratio: 4/3;
cursor: pointer;
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(212, 175, 55, 0.1);
background: var(--dark);
}
.universe-card:hover {
transform: translateY(-10px);
border-color: rgba(212, 175, 55, 0.4);
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.1);
}
.universe-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.6s ease;
}
.universe-card:hover img {
object-fit: contain;
background-color: var(--darker);
transform: scale(1.05);
}
.universe-card-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 21, 0.8) 100%);
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 40px;
transition: all 0.4s ease;
}
.universe-card:hover .universe-card-overlay {
background: linear-gradient(180deg, rgba(10, 10, 21, 0.2) 0%, rgba(10, 10, 21, 0.95) 100%);
}
.card-number {
font-family: 'Cinzel', serif;
font-size: 0.8rem;
color: var(--gold);
letter-spacing: 3px;
margin-bottom: 10px;
}
.card-title {
font-family: 'Cinzel', serif;
font-size: 1.5rem;
color: var(--white);
margin-bottom: 10px;
transition: color 0.3s;
}
.universe-card:hover .card-title { color: var(--gold); }
.card-subtitle {
font-family: 'Playfair Display', serif;
font-style: italic;
color: var(--gray-light);
font-size: 0.9rem;
margin-bottom: 15px;
}
.card-description {
color: var(--gray);
font-size: 0.8rem;
line-height: 1.6;
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease, opacity 0.5s ease;
opacity: 0;
}
.universe-card:hover .card-description {
max-height: 100px;
opacity: 1;
}
.click-hint {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0.8);
background: rgba(212, 175, 55, 0.9);
color: var(--dark);
padding: 10px 20px;
border-radius: 30px;
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 1px;
opacity: 0;
transition: all 0.4s ease;
pointer-events: none;
}
.universe-card:hover .click-hint {
opacity: 1;
transform: translate(-50%, -50%) scale(1);
}
.main-content-layout {
padding: 100px 60px;
max-width: 1600px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
}
.fashion-carousel-wrapper {
position: relative;
border-radius: 20px;
overflow: hidden;
max-width: 400px;
margin: 0 auto;
}
.fashion-carousel {
display: flex;
transition: transform 0.5s ease;
}
.fashion-carousel img {
min-width: 100%;
aspect-ratio: 9/16;
object-fit: cover;
}
.carousel-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(212, 175, 55, 0.9);
border: none;
width: 45px;
height: 45px;
border-radius: 50%;
cursor: pointer;
font-size: 1.5rem;
color: var(--dark);
transition: all 0.3s;
z-index: 10;
}
.carousel-btn:hover {
background: var(--gold);
transform: translateY(-50%) scale(1.1);
}
.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }
.fashion-badge {
position: absolute;
top: 20px;
left: 20px;
background: rgba(212, 175, 55, 0.9);
color: var(--dark);
padding: 8px 18px;
border-radius: 20px;
font-size: 0.7rem;
letter-spacing: 2px;
text-transform: uppercase;
font-weight: 600;
z-index: 5;
}
.fashion-content { padding: 20px; }
.fashion-content .section-label { text-align: left; }
.fashion-content h2 {
font-family: 'Playfair Display', serif;
font-size: 2.2rem;
color: var(--white);
margin-bottom: 20px;
line-height: 1.3;
font-variant: normal;
text-transform: none;
}
.fashion-content h2 span {
color: var(--gold);
font-style: italic;
}
.fashion-content p {
color: var(--gray-light);
line-height: 1.7;
margin-bottom: 15px;
font-size: 0.95rem;
}
.fashion-features {
display: flex;
gap: 25px;
margin: 25px 0;
padding: 20px 0;
border-top: 1px solid rgba(212, 175, 55, 0.2);
border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.feature-item { text-align: center; }
.feature-number {
font-family: 'Cinzel', serif;
font-size: 1.3rem;
color: var(--gold);
display: block;
}
.feature-label {
font-size: 0.7rem;
color: var(--gray);
text-transform: uppercase;
letter-spacing: 1px;
}
.btn-primary {
display: inline-block;
padding: 12px 35px;
background: transparent;
border: 1px solid var(--gold);
color: var(--gold);
text-decoration: none;
border-radius: 25px;
font-size: 0.8rem;
letter-spacing: 2px;
text-transform: uppercase;
transition: all 0.4s ease;
margin-top: 15px;
position: relative;
overflow: hidden;
}
.btn-primary::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: var(--gold);
transition: left 0.4s ease;
z-index: -1;
}
.btn-primary:hover { color: var(--dark); }
.btn-primary:hover::before { left: 0; }
.video-section-side {
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
.video-header {
text-align: left;
margin-bottom: 15px;
width: 100%;
max-width: 700px;
}
.video-header h3 {
font-family: 'Cinzel', serif;
font-size: 1.2rem;
color: var(--gold);
margin-bottom: 5px;
text-transform: uppercase;
letter-spacing: 2px;
}
.video-header p {
color: var(--gray);
font-style: italic;
font-size: 0.85rem;
}
.video-link {
color: var(--phoenix-blue);
text-decoration: none;
border-bottom: 1px solid var(--phoenix-blue);
transition: all 0.3s;
font-size: 0.85rem;
}
.video-link:hover {
color: var(--gold);
border-bottom-color: var(--gold);
}
.video-title {
text-align: left;
font-family: 'Playfair Display', serif;
font-style: italic;
color: var(--gold);
font-size: 1.3rem;
margin: 10px 0 15px;
width: 100%;
max-width: 700px;
}
.video-wrapper {
position: relative;
width: 100%;
max-width: 700px;
background: #000;
border-radius: 15px;
overflow: hidden;
border: 1px solid rgba(212, 175, 55, 0.2);
}
.video-wrapper video {
width: 100%;
display: block;
}
.lia-section {
padding: 60px;
position: relative;
overflow: hidden;
}
.meet-lia-label {
position: absolute;
top: 20px;
left: 40px;
font-family: 'Playfair Display', serif;
font-style: italic;
font-size: 2rem;
color: var(--fuchsia);
text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
z-index: 1;
transform: rotate(-5deg);
}
.lia-container {
max-width: 400px;
margin-left: 60px;
padding: 30px 40px;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 0, 255, 0.2);
border-radius: 10px;
display: flex;
align-items: center;
gap: 20px;
transition: all 0.4s ease;
}
.lia-container:hover {
border-color: rgba(255, 0, 255, 0.4);
background: rgba(255, 0, 255, 0.05);
transform: translateX(5px);
}
.lia-avatar {
width: 80px;
height: 80px;
border-radius: 50%;
border: 2px solid var(--fuchsia);
overflow: hidden;
flex-shrink: 0;
}
.lia-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.lia-info { flex: 1; }
.lia-name {
font-family: 'Playfair Display', serif;
font-size: 1.3rem;
color: var(--gold-light);
margin-bottom: 5px;
}
.lia-description {
color: var(--gray);
font-size: 0.85rem;
font-style: italic;
line-height: 1.4;
margin-bottom: 10px;
}
.lia-link {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 20px;
background: rgba(255, 0, 255, 0.1);
border: 1px solid var(--fuchsia);
color: var(--fuchsia);
text-decoration: none;
border-radius: 20px;
font-size: 0.8rem;
letter-spacing: 1px;
transition: all 0.4s ease;
}
.lia-link:hover {
background: var(--fuchsia);
color: var(--dark);
transform: translateY(-2px);
}
footer {
padding: 60px;
text-align: center;
border-top: 1px solid rgba(212, 175, 55, 0.1);
background: var(--darker);
}
.footer-logo {
font-family: 'Cinzel', serif;
font-size: 1.2rem;
color: var(--gold);
letter-spacing: 3px;
margin-bottom: 25px;
}
.footer-links {
display: flex;
justify-content: center;
gap: 30px;
margin-bottom: 30px;
flex-wrap: wrap;
}
.footer-links a {
color: var(--gray);
text-decoration: none;
font-size: 0.8rem;
letter-spacing: 1px;
transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-social {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 30px;
}
.footer-social a {
width: 40px;
height: 40px;
border: 1px solid rgba(212, 175, 55, 0.3);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--gold);
text-decoration: none;
font-size: 1rem;
transition: all 0.3s;
}
.footer-social a:hover {
background: var(--gold);
color: var(--dark);
transform: translateY(-3px);
}
.footer-copy {
color: var(--gray);
font-size: 0.8rem;
}
.footer-copy span { color: var(--gold); }
.music-player {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 1000;
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 10px;
}
.music-toggle {
background: rgba(10, 10, 21, 0.95);
border: 1px solid rgba(212, 175, 55, 0.3);
color: var(--gold);
padding: 12px 20px;
border-radius: 30px;
cursor: pointer;
display: flex;
align-items: center;
gap: 10px;
font-size: 0.85rem;
letter-spacing: 1px;
transition: all 0.4s ease;
backdrop-filter: blur(10px);
font-family: 'Inter', sans-serif;
}
.music-toggle:hover {
border-color: var(--gold);
box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
transform: translateY(-2px);
}
.music-toggle.playing {
background: rgba(212, 175, 55, 0.15);
border-color: var(--gold);
animation: pulse 2s ease-in-out infinite;
}
.music-icon {
font-size: 1.2rem;
transition: all 0.3s;
}
.music-toggle.playing .music-icon {
animation: rotate 3s linear infinite;
}
.music-controls {
width: 150px;
opacity: 0;
transform: translateY(10px);
transition: all 0.3s ease;
pointer-events: none;
}
.music-player:hover .music-controls {
opacity: 1;
transform: translateY(0);
pointer-events: all;
}
.volume-slider {
width: 100%;
height: 4px;
border-radius: 2px;
background: rgba(212, 175, 55, 0.2);
outline: none;
-webkit-appearance: none;
}
.volume-slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--gold);
cursor: pointer;
transition: all 0.3s;
}
.volume-slider::-webkit-slider-thumb:hover {
transform: scale(1.3);
box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
@keyframes pulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
50% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.reveal {
opacity: 0;
transform: translateY(40px);
transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
.videos-list-page {
padding: 140px 60px 80px;
min-height: 100vh;
background: var(--darker);
}
.videos-list-header { text-align: center; margin-bottom: 40px; }
.videos-list-header h1 {
font-family: 'Cinzel', serif;
font-size: 2.5rem;
color: var(--gold);
margin-bottom: 20px;
}
.view-toggle {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 30px;
flex-wrap: wrap;
}
.view-btn {
padding: 10px 25px;
background: transparent;
border: 1px solid var(--gold);
color: var(--gold);
border-radius: 20px;
cursor: pointer;
transition: all 0.3s;
font-size: 0.85rem;
}
.view-btn:hover, .view-btn.active {
background: var(--gold);
color: var(--dark);
}
.play-all-btn {
padding: 15px 40px;
background: var(--gold);
color: var(--dark);
border: none;
border-radius: 30px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
margin-bottom: 40px;
transition: all 0.3s;
}
.play-all-btn:hover {
transform: scale(1.05);
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}
.videos-grid-view {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}
.videos-list-view {
display: flex;
flex-direction: column;
gap: 15px;
max-width: 1200px;
margin: 0 auto;
}
.video-item-grid {
position: relative;
border-radius: 10px;
overflow: hidden;
cursor: pointer;
border: 1px solid rgba(212, 175, 55, 0.3);
transition: all 0.3s;
background: #000;
}
.video-item-grid:hover {
transform: scale(1.05);
border-color: var(--gold);
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}
.video-item-grid video {
width: 100%;
height: auto;
display: block;
aspect-ratio: 16/9;
object-fit: cover;
background: #000;
}
.video-item-grid h4 {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(transparent, rgba(0,0,0,0.9));
padding: 15px;
font-size: 0.9rem;
color: var(--white);
}
.video-item-list {
display: flex;
gap: 20px;
padding: 15px;
background: rgba(255,255,255,0.05);
border-radius: 10px;
cursor: pointer;
transition: all 0.3s;
align-items: center;
}
.video-item-list:hover {
background: rgba(255,255,255,0.1);
transform: translateX(10px);
}
.video-item-list video {
width: 180px;
height: 100px;
object-fit: cover;
border-radius: 8px;
flex-shrink: 0;
background: #000;
}
.video-item-list-info { flex: 1; }
.video-item-list-info h4 {
font-size: 1.1rem;
margin-bottom: 8px;
color: var(--white);
}
.video-item-list-info p {
color: var(--gray);
font-size: 0.9rem;
margin-bottom: 5px;
}
.video-hashtags {
color: var(--phoenix-blue);
font-size: 0.85rem;
}
.cinema-mode {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.95);
z-index: 4000;
padding: 40px;
overflow-y: auto;
}
.cinema-mode.active {
display: block;
animation: fadeIn 0.4s ease;
}
.cinema-content {
display: grid;
grid-template-columns: 1fr 320px;
gap: 30px;
max-width: 1800px;
margin: 0 auto;
align-items: start;
}
.cinema-video-section {
display: flex;
flex-direction: column;
gap: 15px;
}
.cinema-video-wrapper {
position: relative;
background: #000;
border-radius: 15px;
overflow: hidden;
}
.cinema-video-wrapper video {
width: 100%;
max-height: 75vh;
display: block;
}
.cinema-video-title {
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
color: var(--gold);
text-align: center;
}
.cinema-next-btn {
align-self: center;
padding: 12px 30px;
background: transparent;
border: 2px solid var(--gold);
color: var(--gold);
border-radius: 25px;
cursor: pointer;
font-size: 0.9rem;
font-weight: 600;
letter-spacing: 1px;
transition: all 0.3s;
display: flex;
align-items: center;
gap: 10px;
}
.cinema-next-btn:hover {
background: var(--gold);
color: var(--dark);
transform: scale(1.05);
}
.cinema-next-btn svg {
width: 18px;
height: 18px;
fill: currentColor;
}
.cinema-suggestions {
border-left: 2px solid rgba(212, 175, 55, 0.3);
padding-left: 20px;
display: flex;
flex-direction: column;
gap: 15px;
}
.cinema-suggestions-header {
display: flex;
flex-direction: column;
gap: 10px;
}
.cinema-suggestions h3 {
color: var(--gold);
font-family: 'Cinzel', serif;
font-size: 1.1rem;
margin-bottom: 5px;
}
.cinema-controls { display: flex; gap: 10px; }
.cinema-control-btn {
padding: 6px 14px;
background: transparent;
border: 1px solid rgba(212, 175, 55, 0.4);
color: var(--gold);
border-radius: 15px;
cursor: pointer;
font-size: 0.75rem;
transition: all 0.3s;
display: flex;
align-items: center;
gap: 5px;
}
.cinema-control-btn:hover, .cinema-control-btn.active {
background: var(--gold);
color: var(--dark);
}
.cinema-control-btn svg {
width: 14px;
height: 14px;
fill: currentColor;
}
.cinema-suggestions-list {
max-height: 600px;
overflow-y: auto;
display: flex;
flex-direction: column;
gap: 12px;
padding-right: 5px;
}
.cinema-suggestions-list::-webkit-scrollbar { width: 6px; }
.cinema-suggestions-list::-webkit-scrollbar-track {
background: rgba(212, 175, 55, 0.1);
border-radius: 3px;
}
.cinema-suggestions-list::-webkit-scrollbar-thumb {
background: var(--gold);
border-radius: 3px;
}
.cinema-suggestion-item {
display: flex;
gap: 12px;
cursor: pointer;
transition: all 0.3s;
align-items: center;
}
.cinema-suggestion-item:hover { transform: translateX(5px); }
.cinema-suggestion-item video {
width: 130px;
height: 73px;
object-fit: cover;
border-radius: 6px;
flex-shrink: 0;
background: #000;
}
.cinema-suggestion-item h4 {
font-size: 0.85rem;
color: var(--gray-light);
font-family: 'Playfair Display', serif;
line-height: 1.3;
}
.cinema-close {
position: fixed;
top: 30px;
right: 40px;
font-size: 2.5rem;
color: var(--gold);
cursor: pointer;
z-index: 4001;
}
.cinema-close:hover {
color: var(--white);
transform: scale(1.1);
}
.blog-modal {
display: none;
position: fixed;
z-index: 3000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
overflow-y: auto;
animation: fadeIn 0.4s ease;
}
.blog-modal-content {
background: #fff;
margin: 50px auto;
padding: 60px;
max-width: 900px;
border-radius: 0;
position: relative;
color: #333;
line-height: 1.8;
}
.blog-modal-close {
position: absolute;
top: 20px;
right: 30px;
font-size: 3rem;
color: var(--gold);
cursor: pointer;
transition: all 0.3s;
line-height: 1;
}
.blog-modal-close:hover {
color: var(--gold-dark);
transform: scale(1.2);
}
.blog-modal-content h2 {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
color: #1a1a2e;
margin-bottom: 30px;
line-height: 1.2;
}
.blog-modal-content h3 {
font-family: 'Cinzel', serif;
color: var(--gold);
margin-top: 30px;
margin-bottom: 15px;
font-size: 1.3rem;
}
.blog-modal-content p {
margin-bottom: 20px;
font-size: 1.05rem;
}
.blog-modal-content ul, .blog-modal-content ol {
margin: 20px 0;
padding-left: 30px;
}
.blog-modal-content li {
margin-bottom: 10px;
font-size: 1.05rem;
}
.blog-modal-content strong { color: var(--gold-dark); }
.luz-history-page {
padding: 140px 100px 100px;
background: var(--darker);
min-height: 100vh;
}
.luz-history-header {
text-align: center;
margin-bottom: 80px;
}
.luz-history-header h1 {
font-family: 'Cinzel', serif;
font-size: 3rem;
color: var(--gold);
}
.luz-history-content {
max-width: 1000px;
margin: 0 auto 100px;
}
.luz-story-block {
display: flex;
align-items: center;
gap: 60px;
margin-bottom: 80px;
}
.luz-story-block:nth-child(even) { flex-direction: row-reverse; }
.luz-image-wrapper {
flex: 0 0 400px;
cursor: pointer;
border: 2px solid rgba(212, 175, 55, 0.3);
transition: all 0.4s ease;
}
.luz-image-wrapper:hover {
border-color: var(--gold);
box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}
.luz-image-wrapper img {
width: 100%;
height: 300px;
object-fit: cover;
display: block;
}
.luz-story-text {
flex: 1;
color: var(--gray-light);
font-size: 1.05rem;
line-height: 2;
}
.other-videos-section {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
.other-videos-section h2 {
font-family: 'Cinzel', serif;
font-size: 2rem;
color: var(--gold);
margin-bottom: 50px;
}
.other-videos-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}
.other-video-item {
cursor: pointer;
transition: all 0.4s ease;
}
.other-video-item:hover { transform: translateY(-10px); }
.other-video-item img {
width: 100%;
height: 200px;
object-fit: cover;
border: 1px solid rgba(212, 175, 55, 0.3);
margin-bottom: 15px;
}
.other-video-item h4 {
font-family: 'Playfair Display', serif;
font-size: 1rem;
color: var(--gray-light);
}
@media (max-width: 1400px) {
.universe-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1200px) {
.universe-grid { grid-template-columns: repeat(2, 1fr); }
.main-content-layout { grid-template-columns: 1fr; gap: 60px; }
.fashion-carousel-wrapper { max-width: 350px; }
.logo-container { width: 550px; height: 420px; }
.tv-scanlines { width: 550px; height: 420px; }
}
@media (max-width: 968px) {
.luz-story-block { flex-direction: column !important; }
.luz-image-wrapper { flex: 0 0 100%; }
.other-videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
nav { padding: 15px 25px; }
.language-selector { top: 65px; right: 15px; }
.logo-nav {
position: static;
margin-bottom: 15px;
}
.nav-links {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: rgba(10, 10, 21, 0.98);
flex-direction: column;
padding: 30px;
gap: 20px;
border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.nav-links.active { display: flex; }
.mobile-menu { display: flex; }
.hero { padding: 120px 20px 60px; }
.logo-container { width: 400px; height: 320px; }
.tv-scanlines { width: 400px; height: 320px; }
.tagline { font-size: 1.2rem; }
.section { padding: 100px 25px; }
.section-title { font-size: 2rem; }
.main-content-layout { padding: 100px 25px; }
.fashion-content h2 { font-size: 1.8rem; }
.fashion-features { flex-wrap: wrap; gap: 20px; }
.lia-section { padding: 60px 25px; }
.meet-lia-label { font-size: 1.5rem; left: 20px; top: 15px; }
.lia-container {
margin-left: 20px;
padding: 20px;
flex-direction: column;
text-align: center;
}
footer { padding: 40px 25px; }
.videos-list-page { padding: 120px 25px 60px; }
.videos-grid-view { grid-template-columns: 1fr; }
.video-item-list { flex-direction: column; }
.video-item-list video { width: 100%; height: auto; }
.music-player { bottom: 20px; right: 20px; }
.music-toggle { padding: 10px 15px; font-size: 0.75rem; }
.music-text { display: none; }
.luz-history-page { padding: 120px 25px 60px; }
.luz-history-header h1 { font-size: 2rem; }
.other-videos-grid { grid-template-columns: 1fr; }
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb {
background: rgba(212, 175, 55, 0.3);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }