/* KMAC Luxury Website - Premium Styles */

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #141414;
    --accent-gold: #FFD700;
    --accent-silver: #C0C0C0;
    --accent-blue: #4169E1;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-muted: #808080;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.75);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    max-width: 100vw;
}

/* Animated Background Canvas */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    opacity: 0.5;
    max-width: 100%;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(ellipse at center, transparent 0%, var(--primary-bg) 100%);
    z-index: -1;
    pointer-events: none;
    max-width: 100%;
}

/* Luxury Header */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Brand Section */
.brand-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
}

.logo-hexagon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-blue) 100%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateGlow 10s linear infinite;
    position: relative;
    z-index: 2;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); filter: hue-rotate(0deg); }
    100% { transform: rotate(360deg); filter: hue-rotate(360deg); }
}

.logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-bg);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.logo-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.logo-particles::before,
.logo-particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-gold);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: pulseExpand 3s ease-in-out infinite;
}

.logo-particles::after {
    animation-delay: 1.5s;
}

@keyframes pulseExpand {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.3); opacity: 0.3; }
}

.brand-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--text-primary) 50%, var(--accent-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.25rem;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    gap: 1rem;
}

.search-trigger,
.menu-trigger {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.search-trigger::before,
.menu-trigger::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.search-trigger:hover::before,
.menu-trigger:hover::before {
    width: 100%;
    height: 100%;
}

.search-trigger:hover,
.menu-trigger:hover {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.search-trigger svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.menu-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    margin: 4px 0;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.menu-trigger:hover .menu-line:nth-child(1) { transform: translateX(-3px); }
.menu-trigger:hover .menu-line:nth-child(2) { transform: translateX(3px); }
.menu-trigger:hover .menu-line:nth-child(3) { transform: translateX(-3px); }

/* Mega Navigation */
.mega-nav {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    position: relative;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-trigger::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-blue));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-item:hover .nav-trigger::after {
    width: 100%;
}

.nav-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-arrow svg {
    width: 100%;
    height: 100%;
}

.nav-item:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 900px;
    max-width: calc(100vw - 2rem);
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* First dropdown (music) - align to left edge */
.nav-item:first-child .mega-dropdown {
    left: 0;
    transform: translateX(0) translateY(20px);
}

/* Last dropdown (cosmology) - align to right edge */
.nav-item:last-child .mega-dropdown {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(20px);
}

.nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

/* First dropdown hover state */
.nav-item:first-child:hover .mega-dropdown {
    transform: translateX(0) translateY(10px);
}

/* Last dropdown hover state */
.nav-item:last-child:hover .mega-dropdown {
    transform: translateX(0) translateY(10px);
}

.dropdown-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    height: 450px;
}

/* Featured Section */
.dropdown-featured {
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--border-color);
}

.featured-image {
    width: 100%;
    height: 70%;
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dropdown-featured:hover .featured-image img {
    transform: scale(1.1);
}

.live-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 0, 0, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.featured-content {
    padding: 1.5rem;
}

.featured-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.featured-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.featured-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-link:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* Dropdown Grid */
.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    overflow-y: auto;
}

.dropdown-section h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.dropdown-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.dropdown-section ul {
    list-style: none;
}

.dropdown-section ul li {
    margin-bottom: 0.75rem;
}

.dropdown-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
    padding-left: 15px;
}

.dropdown-section ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
}

.dropdown-section ul li a:hover {
    color: var(--text-primary);
    padding-left: 20px;
}

.dropdown-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.live-link::after {
    content: '●';
    color: #ff0000;
    margin-left: 0.5rem;
    animation: blink 1s infinite;
}

