/* ================================================
   ELOUISA MODERN CSS - Mobile First Design
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

/* ================================================
   CSS VARIABLES
   ================================================ */
:root {
    /* Brand Colors */
    --primary-bg: #1A0E1C;
    --secondary-bg: #2b0342;
    --card-bg: #251229;
    --card-hover: #3a1a42;
    
    /* Accent Colors */
    --gold: #CB9A50;
    --gold-light: #ffda6a;
    --gold-hover: #e5b060;
    
    /* Purple Palette */
    --purple-dark: #4b0082;
    --purple-medium: #5E1A6C;
    --purple-light: #9900E5;
    --purple-glow: rgba(153, 0, 229, 0.3);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    
    /* Gradients */
    --gradient-purple: linear-gradient(135deg, #5E1A6C 0%, #9900E5 100%);
    --gradient-gold: linear-gradient(135deg, #CB9A50 0%, #ffda6a 100%);
    --gradient-card: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    --gradient-hero: linear-gradient(180deg, transparent 0%, var(--primary-bg) 100%);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--purple-glow);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Poppins', sans-serif;
}

/* ================================================
   MODERN HEADER - HIGH SPECIFICITY OVERRIDES
   ================================================ */
header.header-modern {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: #1A0E1C !important;
    border-bottom: 1px solid rgba(203, 154, 80, 0.15) !important;
    padding: 0 !important;
    margin: 0 !important;
}

header.header-modern .header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 16px !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
    gap: 16px !important;
}

@media (min-width: 768px) {
    header.header-modern .header-container {
        padding: 14px 32px !important;
    }
}

@media (min-width: 1200px) {
    header.header-modern .header-container {
        padding: 14px 48px !important;
    }
}

/* Logo */
header.header-modern .header-logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

header.header-modern .header-logo img {
    height: 36px !important;
    width: auto !important;
}

@media (min-width: 768px) {
    header.header-modern .header-logo img {
        height: 44px !important;
    }
}

/* Desktop Navigation */
header.header-modern .header-nav {
    display: none !important;
    align-items: center !important;
    gap: 4px !important;
    flex: 1 !important;
    justify-content: center !important;
}

@media (min-width: 992px) {
    header.header-modern .header-nav {
        display: flex !important;
    }
}

header.header-modern .header-nav .nav-link-modern {
    padding: 10px 18px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    text-transform: none !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
}

header.header-modern .header-nav .nav-link-modern:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

header.header-modern .header-nav .nav-link-modern.active {
    color: #CB9A50 !important;
    background: rgba(203, 154, 80, 0.1) !important;
}

/* Header Actions */
header.header-modern .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
}

header.header-modern .header-icon-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: rgba(255, 255, 255, 0.7) !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-size: 15px !important;
}

header.header-modern .header-icon-btn:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* User Avatar */
header.header-modern .user-menu {
    position: relative !important;
}

header.header-modern .user-avatar {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 2px solid #CB9A50 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    overflow: hidden !important;
    transition: all 0.2s ease !important;
}

header.header-modern .user-avatar:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 0 20px rgba(203, 154, 80, 0.5) !important;
}

header.header-modern .user-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
}

/* Dropdown Menu */
header.header-modern .dropdown-menu-modern {
    background: #251229 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 8px 0 !important;
    min-width: 220px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
    margin-top: 8px !important;
}

header.header-modern .dropdown-menu-modern .dropdown-header {
    padding: 12px 16px !important;
    background: transparent !important;
}

header.header-modern .dropdown-menu-modern .user-greeting {
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
}

header.header-modern .dropdown-menu-modern .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1) !important;
    margin: 4px 0 !important;
}

header.header-modern .dropdown-menu-modern .dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 16px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    transition: all 0.15s ease !important;
    background: transparent !important;
}

header.header-modern .dropdown-menu-modern .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

header.header-modern .dropdown-menu-modern .dropdown-item i {
    width: 18px !important;
    text-align: center !important;
    font-size: 14px !important;
    opacity: 0.7 !important;
}

header.header-modern .dropdown-menu-modern .dropdown-item.text-danger {
    color: #ff6b6b !important;
}

header.header-modern .dropdown-menu-modern .dropdown-item.text-danger:hover {
    background: rgba(255, 107, 107, 0.1) !important;
}

