/* Global Styles */
:root {
    --gold: #d4af37;
    --gold-light: #f9e29c;
    --gold-dark: #b8860b;
    --black: #0a0a0a;
    --black-lighter: #1a1a1a;
    --gray: #888;
    --gray-dark: #333;
    --white: #fff;
}

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

body {
    background-color: var(--black);
    color: #eee;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.gold-text {
    color: var(--gold);
}

.gold-gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.center { text-align: center; }
.bold { font-weight: bold; }

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

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

.btn-white {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-white:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.btn-gold.large, .btn-outline.large {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-gold.full { width: 100%; justify-content: center; }

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.4s;
    border-bottom: 1px solid transparent;
}

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

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.desktop-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ccc;
}

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

.header-tools {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar i {
    position: absolute;
    left: 12px;
    color: var(--gray);
    font-size: 1rem;
}

.search-bar input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 15px 8px 35px;
    border-radius: 20px;
    color: #fff;
    width: 180px;
    transition: 0.3s;
}

.search-bar input:focus {
    width: 250px;
    outline: none;
    border-color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    z-index: 999;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-nav.active { display: flex; }

.mobile-nav a {
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
    color: #fff;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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, #000 0%, rgba(0,0,0,0.6) 50%, transparent 100%),
                linear-gradient(to top, #000 0%, transparent 100%);
}

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

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    color: #000;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-bottom: 20px;
}

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

.hero p {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Stats */
.stats {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-darker { background: #050505; }

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

.section-header h2 {
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.more-link {
    color: var(--gold);
    font-size: 0.9rem;
}

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

.movie-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
}

.movie-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

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

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.movie-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 0%, transparent 100%);
    opacity: 0;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.movie-card:hover .movie-overlay { opacity: 1; }

.movie-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: var(--gold);
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.8rem;
    border: 1px solid var(--gold);
}

.movie-info {
    padding: 15px;
}

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

.movie-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--gray);
}

/* News & Updates */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.news-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: 0.3s;
}