/* Featured Card */
.featured-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.featured-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.featured-card h5 {
    padding: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.featured-card p {
    padding: 0 0.75rem 0.75rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Trending Ticker */
.trending-ticker {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.ticker-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.ticker-item:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.ticker-item:last-child {
    border-bottom: none;
}

/* Main Container */
.main-container {
    margin-top: 140px;
    position: relative;
    z-index: 10;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(65, 105, 225, 0.1) 0%, transparent 70%);
    animation: breathe 8s ease-in-out infinite;
}

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

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.word-animate {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wordFloat 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

.word-animate:nth-child(1) { --i: 0; }
.word-animate:nth-child(2) { --i: 1; }
.word-animate:nth-child(3) { --i: 2; }

@keyframes wordFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-blue) 100%);
    color: var(--primary-bg);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Hero Visual - Orbital System */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.orbital-system {
    width: 400px;
    height: 400px;
    position: relative;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 200px;
    height: 200px;
    top: 100px;
    left: 100px;
    animation-duration: 15s;
}

.orbit-2 {
    width: 300px;
    height: 300px;
    top: 50px;
    left: 50px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 400px;
    height: 400px;
    top: 0;
    left: 0;
    animation-duration: 35s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.planet {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-blue));
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.central-star {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    animation: pulse 3s ease-in-out infinite;
}

/* Content Section */
.content-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 20, 20, 0.5) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--text-primary) 50%, var(--accent-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Content Grid */
.content-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    width: 100%;
}

.content-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card:hover::before {
    opacity: 1;
}

.content-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-gold);
}

.card-media {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.content-card:hover .card-media img {
    transform: scale(1.15) rotate(2deg);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.card-category {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-action {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.card-action span {
    transition: transform 0.3s ease;
}

.card-action:hover {
    color: var(--accent-gold);
}

.card-action:hover span {
    transform: translateX(5px);
}

/* YouTube Section */
.youtube-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.5) 0%, rgba(10, 10, 10, 0.8) 100%);
    position: relative;
}

.youtube-channel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #FF0000;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.youtube-channel-link:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.youtube-container {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.video-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: #FF0000;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.video-card:hover .play-overlay {
    background: #FF0000;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.video-info {
    padding: 1.25rem;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.video-views,
.video-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Video Placeholder Loading Animation */
.video-placeholder {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    position: relative;
}

.placeholder-shimmer {
    height: 56.25%;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.placeholder-text {
    height: 20px;
    margin: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Featured Video */
.featured-video-container {
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid #FF0000;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
}

.featured-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
}

.featured-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.featured-video-info {
    margin-top: 1.5rem;
}

.featured-video-info h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.featured-video-info p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile Responsive YouTube Section */
@media (max-width: 768px) {
    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }

    .youtube-container {
        padding: 0 1rem;
        max-width: 100%;
    }

    .featured-video-container {
        padding: 1rem;
        margin: 2rem 1rem 0;
    }

    .video-title {
        font-size: 1rem;
    }

    .video-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .youtube-container {
        padding: 0 0.5rem;
    }

    .youtube-grid {
        gap: 0.75rem;
    }

    .video-info {
        padding: 1rem;
    }
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: rgba(10, 10, 10, 0.5);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    width: 100%;
}

.feature-item {
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-gold);
    position: relative;
    z-index: 1;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* iFrame Modal Styles */
.iframe-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.iframe-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.iframe-modal-content {
    width: 95%;
    height: 90%;
    max-width: 1400px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-gold);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.iframe-modal-header {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-blue));
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--bg-primary);
    font-weight: 600;
}

.iframe-modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.iframe-controls {
    display: flex;
    gap: 0.5rem;
}

.iframe-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 5px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iframe-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.iframe-btn svg {
    width: 16px;
    height: 16px;
    stroke: var(--bg-primary);
}

.iframe-container {
    flex: 1;
    position: relative;
    background: var(--bg-secondary);
}

#content-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