/* Header Buttons */
header.header-modern .btn-header {
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 20px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

@media (min-width: 768px) {
    header.header-modern .btn-header {
        display: inline-flex !important;
    }
}

header.header-modern .btn-header-outline {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
}

header.header-modern .btn-header-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #ffffff !important;
}

header.header-modern .btn-header-gold {
    background: #CB9A50 !important;
    border: 1px solid #CB9A50 !important;
    color: #1a1a1a !important;
}

header.header-modern .btn-header-gold:hover {
    background: #e5b060 !important;
    border-color: #e5b060 !important;
    color: #1a1a1a !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(203, 154, 80, 0.4) !important;
}

/* Mobile Menu Button */
header.header-modern .mobile-menu-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: #CB9A50 !important;
    border: none !important;
    border-radius: 8px !important;
    color: #1a1a1a !important;
    font-size: 18px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

header.header-modern .mobile-menu-btn:hover {
    background: #e5b060 !important;
    transform: scale(1.05) !important;
}

@media (min-width: 992px) {
    header.header-modern .mobile-menu-btn {
        display: none !important;
    }
}

/* ================================================
   MOBILE NAVIGATION DRAWER
   ================================================ */
.mobile-nav-modern.offcanvas {
    background: #1A0E1C !important;
    border-left: 1px solid rgba(203, 154, 80, 0.2) !important;
    max-width: 320px !important;
    width: 85% !important;
}

.mobile-nav-modern .offcanvas-header {
    padding: 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.mobile-nav-modern .offcanvas-header .header-logo img {
    height: 36px !important;
}

.mobile-nav-modern .btn-close-modern {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    cursor: pointer !important;
    font-size: 16px !important;
}

.mobile-nav-modern .offcanvas-body {
    padding: 20px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    overflow-y: auto !important;
}

/* Mobile User Info */
.mobile-nav-modern .mobile-user-info {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 16px !important;
    background: rgba(203, 154, 80, 0.08) !important;
    border: 1px solid rgba(203, 154, 80, 0.2) !important;
    border-radius: 12px !important;
}

.mobile-nav-modern .mobile-avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 2px solid #CB9A50 !important;
    flex-shrink: 0 !important;
}

.mobile-nav-modern .mobile-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.mobile-nav-modern .mobile-user-details {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.mobile-nav-modern .mobile-user-name {
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
}

.mobile-nav-modern .mobile-user-link {
    color: #CB9A50 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    text-decoration: none !important;
}

/* Mobile Search */
.mobile-nav-modern .mobile-search {
    display: flex !important;
    gap: 10px !important;
}

.mobile-nav-modern .mobile-search input {
    flex: 1 !important;
    padding: 12px 16px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
}

.mobile-nav-modern .mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.mobile-nav-modern .mobile-search input:focus {
    outline: none !important;
    border-color: #CB9A50 !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.mobile-nav-modern .mobile-search button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    background: #CB9A50 !important;
    border: none !important;
    border-radius: 4px !important;
    color: #1a1a1a !important;
    cursor: pointer !important;
    font-size: 15px !important;
    flex-shrink: 0 !important;
}

/* Mobile Nav Links */
.mobile-nav-modern .mobile-nav-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.mobile-nav-modern .mobile-nav-links a {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 14px 16px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    background: transparent !important;
}

.mobile-nav-modern .mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
}

.mobile-nav-modern .mobile-nav-links a.active {
    background: rgba(203, 154, 80, 0.12) !important;
    color: #CB9A50 !important;
}

.mobile-nav-modern .mobile-nav-links a i {
    width: 22px !important;
    text-align: center !important;
    color: #CB9A50 !important;
    font-size: 16px !important;
}

/* Mobile Nav Section */
.mobile-nav-modern .mobile-nav-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: 20px !important;
}

.mobile-nav-modern .mobile-nav-section-title {
    display: block !important;
    padding: 0 16px 10px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
}

/* Mobile Footer Links */
.mobile-nav-modern .mobile-nav-footer {
    margin-top: auto !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
}

.mobile-nav-modern .mobile-nav-footer-link {
    color: rgba(255, 255, 255, 0.5) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    text-decoration: none !important;
}

.mobile-nav-modern .mobile-nav-footer-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.mobile-nav-modern .mobile-logout {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 14px !important;
    margin-top: 12px !important;
    background: rgba(255, 107, 107, 0.1) !important;
    border: 1px solid rgba(255, 107, 107, 0.2) !important;
    border-radius: 4px !important;
    color: #ff6b6b !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    text-decoration: none !important;
}

