/* CSS Variables for Theme Colors */
:root {
    /* Light Theme (Default) */
    --primary-color: #133978;
    --secondary-color: #ffffff;
    --accent-color: #133978;
    --text-color: #000000;
    --bg-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.8);
    --border-color: rgba(19, 57, 120, 0.2);
    --hover-color: #1e4a8c;
    --nav-text: #ffffff;
    --nav-bg: #133978;
}

[data-theme="dark"] {
    /* Dark Theme */
    --primary-color: #133978;
    --secondary-color: #000000;
    --accent-color: #FFD700;
    --text-color: #ffffff;
    --bg-color: #000000;
    --card-bg: #1a1a1a;
    --border-color: #333;
    --hover-color: #1e4a8c;
    --nav-text: #ffffff;
    --nav-bg: #133978;
}

/* Light mode specific overrides */
html:not([data-theme="dark"]) .logo {
    color: var(--nav-text) !important;
}

html:not([data-theme="dark"]) .nav-container::after {
    color: var(--nav-text) !important;
}

[data-theme="light"] .logo {
    color: var(--nav-text) !important;
}

[data-theme="light"] .nav-container::after {
    color: var(--nav-text) !important;
}

[data-theme="dark"] .logo {
    color: var(--nav-text) !important;
}

[data-theme="dark"] .nav-container::after {
    color: var(--nav-text) !important;
}

/* Ensure logo is always white regardless of theme */
.navbar .logo {
    color: #ffffff !important;
}

.navbar .nav-container::after {
    color: #ffffff !important;
}

/* Light mode badge overrides - default light mode (no data-theme attribute) */
html:not([data-theme="dark"]) .season-badge {
    background: #000000 !important;
    color: #ffffff !important;
}

html:not([data-theme="dark"]) .year-badge {
    background: #133978 !important;
    color: #ffffff !important;
}

html:not([data-theme="dark"]) .season-badge.movie-badge {
    background: #000000 !important;
    color: #ffffff !important;
}

/* More specific selectors for movie cards in light mode */
html:not([data-theme="dark"]) .movie-card .season-badge {
    background: #000000 !important;
    color: #ffffff !important;
}

html:not([data-theme="dark"]) .movie-card .year-badge {
    background: #133978 !important;
    color: #ffffff !important;
}

html:not([data-theme="dark"]) .movie-card .season-badge.movie-badge {
    background: #000000 !important;
    color: #ffffff !important;
}

/* Additional overrides for movie meta in light mode */
html:not([data-theme="dark"]) .movie-meta .season-badge {
    background: #000000 !important;
    color: #ffffff !important;
}

html:not([data-theme="dark"]) .movie-meta .year-badge {
    background: #133978 !important;
    color: #ffffff !important;
}

html:not([data-theme="dark"]) .movie-meta .season-badge.movie-badge {
    background: #000000 !important;
    color: #ffffff !important;
}

/* Explicit light mode overrides (if data-theme="light" is ever set) */
[data-theme="light"] .season-badge {
    background: #000000 !important;
    color: #ffffff !important;
}

[data-theme="light"] .year-badge {
    background: #133978 !important;
    color: #ffffff !important;
}

[data-theme="light"] .season-badge.movie-badge {
    background: #000000 !important;
    color: #ffffff !important;
}

/* Dark mode hero section - enhanced visibility */
:root .hero-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.5) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(19, 57, 120, 0.7) 1px, transparent 1px);
    opacity: 0.4;
}

:root .hero-gradient {
    background: linear-gradient(135deg, 
        var(--bg-color) 0%, 
        rgba(19, 57, 120, 0.12) 30%,
        rgba(255, 215, 0, 0.08) 50%, 
        rgba(19, 57, 120, 0.12) 70%,
        var(--bg-color) 100%);
}

/* Dark mode hero background enhancement */
:root .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(19, 57, 120, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Light mode hero section */
[data-theme="light"] .hero-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, var(--primary-color) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--primary-color) 1px, transparent 1px);
    opacity: 0.05;
}

[data-theme="light"] .hero-gradient {
    background: linear-gradient(135deg, 
        var(--bg-color) 0%, 
        rgba(19, 57, 120, 0.02) 50%, 
        var(--bg-color) 100%);
}

[data-theme="light"] .floating-card {
    box-shadow: 0 10px 30px rgba(19, 57, 120, 0.15);
}

[data-theme="light"] .decoration-circle {
    border-color: var(--primary-color);
    opacity: 0.08;
}

/* Light mode menu and search styling */
[data-theme="light"] .mobile-menu {
    background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
    box-shadow: 0 8px 32px rgba(19, 57, 120, 0.3);
}

[data-theme="light"] .search-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
    box-shadow: 0 8px 32px rgba(19, 57, 120, 0.2);
}

[data-theme="light"] .search-input {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-color: rgba(19, 57, 120, 0.2);
}

[data-theme="light"] .search-input:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(19, 57, 120, 0.25);
}

[data-theme="light"] .search-icon {
    color: var(--primary-color);
}

/* Light mode Browse Library button for large screens only */
@media (min-width: 769px) {
    [data-theme="light"] .hero-actions .cta-secondary {
        background: white !important;
        color: var(--primary-color) !important;
        border: 2px solid var(--primary-color) !important;
    }
    
    [data-theme="light"] .hero-actions .cta-secondary:hover {
        background: var(--primary-color) !important;
        color: white !important;
    }
}