.news-item:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.news-cat {
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.news-title {
    flex: 1;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-date {
    font-size: 0.75rem;
    color: var(--gray-dark);
}

.updates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.update-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

.update-content { flex: 1; min-width: 0; }
.update-title { font-size: 0.8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.update-meta { display: flex; justify-content: space-between; font-size: 0.65rem; margin-top: 3px; }
.update-status { color: var(--gold); }

/* Membership */
.membership-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.membership-info h2 { font-size: 2.5rem; margin-bottom: 25px; }
.membership-info ul { margin-bottom: 35px; }
.membership-info li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: #ccc; }
.membership-info li i { color: var(--gold); }
.membership-btns { display: flex; gap: 15px; }

.membership-qr { text-align: center; }
.qr-box {
    width: 180px;
    height: 180px;
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 15px;
}
.membership-qr p { font-weight: bold; }
.membership-qr .sub { font-size: 0.8rem; color: var(--gray); }

/* Footer */
footer {
    padding: 80px 0 40px;
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-brand p { font-size: 0.85rem; color: var(--gray); margin: 20px 0; }
.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-links a:hover { color: var(--gold); border-color: var(--gold); }

.footer-links h4, .footer-contact h4 { margin-bottom: 25px; color: var(--gold); }
.footer-links a { display: block; margin-bottom: 12px; font-size: 0.9rem; color: var(--gray); }
.footer-links a:hover { color: var(--gold); }

.footer-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-size: 0.85rem; color: var(--gray); }
.footer-contact i { color: var(--gold); }

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-dark);
}

/* Floating App */
.floating-app {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.floating-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    animation: bounce 2s infinite;
}

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

.floating-app span {
    background: rgba(0,0,0,0.8);
    color: var(--gold);
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Page Specifics */
.page-content { padding-top: 120px; padding-bottom: 80px; }
.page-header { margin-bottom: 50px; }
.page-header h1 { font-size: 3rem; margin-bottom: 10px; }

.search-tools { display: flex; gap: 20px; margin-bottom: 40px; }
.search-input-wrapper { position: relative; flex: 1; }
.search-input-wrapper i { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.5rem; }
.search-input-wrapper input { width: 100%; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 18px 20px 18px 60px; border-radius: 15px; color: #fff; font-size: 1.1rem; }
.tool-btns { display: flex; gap: 15px; }

.filter-container { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 20px; padding: 30px; margin-bottom: 50px; }
.filter-row { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.filter-row:last-child { margin-bottom: 0; }
.filter-row .label { color: var(--gray); font-size: 0.9rem; width: 60px; }
.filter-options { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-options button { background: none; border: none; color: #aaa; padding: 5px 15px; border-radius: 20px; cursor: pointer; font-size: 0.85rem; transition: 0.3s; }
.filter-options button:hover { color: var(--gold); }
.filter-options button.active { background: var(--gold); color: #000; font-weight: bold; }

.results-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.info-left { display: flex; align-items: center; gap: 20px; }
.badges { display: flex; gap: 10px; }
.badge-sm { background: rgba(212, 175, 55, 0.1); color: var(--gold); font-size: 0.65rem; padding: 2px 8px; border-radius: 4px; font-weight: bold; }
.view-tools { display: flex; gap: 10px; }
.view-tools button { background: rgba(255, 255, 255, 0.05); border: none; color: var(--gray); width: 35px; height: 35px; border-radius: 5px; cursor: pointer; }
.view-tools button.active { background: var(--gold); color: #000; }

.pagination { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 60px; }
.page-btn { width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: #aaa; cursor: pointer; transition: 0.3s; }
.page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-btn.active { background: var(--gold); color: #000; font-weight: bold; border-color: var(--gold); }
.page-btn.next { width: auto; padding: 0 20px; }

/* About Page */
.about-hero { text-align: center; max-width: 800px; margin: 0 auto 80px; }
.about-hero h1 { font-size: 4rem; margin-bottom: 20px; }
.about-hero p { font-size: 1.2rem; color: #aaa; }

.about-section { margin-bottom: 100px; }
.align-center { align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: 30px; border: 1px solid rgba(212, 175, 55, 0.2); }
.badge-large { position: absolute; bottom: -30px; right: -30px; background: var(--gold); padding: 30px; border-radius: 20px; text-align: center; color: #000; }
.badge-large .num { display: block; font-size: 2.5rem; font-weight: 900; line-height: 1; }
.badge-large .txt { font-size: 0.8rem; font-weight: bold; }

.about-text h2 { font-size: 2.5rem; margin-bottom: 25px; }
.about-text p { margin-bottom: 15px; color: #aaa; }

.culture-section { padding: 80px 0; background: rgba(255, 255, 255, 0.02); border-radius: 40px; margin-bottom: 100px; }
.culture-card { text-align: center; padding: 40px; }
.culture-icon { font-size: 3rem; color: var(--gold); margin-bottom: 20px; }

.team-section { margin-bottom: 100px; }
.team-card { text-align: center; }
.team-img { aspect-ratio: 1; border-radius: 20px; overflow: hidden; margin-bottom: 20px; border: 1px solid rgba(255, 255, 255, 0.1); }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.team-card:hover img { transform: scale(1.1); }

.vision-section { background: rgba(212, 175, 55, 0.05); border: 1px solid rgba(212, 175, 55, 0.1); border-radius: 40px; padding: 60px; }
.vision-content { display: flex; gap: 60px; align-items: center; }
.vision-text { flex: 1; }
.vision-text h2 { font-size: 2.5rem; margin-bottom: 40px; }
.vision-item { display: flex; gap: 20px; margin-bottom: 30px; }
.vision-item i { font-size: 1.8rem; }
.vision-img { width: 35%; }
.vision-img img { border-radius: 20px; }

/* Contact Page */
.contact-header { text-align: center; max-width: 800px; margin: 0 auto 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.info-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); padding: 40px; border-radius: 30px; }
.info-card h3 { font-size: 1.8rem; color: var(--gold); margin-bottom: 30px; }
.info-item { display: flex; gap: 15px; margin-bottom: 30px; }
.icon-box { width: 50px; height: 50px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #000; font-size: 1.2rem; }
.info-item h4 { font-size: 1rem; }
.info-item p { font-size: 0.9rem; color: #aaa; }
.info-item .sub { font-size: 0.75rem; color: var(--gray-dark); }
.social-follow { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 30px; }
.social-icons { display: flex; gap: 15px; margin-top: 15px; }
.social-icons a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; color: #aaa; }
.social-icons a:hover { color: var(--gold); border-color: var(--gold); }

.qr-panel { background: rgba(212, 175, 55, 0.05); border: 1px solid rgba(212, 175, 55, 0.1); padding: 40px; border-radius: 30px; text-align: center; margin-top: 30px; }
.qr-panel i { font-size: 3rem; margin-bottom: 15px; display: block; }

.form-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05); padding: 50px; border-radius: 30px; margin-bottom: 40px; }
.form-card h3 { font-size: 1.8rem; margin-bottom: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-size: 0.85rem; color: var(--gray); margin-bottom: 8px; margin-left: 5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 12px 15px; border-radius: 12px; color: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }

.map-box { height: 400px; border-radius: 30px; overflow: hidden; position: relative; }
.map-box img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: 1s; }
.map-box:hover img { transform: scale(1.05); }
.map-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; }
.map-info { background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); padding: 30px; border-radius: 20px; text-align: center; border: 1px solid rgba(212, 175, 55, 0.2); }

/* App Page */
.app-page { padding-top: 150px; padding-bottom: 100px; overflow: hidden; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.app-content h1 { font-size: 5rem; line-height: 1.1; margin-bottom: 30px; }
.app-content p { font-size: 1.2rem; color: #aaa; margin-bottom: 50px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 50px; }
.feature-item { display: flex; gap: 15px; align-items: center; background: rgba(255, 255, 255, 0.03); padding: 20px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.05); }
.download-btns { display: flex; gap: 20px; }

.app-visual { position: relative; }
.phone-mockup { width: 300px; height: 600px; background: #000; border: 8px solid rgba(255, 255, 255, 0.1); border-radius: 50px; margin: 0 auto; position: relative; z-index: 10; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.phone-mockup img { width: 100%; height: 100%; object-fit: cover; }
.mockup-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); text-align: center; }
.mockup-logo { width: 70px; height: 70px; background: var(--gold); border-radius: 20px; display: flex; align-items: center; justify-content: center; color: #000; font-size: 2.5rem; margin: 0 auto 15px; }
.glow-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 500px; height: 500px; background: var(--gold); border-radius: 50%; filter: blur(100px); opacity: 0.1; z-index: 1; }

/* Responsive */
@media (max-width: 1024px) {
    .movie-grid { grid-template-columns: repeat(4, 1fr); }
    .hero h1 { font-size: 3rem; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .app-grid { grid-template-columns: 1fr; text-align: center; }
    .feature-grid { justify-content: center; }
    .download-btns { justify-content: center; }
}

@media (max-width: 768px) {
    .desktop-nav, .header-tools .search-bar, .header-tools .login-btn { display: none; }
    .mobile-menu-btn { display: block; }
    .movie-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .membership-card { flex-direction: column; text-align: center; padding: 40px 20px; }
    .membership-info { margin-bottom: 40px; }
    .membership-info h2 { font-size: 1.8rem; }
    .membership-btns { justify-content: center; }
    .vision-content { flex-direction: column; }
    .vision-img { width: 100%; }
    .form-row { grid-template-columns: 1fr; }
}