/* Mobile Guest Actions */
.mobile-nav-modern .mobile-guest-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: auto !important;
}

.mobile-nav-modern .btn-mobile {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}

.mobile-nav-modern .btn-mobile-outline {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
}

.mobile-nav-modern .btn-mobile-gold {
    background: #CB9A50 !important;
    border: 1px solid #CB9A50 !important;
    color: #1a1a1a !important;
}

/* ================================================
   BODY PADDING FOR FIXED HEADER
   ================================================ */
body {
    padding-top: 64px !important;
}

@media (min-width: 768px) {
    body {
        padding-top: 72px !important;
    }
}

/* ================================================
   BASE STYLES
   ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.container-modern {
    width: 100%;
    padding: 0 var(--space-md);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .container-modern {
        padding: 0 var(--space-xl);
    }
}

@media (min-width: 1200px) {
    .container-modern {
        padding: 0 var(--space-2xl);
        max-width: 1600px;
    }
}

.section-spacing {
    padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
    .section-spacing {
        padding: var(--space-3xl) 0;
    }
}

/* ================================================
   SECTION HEADER
   ================================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 16px;
    margin: 0;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #CB9A50;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 1.25rem;
    }
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}

.view-all-link:hover {
    color: #CB9A50;
}

.view-all-link i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.view-all-link:hover i {
    transform: translateX(3px);
}

/* ================================================
   HERO CAROUSEL - Banner Style
   ================================================ */
.hero-carousel {
    position: relative !important;
    width: 100% !important;
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    overflow: hidden !important;
    background: #1A0E1C !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

@media (min-width: 576px) {
    .hero-carousel {
        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;
    }
}

@media (min-width: 768px) {
    .hero-carousel {
        height: 380px !important;
        min-height: 380px !important;
        max-height: 380px !important;
    }
}

@media (min-width: 1024px) {
    .hero-carousel {
        height: 420px !important;
        min-height: 420px !important;
        max-height: 420px !important;
    }
}

@media (min-width: 1400px) {
    .hero-carousel {
        height: 480px !important;
        min-height: 480px !important;
        max-height: 480px !important;
    }
}

.hero-carousel .carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100% !important;
    background: transparent !important;
}

.hero-slide {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
}

.hero-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
        0deg,
        #1A0E1C 0%,
        rgba(26, 14, 28, 0.7) 40%,
        rgba(26, 14, 28, 0.3) 70%,
        rgba(26, 14, 28, 0.4) 100%
    ) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.hero-content {
    position: absolute !important;
    bottom: 24px !important;
    left: 16px !important;
    right: 16px !important;
    z-index: 2 !important;
}

@media (min-width: 768px) {
    .hero-content {
        bottom: 36px !important;
        left: 40px !important;
        right: 40px !important;
        max-width: 550px !important;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        bottom: 48px !important;
        left: 56px !important;
    }
}

.hero-title {
    font-family: 'Inter', -apple-system, sans-serif !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
    color: #ffffff !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7) !important;
    letter-spacing: -0.3px !important;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 16px !important;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
}

.hero-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #CB9A50 !important;
    color: #1a1a1a !important;
    padding: 12px 24px !important;
    border-radius: 4px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.3px !important;
    transition: all 0.2s ease !important;
    border: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.hero-cta:hover {
    background: #e5b060 !important;
    color: #1a1a1a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(203, 154, 80, 0.4) !important;
}

.hero-cta i {
    font-size: 11px !important;
}

/* Carousel Indicators */
.hero-carousel .carousel-indicators {
    bottom: 12px !important;
    margin-bottom: 0 !important;
    gap: 6px !important;
}

.hero-carousel .carousel-indicators button {
    width: 28px !important;
    height: 3px !important;
    border-radius: 2px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.hero-carousel .carousel-indicators button.active {
    background: #CB9A50 !important;
    width: 40px !important;
}

@media (min-width: 768px) {
    .hero-carousel .carousel-indicators {
        bottom: 20px !important;
    }
}

/* Override old home styles */
.home-page .home {
    background: none !important;
    background-image: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.home-page section.home {
    display: none !important;
}

/* ================================================
   CONTENT GRID - MOVIE/TV CARDS
   ================================================ */
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (min-width: 480px) {
    .content-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .content-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1400px) {
    .content-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ================================================
   MOVIE CARD - Portrait (2:3 aspect ratio)
   ================================================ */
.movie-card-modern {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--card-bg);
    transition: var(--transition-normal);
    cursor: pointer;
}

.movie-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    z-index: 10;
}

.movie-card-modern .card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Square for your 500x500 images */
    overflow: hidden;
}