.iframe-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.iframe-loading.hidden {
    display: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.iframe-loading p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Mobile responsive */
@media (max-width: 768px) {
    .iframe-modal-content {
        width: 98%;
        height: 95%;
    }

    .iframe-modal-header {
        padding: 0.75rem 1rem;
    }

    .iframe-modal-header h3 {
        font-size: 0.9rem;
    }

    .iframe-btn {
        padding: 0.4rem;
    }

    .iframe-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* Luxury Footer */
.luxury-footer {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, #000000 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
    width: 100%;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-links a:hover svg {
    color: var(--primary-bg);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-column ul li a:hover {
    color: var(--text-primary);
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
}

.footer-bottom p {
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.legal-links a:hover {
    color: var(--accent-gold);
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mobile-menu-close:hover {
    border-color: var(--accent-gold);
    transform: rotate(90deg);
}

.mobile-menu-close span {
    display: block;
    position: relative;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transform: rotate(45deg);
}

.mobile-menu-close span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--text-primary);
    transform: rotate(-90deg);
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link {
    display: block;
    padding: 1.25rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.mobile-nav-link::after {
    content: '→';
    position: absolute;
    right: 1.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
    padding-left: 2rem;
    color: var(--accent-gold);
}

.mobile-nav-link:hover::after {
    opacity: 1;
    right: 1rem;
}

.mobile-submenu {
    display: none;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu-item {
    padding: 0.75rem 2.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.mobile-submenu-item:hover {
    color: var(--text-primary);
    padding-left: 3rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .mega-dropdown {
        width: 800px;
    }

    .dropdown-container {
        grid-template-columns: 300px 1fr;
    }
}

@media (max-width: 968px) {
    /* Hide desktop navigation */
    .mega-nav {
        display: none;
    }

    /* Adjust header for mobile */
    .header-inner {
        padding: 1rem 2rem;
    }
    
    .nav-list {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .mega-dropdown {
        width: 90vw;
        left: 5vw;
        transform: translateX(0);
    }
    
    .nav-item:hover .mega-dropdown {
        transform: translateX(0) translateY(10px);
    }
    
    .dropdown-container {
        grid-template-columns: 1fr;
        height: auto;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .dropdown-featured {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .featured-image {
        height: 200px;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 3rem;
    }
    
    .orbital-system {
        width: 300px;
        height: 300px;
    }
    
    .orbit-1 { width: 150px; height: 150px; top: 75px; left: 75px; }
    .orbit-2 { width: 225px; height: 225px; top: 37.5px; left: 37.5px; }
    .orbit-3 { width: 300px; height: 300px; }
    
    .content-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    /* Mobile-first adjustments */
    body {
        font-size: 14px;
    }

    /* Simplify animations for performance */
    .orbital-system,
    .logo-particles,
    #bgCanvas {
        display: none;
    }

    /* Header adjustments */
    .header-inner {
        padding: 0.75rem 1rem;
    }

    .logo-wrapper {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    /* Make buttons more touch-friendly */
    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }

    /* Hero section mobile optimization */
    .hero-section {
        min-height: 500px;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-visual {
        display: none;
    }

    /* Card improvements for mobile */
    .content-card {
        border-radius: 15px;
        margin-bottom: 1rem;
    }

    .card-media {
        height: 200px;
    }

    .card-body {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    /* Features section mobile */
    .features-container {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .feature-item {
        padding: 1rem;
        background: rgba(20, 20, 20, 0.5);
        border-radius: 15px;
    }

    /* Footer mobile optimization */
    .footer-content {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    /* Touch target improvements */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improve readability */
    p, .card-text, .hero-description {
        line-height: 1.7;
    }

    /* Original mobile styles below */
    .brand-info h1 {
        font-size: 1.5rem;
    }
    
    .brand-tagline {
        display: none;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-grid {
        padding: 0 1rem;
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Small mobile devices */
@media (max-width: 375px) {
    .header-inner {
        padding: 0.5rem;
    }

    .brand-info h1 {
        font-size: 1.2rem;
    }

    .hero-text h2 {
        font-size: 1.75rem;
    }

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

    .content-grid,
    .features-container,
    .footer-content {
        padding: 0 1rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .content-card:hover {
        transform: none;
    }

    .nav-trigger:hover::after,
    .nav-item:hover .nav-trigger::after {
        width: 0;
    }

    /* Add active states for better touch feedback */
    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.98);
    }

    .content-card:active {
        transform: scale(0.98);
    }

    /* Increase touch targets */
    .nav-actions button {
        width: 48px;
        height: 48px;
    }
}

/* Landscape mobile optimization */
@media (max-width: 812px) and (orientation: landscape) {
    .hero-section {
        min-height: 400px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .main-container {
        margin-top: 100px;
    }
}