/* Menu toggle animation */
.menu-toggle,
.search-toggle {
    transition: all 0.3s ease;
}

.menu-toggle:hover,
.search-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle:active,
.search-toggle:active {
    transform: scale(0.95);
}

/* Navbar scroll effect */
.navbar.scrolled {
    background-color: rgba(19, 57, 120, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile menu item animations */
.mobile-nav-link {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
}

/* Search input focus ring */
.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(19, 57, 120, 0.1), 0 8px 30px rgba(19, 57, 120, 0.2);
}

/* Mobile search box adjustments */
@media (max-width: 768px) {
    .search-box {
        padding: 0.8rem 1rem;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .search-input {
        padding: 0.8rem 1.2rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .search-icon {
        left: 0.8rem;
        font-size: 1rem;
    }
    
    .search-btn {
        width: 2.5rem;
        height: 2.5rem;
        right: 0.4rem;
    }
}

@media (max-width: 480px) {
    .search-box {
        padding: 0.6rem 0.8rem;
    }
    
    .search-input {
        padding: 0.7rem 1rem 0.7rem 2.2rem;
        font-size: 0.85rem;
    }
    
    .search-icon {
        left: 0.7rem;
        font-size: 0.9rem;
    }
    
    .search-btn {
        width: 2.2rem;
        height: 2.2rem;
        right: 0.3rem;
    }
}

@media (max-width: 390px) {
    .search-box {
        padding: 0.5rem 0.6rem;
    }
    
    .search-input {
        padding: 0.6rem 0.8rem 0.6rem 2rem;
        font-size: 0.8rem;
    }
    
    .search-icon {
        left: 0.6rem;
        font-size: 0.8rem;
    }
    
    .search-btn {
        width: 2rem;
        height: 2rem;
        right: 0.2rem;
    }
}

/* Search Results */
.search-results {
    display: none;
    padding: 4rem 0 2rem 0;
    background: var(--bg-color);
    margin-top: 2rem;
    min-height: 400px;
}

.search-results.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.search-results .movie-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    justify-items: center;
    min-height: 200px;
}

#searchMovieGrid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    justify-items: center;
}

/* Search Results Responsive */
@media (max-width: 768px) {
    .search-results {
        padding: 4rem 0 1.5rem 0;
        margin-top: 2rem;
    }
    
    .search-results .movie-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .search-results-header {
        flex-direction: column;
        text-align: center;
    }
    
    .search-results-info {
        text-align: center;
    }
    
    /* Make search results season calendar and content sections smaller */
    .search-results .season-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .search-results .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .search-results .season-card,
    .search-results .content-card {
        padding: 1.5rem 1rem;
    }
    
    .search-results .season-svg,
    .search-results .content-svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .search-results {
        padding: 5rem 0 1rem 0;
        margin-top: 2.5rem;
    }
    
    .search-results .movie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    
    .search-results .season-card,
    .search-results .content-card {
        padding: 1.2rem 0.8rem;
    }
    
    .search-results .season-svg,
    .search-results .content-svg {
        width: 35px;
        height: 35px;
    }
    
    .search-results .season-card h3,
    .search-results .content-card h3 {
        font-size: 1rem;
    }
    
    .search-results .season-card p,
    .search-results .content-card p {
        font-size: 0.75rem;
    }
}

@media (max-width: 390px) {
    .search-results {
        padding: 6rem 0 0.8rem 0;
        margin-top: 3rem;
    }
    
    .search-results .movie-grid {
        gap: 0.3rem;
    }
    
    .search-results .season-card,
    .search-results .content-card {
        padding: 1rem 0.6rem;
    }
    
    .search-results .season-svg,
    .search-results .content-svg {
        width: 30px;
        height: 30px;
    }
    
    .search-results .season-card h3,
    .search-results .content-card h3 {
        font-size: 0.9rem;
    }
    
    .search-results .season-card p,
    .search-results .content-card p {
        font-size: 0.7rem;
    }
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-results-info {
    text-align: left;
}

.search-results-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.search-results-count {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

.clear-search-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 3px 10px rgba(19, 57, 120, 0.2);
}

.clear-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(19, 57, 120, 0.3);
}

.clear-search-btn:active {
    transform: translateY(0px);
}

.no-results {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-color);
    opacity: 0.7;
}

.no-results h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.no-results p {
    font-size: 0.9rem;
}

/* Hide sections during search */
.searching .hero,
.searching .featured-section,
.searching .season-calendar,
.searching .content-section,
.searching .disclaimer {
    display: none;
}

/* Backdrop blur support check */
@supports not (backdrop-filter: blur(10px)) {
    .mobile-menu {
        background: var(--primary-color);
    }
    
    .search-box {
        background: rgba(255, 255, 255, 0.98);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent image dragging and right-click download */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* Ensure consistent font across all elements */
h1, h2, h3, h4, h5, h6, p, span, div, a, button, input {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--nav-bg);
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-center {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.4rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--nav-text);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
}

.logo:hover {
    color: var(--nav-text);
    text-decoration: none;
    opacity: 0.8;
}



.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.15);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.nav-icon {
    font-size: 0.8rem;
    margin-right: 0.5rem;
    transition: color 0.2s ease;
}