.movie-card-modern .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.movie-card-modern:hover .card-image img {
    transform: scale(1.1);
}

.movie-card-modern .card-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
}

.movie-card-modern:hover .card-overlay {
    opacity: 1;
}

.movie-card-modern .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.25rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.movie-card-modern:hover .play-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* ================================================
   LIVE TV CARD - Portrait (9:16 aspect ratio)
   ================================================ */
.live-card-modern {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--card-bg);
    transition: var(--transition-normal);
}

.live-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.live-card-modern .card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Landscape for live TV */
    overflow: hidden;
    background: #1a1a1a;
}

.live-card-modern .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-normal);
}

.live-card-modern:hover .card-image img {
    transform: scale(1.05);
}

.live-card-modern .live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e53935;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-card-modern .live-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: live-pulse 1.5s infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.live-card-modern .card-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md) var(--space-sm);
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
}

@media (min-width: 768px) {
    .live-card-modern .card-name {
        font-size: 0.85rem;
    }
}

/* ================================================
   HORIZONTAL SCROLL ROW (for carousels)
   ================================================ */
.scroll-row {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: var(--space-sm) 0;
    margin: 0 calc(var(--space-md) * -1);
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    -webkit-overflow-scrolling: touch;
}

.scroll-row::-webkit-scrollbar {
    display: none;
}

.scroll-row {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroll-row > * {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

/* Scroll item sizes */
.scroll-row .movie-card-modern {
    width: 140px;
}

.scroll-row .live-card-modern {
    width: 200px;
}

@media (min-width: 768px) {
    .scroll-row {
        margin: 0 calc(var(--space-xl) * -1);
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
        gap: var(--space-lg);
    }
    
    .scroll-row .movie-card-modern {
        width: 180px;
    }
    
    .scroll-row .live-card-modern {
        width: 260px;
    }
}

@media (min-width: 1200px) {
    .scroll-row .movie-card-modern {
        width: 200px;
    }
    
    .scroll-row .live-card-modern {
        width: 300px;
    }
}

/* ================================================
   AD BANNER
   ================================================ */
.ad-banner {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: var(--space-xl) 0;
}

.ad-banner img {
    width: 100%;
    height: auto;
    aspect-ratio: 21 / 9;
    object-fit: cover;
}

@media (min-width: 768px) {
    .ad-banner {
        margin: var(--space-3xl) 0;
    }
    
    .ad-banner img {
        aspect-ratio: 3 / 1;
    }
}

/* ================================================
   FAQ SECTION - Modern Accordion
   ================================================ */
.faq-section {
    background: linear-gradient(180deg, transparent 0%, rgba(94, 26, 108, 0.08) 100%);
    padding: 48px 0;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 64px 0;
    }
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

@media (min-width: 768px) {
    .faq-header h2 {
        font-size: 2rem;
    }
}

.faq-header p {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-item {
    background: #251229;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(203, 154, 80, 0.2);
}

.faq-item.active {
    border-color: rgba(203, 154, 80, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #ffffff;
}

.faq-question .number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(203, 154, 80, 0.15);
    color: #CB9A50;
    border-radius: 4px;
    margin-right: 14px;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-question .icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    color: #CB9A50;
}

.faq-answer {
    padding: 0 20px 20px;
    padding-left: 60px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ================================================
   SEARCH SECTION
   ================================================ */
.search-section {
    padding: 48px 0;
    text-align: center;
}

.search-box-modern {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 0;
}

.search-box-modern input {
    flex: 1;
    padding: 16px 20px;
    background: #251229;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.2s ease;
}

.search-box-modern input:focus {
    outline: none;
    border-color: #CB9A50;
    background: #2d1632;
}

.search-box-modern input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-box-modern button {
    width: 56px;
    background: #CB9A50;
    border: 1px solid #CB9A50;
    border-radius: 0 4px 4px 0;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.search-box-modern button:hover {
    background: #e5b060;
    border-color: #e5b060;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-gold {
    background: #CB9A50;
    color: #1a1a1a;
}

.btn-gold:hover {
    background: #e5b060;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(203, 154, 80, 0.35);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
}

.btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}

/* ================================================
   SKELETON LOADING
   ================================================ */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--card-bg) 25%,
        var(--card-hover) 50%,
        var(--card-bg) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    border-radius: var(--radius-md);
    aspect-ratio: 1 / 1;
}

/* ================================================
   RESPONSIVE ADJUSTMENTS
   ================================================ */
@media (max-width: 374px) {
    .section-title {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.25rem;
    }
    
    .movie-card-modern .card-title {
        font-size: 0.7rem;
    }
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
}

/* Stagger children animations */
.stagger-children > *:nth-child(1) { animation-delay: 0.05s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.15s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.25s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.3s; }

/* ================================================
   HERO SECONDARY BUTTON & SUBTITLE
   ================================================ */
.hero-buttons {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.hero-cta-secondary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: transparent !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    border: 1px solid rgba(255,255,255,0.4) !important;
    border-radius: 4px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}

.hero-cta-secondary:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    color: rgba(255,255,255,0.7) !important;
    margin-bottom: 16px !important;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 16px !important;
    }
}

