/* Black Gold Theme Variables */
:root {
    --gold-light: #f3e5ab;
    --gold: #d4af37;
    --gold-dark: #aa8a2e;
    --dark-bg: #0a0a0a;
    --dark-surface: #1a1a1a;
    --dark-border: #2a2a2a;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    background: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #aa8a2e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #aa8a2e 100%);
    color: #000;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo-icon {
    width: 35px;
    height: 35px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--gold);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--dark-bg) 20%, transparent 80%),
                linear-gradient(to top, var(--dark-bg) 10%, transparent 50%);
}

.hero-content {
    max-width: 700px;
}

.hero-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gold);
    color: #000;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
}

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

/* Section Common */
section {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
}

.view-more {
    color: var(--gold);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Movie Grid */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
}

.movie-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    transition: var(--transition);
}

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

.movie-poster {
    aspect-ratio: 2/3;
    position: relative;
    overflow: hidden;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.movie-card:hover .movie-poster img {
    transform: scale(1.1);
}

.movie-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
}

.movie-info {
    padding: 15px;
}

.movie-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Stats */
.stats-bar {
    background: var(--dark-surface);
    padding: 60px 0;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h4 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Featured Scroll */
.featured-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.featured-scroll::-webkit-scrollbar {
    display: none;
}

.featured-item {
    min-width: 400px;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

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

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

/* News & Latest */
.news-latest-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-item h4 {
    font-size: 16px;
    transition: var(--transition);
}

.news-item:hover h4 {
    color: var(--gold);
}

.news-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* Membership */
.membership-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--gold);
    filter: blur(150px);
    opacity: 0.1;
}

.membership-features {
    margin: 30px 0;
}

.membership-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.membership-features i {
    color: var(--gold);
}

/* Footer */
footer {
    background: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid var(--dark-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h5 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: var(--dark-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-btn:hover {
    background: var(--gold);
    color: #000;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #555;
}

/* Floating Button */
.float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .membership-card {
        padding: 40px;
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .news-latest-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 36px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Products Page Specific */
.filter-box {
    background: var(--dark-surface);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 50px;
    border: 1px solid var(--dark-border);
}

.filter-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.filter-label {
    color: var(--text-muted);
    font-size: 14px;
    min-width: 50px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-opt {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-opt.active {
    background: var(--gold);
    color: #000;
    font-weight: 700;
}

.filter-opt:not(.active):hover {
    color: var(--gold);
}

/* About Page Specific */
.about-hero {
    text-align: center;
    padding: 150px 0 100px;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.history-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.timeline-year {
    font-size: 24px;
    font-weight: 900;
    color: var(--gold);
    min-width: 80px;
}

.timeline-content {
    padding-left: 30px;
    border-left: 2px solid var(--dark-border);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--dark-surface);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--dark-border);
}

.contact-form-card {
    background: var(--dark-surface);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--dark-border);
}

.form-group {
    margin-bottom: 25px;
}

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

.form-control {
    width: 100%;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    padding: 15px 20px;
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--gold);
}

.map-container {
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 80px;
    border: 1px solid var(--dark-border);
}

/* App Download Specific */
.app-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 150px 0;
}

.app-mockup {
    position: relative;
    width: 320px;
    margin: 0 auto;
}

.phone-frame {
    border: 8px solid var(--dark-border);
    border-radius: 45px;
    overflow: hidden;
    aspect-ratio: 9/19;
    background: #000;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
