:root {
    --bg-color: #0a0a0a;
    --surface-color: rgba(20, 20, 20, 0.7);
    --primary-color: #ff003c;
    --primary-glow: rgba(255, 0, 60, 0.4);
    --accent-color: #d4af37;
    --text-main: #e2e2e2;
    --text-muted: #b0b0b0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --nav-height: 80px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Noto Serif', serif;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; opacity: 0; }
.delay-2 { animation-delay: 0.6s; opacity: 0; }

/* Overlay styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.overlay.hidden {
    display: none;
}

.overlay-content h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

/* Nav */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
}

.logo {
    font-family: 'Noto Serif', serif;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.glass-nav ul {
    display: flex;
    list-style: none;
}

.glass-nav ul li {
    margin-left: 30px;
}

.glass-nav ul li a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.glass-nav ul li a:hover {
    color: var(--primary-color);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    background: radial-gradient(circle at 70% 30%, rgba(255, 0, 60, 0.15) 0%, transparent 50%);
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 .accent {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--primary-color);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    margin-left: 20px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Shows */
.shows {
    padding: 100px 10%;
    background: #050505;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.show-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.glass-card h3 {
    margin-bottom: 10px;
}

.glass-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.btn-card {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-card:hover {
    background: var(--primary-color);
    color: white;
}

/* Footer */
footer {
    padding: 60px 10%;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-links a {
    color: var(--text-main);
    margin: 0 15px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.hidden { display: none !important; }

/* Form & VIP Sections */
.newsletter-section, .vip-section {
    padding: 100px 10%;
}

.glass-form-container, .vip-login-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 20px;
}

.vip-login-box { max-width: 500px; text-align: center; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
    border-radius: 4px;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary-color);
}

.form-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.success-box {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid green;
    border-radius: 8px;
    text-align: center;
}

/* VIP Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.media-card {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

/* VIP Dashboard Styles */
.vip-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease;
}

.vip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.subscription-badge {
    background: linear-gradient(45deg, #ffd700, #b8860b);
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.vip-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.vip-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.vip-tab-content.active {
    display: block;
}

/* Media Cards */
.media-card {
    position: relative;
    height: 250px;
    background: linear-gradient(45deg, #1a1a1a, #0a0a0a);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
}

.video::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.play-icon {
    font-size: 3rem;
    color: white;
    z-index: 2;
    transition: 0.3s;
}

.lang-switcher {
    display: flex;
    gap: 8px;
    margin-left: 20px;
}

.lang-flag {
    font-size: 0.7rem;
    cursor: pointer;
    padding: 2px 6px;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: var(--text-muted);
    transition: 0.3s;
}

.lang-flag.active, .lang-flag:hover {
    border-color: var(--primary-color);
    color: white;
    background: rgba(139, 0, 0, 0.2);
}

.media-card:hover .play-icon {
    transform: scale(1.2);
    color: var(--primary-color);
}

.media-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
    font-size: 0.9rem;
}

.info-card {
    padding: 40px;
    border-radius: 20px;
    max-width: 700px;
}

.benefit-list {
    list-style: none;
    margin-top: 20px;
}

.benefit-list li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

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

.media-card:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

.login-footer {
    margin-top: 20px;
}

.small-link {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-decoration: none;
    transition: 0.3s;
}

.small-link:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
}