/* ================================================
   CATEGORIES STRIP
   ================================================ */
.categories-strip {
    background: rgba(203, 154, 80, 0.08);
    border-top: 1px solid rgba(203, 154, 80, 0.15);
    border-bottom: 1px solid rgba(203, 154, 80, 0.15);
    padding: 16px 0;
}

.categories-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .categories-row {
        gap: 16px;
    }
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: transparent;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 70px;
}

@media (min-width: 768px) {
    .category-item {
        flex-direction: row;
        gap: 10px;
        padding: 12px 20px;
        min-width: auto;
    }
}

.category-item:hover {
    background: rgba(203, 154, 80, 0.15);
}

.category-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(203, 154, 80, 0.2);
    border-radius: 8px;
    color: #CB9A50;
    font-size: 16px;
}

.category-item span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

@media (min-width: 768px) {
    .category-item span {
        font-size: 14px;
    }
}

/* ================================================
   WHY SECTION
   ================================================ */
.why-section {
    padding: 48px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(94, 26, 108, 0.06) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.why-card {
    background: #251229;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: all 0.2s ease;
}

.why-card:hover {
    border-color: rgba(203, 154, 80, 0.3);
    transform: translateY(-4px);
}

.why-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(203, 154, 80, 0.15);
    border-radius: 12px;
    color: #CB9A50;
    font-size: 24px;
    margin: 0 auto 16px;
}

.why-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.why-card p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    margin: 0;
}

/* ================================================
   PRICING SECTION
   ================================================ */
.pricing-section {
    padding: 56px 0;
    background: #1A0E1C;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.pricing-header p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.5);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-grid-3 {
    max-width: 1000px;
}

@media (min-width: 600px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .pricing-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    background: #251229;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    border-color: rgba(203, 154, 80, 0.3);
}

.pricing-card.featured {
    border-color: #CB9A50;
    background: linear-gradient(180deg, rgba(203, 154, 80, 0.1) 0%, #251229 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #CB9A50;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
}

.pricing-price .currency {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #CB9A50;
    margin-top: 10px;
}

.pricing-price .amount {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.pricing-duration {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.pricing-savings {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #CB9A50;
    font-size: 12px;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: #CB9A50;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pricing-btn:hover {
    background: #e5b060;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* ================================================
   DEVICES SECTION
   ================================================ */
.devices-section {
    padding: 56px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(94, 26, 108, 0.06) 0%, transparent 100%);
}

.devices-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.devices-section > div > p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
}

.devices-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .devices-grid {
        gap: 48px;
    }
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.device-item i {
    font-size: 32px;
    color: #CB9A50;
}

@media (min-width: 768px) {
    .device-item i {
        font-size: 40px;
    }
}

.device-item span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* ================================================
   FINAL CTA SECTION
   ================================================ */
.final-cta {
    padding: 64px 0;
    text-align: center;
    background: linear-gradient(180deg, #251229 0%, #1A0E1C 100%);
    border-top: 1px solid rgba(203, 154, 80, 0.1);
}

.final-cta h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.final-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
}

.btn-large {
    padding: 16px 36px !important;
    font-size: 15px !important;
}

.btn-large i {
    margin-left: 4px;
}