.nav-link:hover .nav-icon {
    color: var(--accent-color);
}

.nav-link.active .nav-icon {
    color: var(--accent-color);
}

.nav-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}



.search-toggle,
.theme-toggle {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.4rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover,
.theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(19, 57, 120, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: none;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    overflow: hidden;
}

.mobile-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 1.4rem 2rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(180deg, var(--accent-color) 0%, rgba(255, 215, 0, 0.8) 50%, var(--accent-color) 100%);
    transform: scaleY(0);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: bottom;
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--accent-color) 0%, rgba(255, 215, 0, 0.8) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    transform: scaleY(1);
    transform-origin: top;
}

.mobile-nav-link:hover::after,
.mobile-nav-link.active::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 215, 0, 0.1) 50%, rgba(255, 255, 255, 0.08) 100%);
    padding-left: 2.8rem;
    color: white;
    transform: translateX(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.mobile-nav-link:active {
    transform: translateX(6px) scale(0.97);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 215, 0, 0.15) 50%, rgba(255, 255, 255, 0.1) 100%);
}

.mobile-nav-icon {
    font-size: 1rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
    width: 20px;
    text-align: center;
}

.mobile-nav-link:hover .mobile-nav-icon,
.mobile-nav-link.active .mobile-nav-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.search-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.search-box.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: white;
    color: #333333;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(19, 57, 120, 0.2);
}

.search-input::placeholder {
    color: #666666;
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.search-input:focus::placeholder {
    opacity: 0.7;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.search-input:focus + .search-icon {
    color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--hover-color);
    border-color: var(--hover-color);
}

.search-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    margin-top: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-color);
    opacity: 0.25;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--primary-color) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--accent-color) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--bg-color) 0%, 
        rgba(19, 57, 120, 0.05) 50%, 
        var(--bg-color) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(19, 57, 120, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-color);
    margin: 0;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 500px;
    margin: 0;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 500;
    margin-top: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
    color: white;
    box-shadow: 0 4px 15px rgba(19, 57, 120, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 57, 120, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 3D Carousel Slider Styling */
.carousel-slider {
    position: relative;
    width: 100%;
    height: 350px;
    margin: 0 auto;
    perspective: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    position: absolute;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    will-change: transform, opacity;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Center slide - largest */
.carousel-slide.center {
    width: 200px;
    height: 300px;
    z-index: 3;
    transform: translateX(0) translateZ(0);
    opacity: 1;
    top: 50%;
    left: 50%;
    margin-top: -150px;
    margin-left: -100px;
}

/* Left slide - smaller */
.carousel-slide.left {
    width: 140px;
    height: 210px;
    z-index: 2;
    transform: translateX(-120px) translateZ(-50px);
    opacity: 0.7;
    top: 50%;
    left: 50%;
    margin-top: -105px;
    margin-left: -70px;
}

/* Right slide - smaller */
.carousel-slide.right {
    width: 140px;
    height: 210px;
    z-index: 2;
    transform: translateX(120px) translateZ(-50px);
    opacity: 0.7;
    top: 50%;
    left: 50%;
    margin-top: -105px;
    margin-left: -70px;
}

/* Hidden slides */
.carousel-slide.hidden {
    opacity: 0;
    transform: translateZ(-100px);
    z-index: 1;
    top: 50%;
    left: 50%;
    margin-top: -150px;
    margin-left: -100px;
}

/* Position-based slide animations - no zoom */
.carousel-slide.slide-out-back {
    transform: translateZ(-200px);
    opacity: 0;
}

.carousel-slide.slide-in-front {
    transform: translateZ(0);
    opacity: 1;
}

/* Hover effects */
.carousel-slide:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.carousel-slide.center:hover img {
    transform: scale(1.02);
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(19, 57, 120, 0.9), rgba(30, 74, 140, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    opacity: 0.8;
}

.carousel-arrow:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(19, 57, 120, 0.4);
    opacity: 1;
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow-left {
    left: -25px;
}

.carousel-arrow-right {
    right: -25px;
}

.carousel-arrow i {
    transition: transform 0.2s ease;
}

.carousel-arrow:hover i {
    transform: scale(1.1);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border: 2px solid var(--primary-color);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 20%;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-direction: reverse;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 10%;
    animation-duration: 15s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Sections */
.featured-section,
.season-calendar,
.content-section,
.categories {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Featured Posts Header */
.featured-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.featured-icon-left,
.featured-icon-right {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.featured-icon-left:hover,
.featured-icon-right:hover {
    opacity: 1;
    transform: scale(1.1);
}

.featured-icon-left svg,
.featured-icon-right svg {
    width: 100%;
    height: 100%;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Movie Grid */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    justify-items: center;
}

.movie-card {
    width: 180px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    /* Better touch targets for mobile */
    min-height: 44px;
    position: relative;
}

.movie-card:hover {
    transform: translateY(-5px);
}

.movie-poster {
    width: 100%;
    height: 270px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.movie-card:hover .movie-poster {
    transform: scale(1.05);
}

.movie-info {
    text-align: left;
    padding: 0 8px;
}

.movie-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 8px 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.movie-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.year-badge {
    background: rgba(19, 57, 120, 0.8);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.season-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(247, 239, 71, 0.9);
    color: #333;
}

/* Movie badge styling */
.season-badge.movie-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #fff;
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

/* Season Grid */
.season-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.season-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.season-icon-container {
    margin-bottom: 1.5rem;
}

.season-svg {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.season-card:hover .season-svg {
    transform: scale(1.05);
}

.season-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.season-card p {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    line-height: 1.4;
}

/* Season specific colors */
.summer-card:hover {
    background: var(--card-bg);
}

.winter-card:hover {
    background: var(--card-bg);
}

.fall-card:hover {
    background: var(--card-bg);
}

.spring-card:hover {
    background: var(--card-bg);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.content-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.content-icon-container {
    margin-bottom: 1.5rem;
}

.content-svg {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.content-card:hover .content-svg {
    transform: scale(1.05);
}

.content-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.content-card p {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
    line-height: 1.4;
}

/* Content specific hover effects */
.creators-card:hover {
    background: var(--card-bg);
}

.production-card:hover {
    background: var(--card-bg);
}

.schedule-card:hover {
    background: var(--card-bg);
}

.dubs-card:hover {
    background: var(--card-bg);
}



/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.page-btn {
    background-color: var(--card-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
    background-color: var(--primary-color);
    color: white;
}

/* Disclaimer */
.disclaimer {
    background-color: var(--card-bg);
    padding: 2rem 0;
    text-align: center;
}

.disclaimer p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #16213e 100%);
    color: white;
    padding: 20px 0 15px;
    margin-top: 0;
}

.disclaimer-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-section h4 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.disclaimer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding: 10px 20px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
    font-weight: 400;
}



/* Large Indian Phones - iPhone Pro Max, OnePlus Pro, Samsung Galaxy S-series (430px-768px) */
@media (min-width: 431px) and (max-width: 768px) {
    .movie-card {
        width: 180px;
        margin-bottom: 1.5rem;
    }
    
    .movie-poster {
        height: 270px;
        margin-bottom: 10px;
    }
    
    .movie-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .movie-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .year-badge,
    .season-badge {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    /* Better spacing for larger phones */
    .featured-section,
    .season-calendar,
    .content-section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 0.6rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
        height: 50px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-left {
        position: absolute;
        left: 1rem;
        z-index: 10;
    }
    
    .nav-container {
        position: relative !important;
    }
    
    .nav-left .logo {
        display: block !important;
        position: static !important;
        transform: none !important;
        font-size: 1.8rem !important;
        z-index: 1001 !important;
        pointer-events: auto !important;
        margin: 0 !important;
    }
    
    .nav-container::after {
        content: "";
        display: none;
    }
    
    .nav-right {
        position: absolute;
        right: 1rem;
        z-index: 10;
    }
    

    
    .menu-toggle {
        display: flex;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu {
        backdrop-filter: blur(20px);
        border-radius: 0 0 16px 16px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
    }
    
    .mobile-nav-link {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .mobile-nav-link::after {
        right: 1.5rem;
        width: 6px;
        height: 6px;
    }
    
    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        padding-left: 2.2rem;
        transform: translateX(8px);
    }
    
    .search-toggle,
    .theme-toggle {
        font-size: 1rem;
        width: 36px;
        height: 36px;
        padding: 0.3rem;
    }
    
    .hero {
        margin-top: 50px;
        min-height: 70vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        max-width: 400px;
    }
    
    .hero-stats {
        justify-content: center;
        margin: 0.8rem 0;
    }
    
    .hero-visual {
        height: 250px;
        order: -1;
    }
    
    .carousel-slider {
        height: 280px;
    }
    
    .carousel-slide.center {
        width: 160px;
        height: 240px;
        margin-top: -120px;
        margin-left: -80px;
    }
    
    .carousel-slide.left,
    .carousel-slide.right {
        width: 112px;
        height: 168px;
        margin-top: -84px;
        margin-left: -56px;
    }
    
    .carousel-slide.left {
        transform: translateX(-96px) translateZ(-40px);
    }
    
    .carousel-slide.right {
        transform: translateX(96px) translateZ(-40px);
    }
    
    .carousel-slide.hidden {
        margin-top: -120px;
        margin-left: -80px;
    }
    
    .carousel-slide img {
        border-radius: 10px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-arrow-left {
        left: -20px;
    }
    
    .carousel-arrow-right {
        right: -20px;
    }
    
    .movie-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .movie-card {
        width: 160px;
        margin-bottom: 1.5rem;
    }
    
    .movie-poster {
        height: 240px;
        margin-bottom: 8px;
    }
    
    .movie-title {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .year-badge,
    .season-badge {
        padding: 3px 6px;
        font-size: 0.7rem;
    }
    
    .season-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .featured-section,
    .season-calendar,
    .content-section,
    .categories {
        padding: 2.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .featured-header {
        gap: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .featured-title {
        font-size: 1.4rem;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    }
    
    .featured-icon-left,
    .featured-icon-right {
        width: 28px;
        height: 28px;
    }
    
    .disclaimer p {
        font-size: 0.8rem;
    }
    

    
    .season-card,
    .content-card {
        padding: 1.5rem 1rem;
    }
    
    .season-svg,
    .content-svg {
        width: 40px;
        height: 40px;
    }
    
    .season-card h3,
    .content-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .season-card p,
    .content-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 0.8rem;
        height: 45px;
    }
    
    .nav-left {
        position: static;
        display: flex;
        align-items: center;
    }
    
    .nav-left .logo {
        font-size: 1.8rem;
    }
    
    .nav-right {
        right: 0.8rem;
    }
    
    .nav-container::after {
        font-size: 2rem;
    }
    
    .search-toggle,
    .theme-toggle,
    .menu-toggle {
        font-size: 0.9rem;
        width: 32px;
        height: 32px;
        padding: 0.2rem;
    }
    
    .hero {
        margin-top: 45px;
        min-height: 60vh;
    }
    
    .hero-container {
        padding: 1rem 0.8rem;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        max-width: 350px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin: 0 auto;
    }
    
    .hero-stats {
        gap: 0.8rem;
        margin: 0.5rem 0;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .cta-primary,
    .cta-secondary {
        flex: 1;
        max-width: 180px;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-visual {
        height: 200px;
    }
    
    .carousel-slider {
        height: 210px;
    }
    
    .carousel-slide.center {
        width: 120px;
        height: 180px;
        margin-top: -90px;
        margin-left: -60px;
    }
    
    .carousel-slide.left,
    .carousel-slide.right {
        width: 84px;
        height: 126px;
        margin-top: -63px;
        margin-left: -42px;
    }
    
    .carousel-slide.left {
        transform: translateX(-72px) translateZ(-30px);
    }
    
    .carousel-slide.right {
        transform: translateX(72px) translateZ(-30px);
    }
    
    .carousel-slide.hidden {
        margin-top: -90px;
        margin-left: -60px;
    }
    
    .carousel-slide img {
        border-radius: 8px;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-arrow-left {
        left: -15px;
    }
    
    .carousel-arrow-right {
        right: -15px;
    }
    
    .movie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    
    .movie-card {
        width: 145px;
        margin-bottom: 1rem;
    }
    
    .movie-poster {
        height: 218px;
        margin-bottom: 6px;
    }
    
    .movie-info {
        padding: 0 4px;
    }
    
    .movie-title {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }
    
    .year-badge,
    .season-badge {
        padding: 2px 4px;
        font-size: 0.6rem;
    }
    
    .featured-section,
    .season-calendar,
    .content-section,
    .categories {
        padding: 1.8rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .featured-header {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .featured-title {
        font-size: 1.2rem;
    }
    
    .featured-icon-left,
    .featured-icon-right {
        width: 24px;
        height: 24px;
    }
    
    .disclaimer p {
        font-size: 0.75rem;
        padding: 0 1rem;
    }
    

    
    .season-card,
    .content-card {
        padding: 1.2rem 0.8rem;
    }
    
    .season-svg,
    .content-svg {
        width: 35px;
        height: 35px;
    }
    
    .season-card h3,
    .content-card h3 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .season-card p,
    .content-card p {
        font-size: 0.75rem;
    }
}

/* Indian Phone Optimizations */
/* Samsung Galaxy A-series, Vivo Y-series, Oppo A-series, Realme budget phones (360px-390px) */
@media (min-width: 360px) and (max-width: 390px) {
    .movie-card {
        width: 155px;
        margin-bottom: 1rem;
    }
    
    .movie-poster {
        height: 233px;
        margin-bottom: 6px;
    }
    
    .movie-title {
        font-size: 0.75rem;
        margin-bottom: 5px;
        line-height: 1.2;
    }
    
    .movie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .year-badge,
    .season-badge {
        padding: 2px 5px;
        font-size: 0.65rem;
    }
}

/* iPhone 12/13/14, OnePlus Nord, Realme flagship phones (390px-430px) */
@media (min-width: 391px) and (max-width: 430px) {
    .movie-card {
        width: 170px;
        margin-bottom: 1.2rem;
    }
    
    .movie-poster {
        height: 255px;
        margin-bottom: 8px;
    }
    
    .movie-title {
        font-size: 0.8rem;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    
    .movie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .year-badge,
    .season-badge {
        padding: 3px 6px;
        font-size: 0.7rem;
    }
}

/* Extra small screens (like 1080x2408) */
@media (max-width: 390px) {
    .mobile-menu {
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
    
    .mobile-nav-link {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .mobile-nav-link::after {
        right: 1.2rem;
        width: 5px;
        height: 5px;
    }
    
    .mobile-nav-link:hover,
    .mobile-nav-link.active {
        padding-left: 2rem;
        transform: translateX(6px);
    }
    
    .navbar {
        padding: 0.4rem 0;
    }
    
    .nav-container {
        padding: 0 0.6rem;
        height: 40px;
    }
    
    .nav-left {
        left: 0.6rem;
    }
    
    .nav-right {
        right: 0.6rem;
    }
    
    .nav-container::after {
        font-size: 1.8rem;
    }
    
    .search-toggle,
    .theme-toggle,
    .menu-toggle {
        font-size: 0.8rem;
        width: 28px;
        height: 28px;
        padding: 0.1rem;
    }
    
    .hero {
        margin-top: 40px;
        min-height: 55vh;
    }
    
    .hero-container {
        padding: 0.8rem 0.6rem;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        max-width: 300px;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        margin-top: 0;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .hero-visual {
        height: 160px;
    }
    
    .carousel-slider {
        height: 180px;
    }
    
    .carousel-slide.center {
        width: 100px;
        height: 150px;
        margin-top: -75px;
        margin-left: -50px;
    }
    
    .carousel-slide.left,
    .carousel-slide.right {
        width: 70px;
        height: 105px;
        margin-top: -52.5px;
        margin-left: -35px;
    }
    
    .carousel-slide.left {
        transform: translateX(-60px) translateY(0) scale(0.85) rotateY(10deg);
    }
    
    .carousel-slide.right {
        transform: translateX(60px) translateY(0) scale(0.85) rotateY(-10deg);
    }
    
    .carousel-slide.hidden {
        margin-top: -75px;
        margin-left: -50px;
    }
    
    .carousel-slide img {
        border-radius: 6px;
    }
    
    .carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .carousel-arrow-left {
        left: -10px;
    }
    
    .carousel-arrow-right {
        right: -10px;
    }
    
    .decoration-circle {
        display: none;
    }
    
    .container {
        padding: 0 8px;
    }
    
    .movie-grid {
        gap: 0.3rem;
    }
    
    .movie-card {
        width: 140px;
        margin-bottom: 1rem;
    }
    
    .movie-poster {
        height: 210px;
        margin-bottom: 6px;
    }
    
    .movie-info {
        padding: 0 4px;
    }
    
    .movie-title {
        font-size: 0.65rem;
        margin-bottom: 4px;
        line-height: 1.2;
    }
    
    .year-badge,
    .season-badge {
        padding: 1px 3px;
        font-size: 0.55rem;
    }
    
    .featured-section,
    .season-calendar,
    .content-section,
    .categories {
        padding: 1.2rem 0;
    }
    
    .section-header {
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
    }
    
    .featured-header {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .featured-title {
        font-size: 1rem;
        letter-spacing: 0.2px;
    }
    
    .featured-icon-left,
    .featured-icon-right {
        width: 20px;
        height: 20px;
    }
    
    .disclaimer p {
        font-size: 0.7rem;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
}

/* Ultra Small Budget Phones (320px and below) */
@media (max-width: 320px) {
    .movie-card {
        width: 130px;
        margin-bottom: 0.8rem;
    }
    
    .movie-poster {
        height: 195px;
        margin-bottom: 4px;
    }
    
    .movie-title {
        font-size: 0.6rem;
        margin-bottom: 3px;
        line-height: 1.1;
    }
    
    .movie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.2rem;
    }
    
    .year-badge,
    .season-badge {
        padding: 1px 2px;
        font-size: 0.5rem;
    }
    
    .container {
        padding: 0 4px;
    }
    
    .featured-section,
    .season-calendar,
    .content-section {
        padding: 1rem 0;
    }
}

    
    .season-card,
    .content-card {
        padding: 1rem 0.6rem;
    }
    
    .season-svg,
    .content-svg {
        width: 30px;
        height: 30px;
    }
    
    .season-card h3,
    .content-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
    
    .season-card p,
    .content-card p {
        font-size: 0.7rem;
    }
}

/* Keep all 3 stats in one line on all screen sizes */
@media (max-width: 768px) {
    .hero-stats {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .stat-item {
        padding: 0.3rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

/* Loading animation for total visits - keeps original colors */
#totalVisits:empty::after {
    content: "...";
    animation: loadingStatsOriginal 1.5s infinite;
}

@keyframes loadingStatsOriginal {
    0%, 33% { content: "1000"; }
    34%, 66% { content: "2000"; }
    67%, 100% { content: "3000"; }
}

    .ring-2 { width: 49px; height: 49px; top: 10.5px; left: 10.5px; }
    .ring-3 { width: 28px; height: 28px; top: 21px; left: 21px; }

    .portal-center {
        width: 35px;
        height: 35px;
    }

    .portal-icon {
        font-size: 1rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-description {
        font-size: 0.8rem;
    }

    .stat-bubble {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .footer-portal {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mini-portal {
        width: 50px;
        height: 50px;
    }

    .mini-portal::before {
        width: 25px;
        height: 25px;
    }

    .portal-text h4 {
        font-size: 1.2rem;
    }

    .portal-text p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}/* Unive

* Seasonal Energy Effects */
.summer-energy {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
}

.winter-energy {
    background: radial-gradient(circle, rgba(135, 206, 235, 0.2) 0%, transparent 70%);
}

.spring-energy {
    background: radial-gradient(circle, rgba(255, 182, 193, 0.2) 0%, transparent 70%);
}

.fall-energy {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
}/* Anime 
Posts Grid in Modal */
.anime-posts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.anime-post-card {
    background: rgba(19, 57, 120, 0.1);
    border-radius: 12px;
    padding: 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(19, 57, 120, 0.2);
    display: flex;
    flex-direction: column;
}

.anime-post-card:hover {
    background: rgba(19, 57, 120, 0.2);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.anime-poster-container {
    width: 100%;
    aspect-ratio: 2/3;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    overflow: hidden;
}

.anime-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.anime-post-card:hover .anime-post-image {
    transform: scale(1.05);
}

.anime-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex-grow: 1;
}

.anime-post-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.anime-post-year {
    font-size: 0.75rem;
    color: var(--text-color);
    opacity: 0.8;
    font-weight: 500;
}

.anime-post-season {
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(19, 57, 120, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    display: inline-block;
    margin-top: 0.2rem;
}

/* Tablet responsive for anime posts */
@media (max-width: 1024px) and (min-width: 769px) {
    .anime-posts-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }
}

/* Mobile responsive for anime posts */
@media (max-width: 768px) {
    .anime-posts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .anime-post-card {
        padding: 0.4rem;
    }

    .anime-poster-container {
        margin-bottom: 0.4rem;
    }

    .anime-post-title {
        font-size: 0.7rem;
        -webkit-line-clamp: 1;
    }

    .anime-post-year {
        font-size: 0.6rem;
    }

    .anime-post-season {
        font-size: 0.55rem;
        padding: 0.1rem 0.3rem;
    }
}

    .anime-post-year {
        font-size: 0.65rem;
    }
}

/* 412px Mobile - FINAL OVERRIDE - Positioned at END to override all other media queries */
@media (max-width: 412px) {
    .nav-left {
        position: static;
        display: flex;
        align-items: center;
    }
    
    /* Logo - Make smaller for mobile */
    html body .navbar .nav-left .logo,
    html body .logo {
        font-size: 18px !important;
        line-height: 1 !important;
        position: static !important;
        transform: none !important;
    }
    
    .nav-center {
        padding: 4px 8px;
    }
    
    /* Featured Posts - Make smaller */
    html body .featured-section,
    body .featured-section,
    .featured-section {
        padding: 1rem 0 !important;
    }
    
    html body .featured-header,
    body .featured-header,
    .featured-header {
        gap: 0.5rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    html body .featured-title,
    body .featured-title,
    .featured-title {
        font-size: 0.9rem !important;
    }
    
    html body .featured-icon-left,
    html body .featured-icon-right,
    body .featured-icon-left,
    body .featured-icon-right,
    .featured-icon-left,
    .featured-icon-right {
        width: 18px !important;
        height: 18px !important;
    }
    
    html body .movie-grid,
    body .movie-grid,
    .movie-grid {
        gap: 0.25rem !important;
        margin-bottom: 1.5rem !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    html body .movie-card,
    body .movie-card,
    .movie-card {
        width: 130px !important;
        margin-bottom: 0.8rem !important;
    }
    
    html body .movie-poster,
    body .movie-poster,
    .movie-poster {
        height: 195px !important;
        margin-bottom: 5px !important;
    }
    
    html body .movie-info,
    body .movie-info,
    .movie-info {
        padding: 0 !important;
        margin-left: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    html body .movie-title,
    body .movie-title,
    .movie-title {
        font-size: 0.7rem !important;
        margin-bottom: 3px !important;
        line-height: 1.2 !important;
        text-align: left !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    html body .movie-meta,
    body .movie-meta,
    .movie-meta {
        margin-left: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
    
    html body .year-badge,
    html body .season-badge,
    body .year-badge,
    body .season-badge,
    .year-badge,
    .season-badge {
        padding: 1px 3px !important;
        font-size: 0.5rem !important;
    }
    
    /* Pagination - Make smaller */
    html body .pagination,
    body .pagination,
    .pagination {
        gap: 0.3rem !important;
        margin: 1rem 0 !important;
    }
    
    html body .page-btn,
    body .page-btn,
    .page-btn {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.7rem !important;
        border-radius: 3px !important;
    }
    
    /* Carousel Slider - Make bigger */
    .carousel-slider {
        height: 220px !important;
    }
    
    .carousel-slide.center {
        width: 140px !important;
        height: 210px !important;
    }
    
    .carousel-slide.left,
    .carousel-slide.right {
        width: 98px !important;
        height: 147px !important;
    }
    
    .carousel-slide.left {
        transform: translateX(-84px) translateZ(-35px) !important;
    }
    
    .carousel-slide.right {
        transform: translateX(84px) translateZ(-35px) !important;
    }
    
    .carousel-slide.hidden {
        margin-top: -105px !important;
        margin-left: -70px !important;
    }
    
    .carousel-slide img {
        border-radius: 10px !important;
    }
    
    .carousel-arrow {
        width: 38px !important;
        height: 38px !important;
    }
    
    .carousel-arrow-left {
        left: -18px !important;
    }
    
    .carousel-arrow-right {
        right: -18px !important;
    }
    
    /* Hero Actions - Smaller buttons, 2 in one row */
    .hero-actions {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.5rem !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.55rem !important;
        font-weight: 600 !important;
        flex: 1 !important;
        max-width: 45% !important;
        justify-content: center !important;
        text-align: center !important;
        white-space: nowrap !important;
        line-height: 1.1 !important;
    }
    
    .cta-primary i,
    .cta-secondary i {
        font-size: 0.5rem !important;
        margin-right: 0.3rem !important;
    }
    
    /* Hero Content - Make smaller and center */
    .hero .hero-content {
        text-align: center !important;
        padding: 1rem 0.5rem !important;
        max-width: 100% !important;
    }
    
    .hero .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.5rem !important;
        text-align: center !important;
    }
    
    .hero .hero-badge {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero .hero-description {
        font-size: 0.65rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
        padding: 0 1rem !important;
    }
    
    /* Content You Might Like Section - FORCE SMALLER SIZES */
    body .content-section .section-header .section-title,
    body .section-header .section-title,
    body section .section-title,
    body h2.section-title {
        font-size: 0.8rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        line-height: 1.1 !important;
        margin-bottom: 0.4rem !important;
        text-align: center !important;
        font-weight: 600 !important;
    }
    
    body .content-section .section-header .section-subtitle,
    body .section-header .section-subtitle,
    body section .section-subtitle {
        font-size: 0.55rem !important;
        text-align: center !important;
        line-height: 1.2 !important;
        margin-bottom: 0.6rem !important;
    }
    
    body .content-section .content-card h3,
    body .content-card h3,
    body .content-grid .content-card h3 {
        font-size: 0.55rem !important;
        line-height: 1.0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin-bottom: 0.2rem !important;
        font-weight: 600 !important;
    }
    
    body .content-section .content-card p,
    body .content-card p,
    body .content-grid .content-card p {
        font-size: 0.5rem !important;
        line-height: 1.1 !important;
    }
    
    /* Schedule card specific - keep title on one line */
    .schedule-card h3 {
        font-size: 0.7rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        line-height: 1.2 !important;
    }
    
    .schedule-card p {
        font-size: 0.6rem !important;
        line-height: 1.2 !important;
    }
}
/* FORCE 412px OVERRIDE - EMERGENCY FIX - INCREASED SIZES */
@media screen and (max-width: 412px) {
    /* FORCE Featured Posts and Pagination to be smaller */
    html body .featured-section,
    html body section.featured-section {
        padding: 1rem 0 !important;
    }
    
    html body .featured-header {
        gap: 0.5rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    html body .featured-title {
        font-size: 0.9rem !important;
    }
    
    html body .featured-icon-left,
    html body .featured-icon-right {
        width: 18px !important;
        height: 18px !important;
    }
    
    html body .movie-grid {
        gap: 0.25rem !important;
        margin-bottom: 1.5rem !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    html body .movie-card {
        width: 130px !important;
        margin-bottom: 0.8rem !important;
    }
    
    html body .movie-poster {
        height: 195px !important;
        margin-bottom: 5px !important;
    }
    
    html body .movie-info {
        padding: 0 !important;
        margin-left: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    html body .movie-title {
        font-size: 0.7rem !important;
        margin-bottom: 3px !important;
        line-height: 1.2 !important;
        text-align: left !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    html body .movie-meta {
        margin-left: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
    
    html body .year-badge,
    html body .season-badge {
        padding: 1px 3px !important;
        font-size: 0.5rem !important;
    }
    
    html body .pagination {
        gap: 0.3rem !important;
        margin: 1rem 0 !important;
    }
    
    html body .page-btn {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.7rem !important;
        border-radius: 3px !important;
    }
    
    /* FORCE section title to be smaller - increased size */
    html body section.content-section .section-header h2.section-title,
    html body .content-section h2,
    html body h2 {
        font-size: 0.9rem !important;
        transform: scale(0.95) !important;
    }
    
    /* FORCE content card titles to be smaller - increased size */
    html body .content-section .content-card h3,
    html body .content-card h3,
    html body h3 {
        font-size: 0.65rem !important;
        transform: scale(0.9) !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* FORCE content card descriptions to be smaller - increased size */
    html body .content-section .content-card p,
    html body .content-card p {
        font-size: 0.6rem !important;
        transform: scale(0.95) !important;
    }
    
    /* FORCE section subtitle to be smaller - increased size */
    html body .section-header .section-subtitle,
    html body .section-subtitle {
        font-size: 0.65rem !important;
        transform: scale(0.9) !important;
    }
}

/* FINAL HERO BUTTON OVERRIDE FOR 412px - INCREASED SIZE */
@media screen and (max-width: 412px) {
    /* FORCE hero buttons to be smaller but more readable */
    html body .hero .hero-actions .cta-primary,
    html body .hero .hero-actions .cta-secondary,
    html body .hero-actions .cta-primary,
    html body .hero-actions .cta-secondary,
    html body button.cta-primary,
    html body button.cta-secondary {
        padding: 0.5rem 0.7rem !important;
        font-size: 0.6rem !important;
        font-weight: 600 !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
        transform: scale(0.95) !important;
        max-width: 45% !important;
    }
    
    /* Footer Credits - Make smaller for 412px */
    .footer {
        padding: 1rem 0 0.8rem !important;
    }
    
    .disclaimer-section {
        padding: 0 1rem 0.8rem !important;
    }
    
    .disclaimer-section h4 {
        font-size: 0.7rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .disclaimer-section p {
        font-size: 0.55rem !important;
        line-height: 1.3 !important;
    }
    
    .footer-bottom {
        padding: 0.5rem 1rem 0 !important;
    }
    
    .footer-bottom p {
        font-size: 0.6rem !important;
        flex: 1 !important;
    }
    
    html body .hero .hero-actions .cta-primary i,
    html body .hero .hero-actions .cta-secondary i,
    html body .hero-actions .cta-primary i,
    html body .hero-actions .cta-secondary i,
    html body button.cta-primary i,
    html body button.cta-secondary i {
        font-size: 0.55rem !important;
        margin-right: 0.3rem !important;
        transform: scale(0.9) !important;
    }
}
