/* MUVI - Movie Streaming Platform Styles */

:root {
    --primary-color: #e50914;
    --secondary-color: #221f1f;
    --dark-color: #141414;
    --light-color: #f8f9fa;
    --text-light: #ffffff;
    --text-muted: #999999;
    --accent-color: #ffc107;
    --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Light theme colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --border-color: #dee2e6;
    --card-bg: #ffffff;
    --modal-bg: #ffffff;
    --input-bg: #ffffff;
    --button-bg: #007bff;
    --button-text: #ffffff;
}

/* Dark theme colors */
[data-theme="dark"] {
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-tertiary: #21262d;
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --border-color: #30363d;
    --card-bg: #161b22;
    --modal-bg: #0d1117;
    --input-bg: #21262d;
    --button-bg: #238636;
    --button-text: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
    transition: var(--transition);
    padding-top: 80px; /* Add space for fixed navbar */
}


}

[data-theme="light"] .theme-toggle .fa-sun {
    display: none;
}

/* Navigation */
.navbar {
    backdrop-filter: blur(15px);
    background: rgba(20, 20, 20, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 8px;
    padding: 8px 16px !important;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(229, 9, 20, 0.1);
    transform: translateY(-1px);
}

/* Adult Button Styling */
.adult-btn {
    background: rgba(255, 0, 0, 0.1) !important;
    color: #ff0000 !important;
    border: 2px solid #ff0000 !important;
    border-radius: 8px !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    animation: warning-pulse 2s infinite;
}

.adult-btn:hover {
    background: rgba(255, 0, 0, 0.2) !important;
    color: #ff0000 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5) !important;
    border-color: #cc0000 !important;
}

@keyframes warning-pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
        border-color: #ff0000;
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
        border-color: #ff3333;
    }
}

.navbar-nav .nav-link i {
    margin-right: 6px;
}

.dropdown-menu {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.dropdown-item {
    color: #fff;
    transition: var(--transition);
    padding: 8px 16px;
}

.dropdown-item:hover {
    background: rgba(229, 9, 20, 0.2);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 60px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}



.hero-image {
    text-align: center;
    font-size: 8rem;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

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

/* Buttons */
.btn {
    border-radius: 25px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b8070f 100%);
    box-shadow: var(--shadow);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8070f 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    color: white;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Search Box */
.search-box {
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow: hidden;
    transition: var(--transition);
}

.search-box:focus-within {
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.2);
    transform: translateY(-2px);
}

.search-box .form-control {
    border: none;
    border-radius: 25px 0 0 25px;
    padding: 15px 25px;
    font-size: 1.1rem;
    background: transparent;
    transition: var(--transition);
}

.search-box .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.search-box .btn {
    border-radius: 0 25px 25px 0;
    padding: 15px 25px;
    background: var(--primary-color);
    border: none;
}

.search-box .btn:hover {
    background: #b8070f;
}

/* Movie Cards */
.movie-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.movie-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.movie-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.movie-card:hover::before {
    opacity: 0.1;
}

.movie-poster {
    position: relative;
    overflow: hidden;
    height: 400px;
    z-index: 2;
}

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

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

.movie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 1rem;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    z-index: 2;
}

.movie-overlay-info {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    text-align: center;
    z-index: 3;
}

.movie-overlay-info h6 {
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.movie-overlay-info p {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.movie-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.movie-info {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.movie-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 1rem;
}

.movie-year {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.movie-year i {
    margin-right: 0.25rem;
}

.movie-rating {
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.movie-rating i {
    margin-right: 0.25rem;
}

.movie-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.genre-tag {
    background: var(--light-color);
    color: var(--text-muted);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    border: 1px solid #e0e0e0;
}

/* Loading Spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Filter Buttons */
.btn-group .btn {
    border-radius: 25px;
    margin: 0 5px;
    padding: 8px 20px;
}

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

/* Admin Styles */
.admin-header {
    background: var(--gradient-bg);
    color: white;
    padding: 2rem 0;
}

.admin-card {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.search-filters {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.movie-table {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.table th {
    background: var(--secondary-color);
    color: white;
    border: none;
    font-weight: 600;
    padding: 1rem;
}

.table td {
    padding: 1rem;
    vertical-align: middle;
    border-color: #f0f0f0;
}

.movie-thumbnail {
    width: 60px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background: var(--secondary-color);
    color: white;
    border: none;
}

.movie-detail-poster {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.server-buttons {
    display: flex;
    gap: 10px;
    margin: 1rem 0;
}

.server-btn {
    flex: 1;
    padding: 10px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin: 1rem 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* Footer */
footer {
    background: #141414 !important;
}

/* Empty State */
#emptyState {
    padding: 4rem 2rem;
}

#emptyState .display-1 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

#emptyState h4 {
    margin-bottom: 1rem;
}

#emptyState p {
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .admin-sidebar {
        width: 250px;
    }
    
    .admin-content {
        margin-left: 250px;
    }
}

@media (max-width: 992px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .admin-sidebar.show {
        transform: translateX(0);
    }
    
    .admin-content {
        margin-left: 0;
    }
    
    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    

    
    .search-box {
        margin: 2rem 0;
    }
    
    .search-input {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        flex: 1;
        min-width: 80px;
    }
    
    .btn-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-group .btn {
        margin: 5px;
        flex: 0 0 auto;
    }
    
    .movie-poster {
        height: 250px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .search-box .form-control {
        border-radius: 10px;
        margin-bottom: 10px;
    }
    
    .search-box .btn {
        border-radius: 10px;
        width: 100%;
    }
    
    .search-box .input-group {
        flex-direction: column;
    }
    
    .admin-card {
        margin-bottom: 1rem;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
    
    .movie-thumbnail {
        width: 40px;
        height: 60px;
    }
    
    .movie-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    #emptyState .display-1 {
        font-size: 3rem;
    }
    
    .movie-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        margin-bottom: 0.5rem;
        border-radius: 0.375rem !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .search-input {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .filter-btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .movie-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .movie-card {
        min-height: 280px;
    }
    
    .movie-poster {
        height: 200px;
    }
    
    .movie-info {
        padding: 0.5rem;
    }
    
    .movie-title {
        font-size: 0.8rem;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }
    
    .movie-year {
        font-size: 0.7rem;
    }
    
    .movie-card {
        border-radius: 10px;
    }
    
    .movie-poster {
        height: 180px;
    }
    
    .movie-info {
        padding: 1rem;
    }
    
    .movie-title {
        font-size: 1rem;
    }
    
    .movie-meta {
        font-size: 0.8rem;
    }
    
    .movie-rating {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.8rem 1rem;
    }
    
    #emptyState {
        padding: 2rem 1rem;
    }
    
    #emptyState .display-1 {
        font-size: 2.5rem;
    }
    
    .admin-header h1 {
        font-size: 1.5rem;
    }
    
    .admin-card .card-header h5 {
        font-size: 1rem;
    }
    
    .form-control {
        font-size: 0.9rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .table {
        font-size: 0.8rem;
    }
    
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .server-buttons {
        flex-direction: column;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .movie-card:hover {
        transform: none;
    }
    
    .movie-card:active {
        transform: scale(0.98);
    }
    
    .btn:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.95);
    }
    
    .filter-btn:hover {
        transform: none;
    }
    
    .filter-btn:active {
        transform: scale(0.95);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .movie-poster {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-section,
    .filter-buttons,
    .admin-sidebar,
    footer {
        display: none !important;
    }
    
    .movie-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .admin-content {
        margin-left: 0;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8070f;
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem 0;
    gap: 1rem;
}

.movie-count {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pagination {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item {
    margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    margin: 0;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
    min-width: 44px;
    height: 44px;
    backdrop-filter: blur(10px);
}

.page-link:hover {
    color: #fff;
    background: rgba(229, 9, 20, 0.8);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}

.page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}

/* Dark Theme Styles */

/* Cards and Movie Items */
.movie-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-primary) !important;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

.movie-card:hover {
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary-color) !important;
}

.movie-card .card-title {
    color: var(--text-primary) !important;
}

.movie-card .card-text {
    color: var(--text-secondary) !important;
}

/* Modals */
.modal-content {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

.modal-header {
    border-bottom: 1px solid var(--border-color) !important;
}

.modal-footer {
    border-top: 1px solid var(--border-color) !important;
}

.modal-title {
    color: var(--text-primary) !important;
}

/* Forms and Inputs */
.form-control {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-primary) !important;
}

.form-control:focus {
    background: var(--input-bg) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(229, 9, 20, 0.25) !important;
}

.form-control::placeholder {
    color: var(--text-secondary) !important;
}

/* Buttons */
.btn-primary {
    background: var(--button-bg) !important;
    border-color: var(--button-bg) !important;
    color: var(--button-text) !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

/* Navigation Menu */
.nav-menu {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
}

.nav-menu .btn {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-primary) !important;
}

.nav-menu .btn:hover,
.nav-menu .btn.active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

/* Hero Section */
.hero-section {
    background: var(--bg-primary) !important;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: var(--bg-primary) !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

[data-theme="light"] .hero-overlay {
    background: var(--bg-primary) !important;
}

/* Footer */
.footer {
    background: var(--bg-secondary) !important;
    border-top: 1px solid var(--border-color) !important;
}

.footer h5 {
    color: var(--text-primary) !important;
}

.footer p,
.footer a {
    color: var(--text-secondary) !important;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

/* Pagination */
.page-link {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-primary) !important;
}

.page-link:hover {
    background: var(--bg-tertiary) !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

/* Loading and Error States */
.loading-spinner {
    color: var(--text-primary) !important;
}

.error-message {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

/* Search Results */
.search-results {
    background: var(--bg-secondary) !important;
}

/* Search Section Responsive */
/* Search Section */
.search-section {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%) !important;
    position: relative;
}

.search-container {
    background: rgba(22, 27, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.search-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.5), transparent);
}

.search-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0;
}

.search-form {
    position: relative;
}

.search-input-group {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.search-input-wrapper:focus-within {
    border-color: rgba(229, 9, 20, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1), 0 8px 25px rgba(0, 0, 0, 0.3);
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.search-icon-right {
    position: absolute;
    right: 4rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.search-input-wrapper:focus-within .search-icon {
    color: rgba(229, 9, 20, 0.8);
}

.search-input-wrapper:focus-within .search-icon-right {
    color: rgba(229, 9, 20, 0.8);
}

.search-input {
    flex: 1;
    padding: 1.2rem 5rem 1.2rem 1.2rem;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.search-reset-btn {
    position: absolute;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.search-reset-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.search-btn {
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #e50914 0%, #b8070f 100%);
    border: none;
    border-radius: 16px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
    position: relative;
    overflow: hidden;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #b8070f 0%, #8a0509 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(229, 9, 20, 0.4);
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn:active {
    transform: translateY(0);
}

.search-btn-text {
    position: relative;
    z-index: 2;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(22, 27, 34, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-top: 0.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

/* Content Tabs */
.content-tabs-wrapper {
    background: rgba(22, 27, 34, 0.6);
    border-radius: 20px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.content-tabs-container {
    display: flex;
    gap: 0.5rem;
}

.content-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.content-tab-btn.active {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.15), rgba(184, 7, 15, 0.1));
    border: 1px solid rgba(229, 9, 20, 0.3);
}

.content-tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.tab-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.content-tab-btn.active .tab-icon {
    background: linear-gradient(135deg, #e50914, #b8070f);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
}

.tab-icon i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.content-tab-btn.active .tab-icon i {
    color: #ffffff;
}

.tab-content-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.tab-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.content-tab-btn.active .tab-title {
    color: #ffffff;
}

.tab-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    transition: color 0.3s ease;
}

.content-tab-btn.active .tab-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #e50914, #b8070f);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-tab-btn.active .tab-indicator {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile Responsive for Search */
@media (max-width: 768px) {
    .search-container {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .search-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .search-subtitle {
        font-size: 1rem;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .search-input {
        padding: 1rem 1rem 1rem 3rem;
        font-size: 1rem;
    }
    
    .search-icon {
        left: 1rem;
    }
    
    .search-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
    }
    
    .content-tab-btn {
        padding: 1.2rem 0.8rem;
        gap: 0.6rem;
    }
    
    .tab-icon {
        width: 40px;
        height: 40px;
    }
    
    .tab-icon i {
        font-size: 1.2rem;
    }
    
    .tab-title {
        font-size: 1rem;
    }
    
    .tab-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .search-container {
        padding: 0.8rem;
        margin: 0 0.5rem;
    }
    
    .search-title {
        font-size: 1.1rem;
    }
    
    .search-input {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .search-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
        min-width: 45px;
    }
}

/* Movie Grid */
.movies-grid {
    background: #141414 !important;
}

/* Scrollbar Styling for Dark Theme */
[data-theme="dark"] ::-webkit-scrollbar {
    width: 8px;
}

[data-theme="dark"] ::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Text Colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary) !important;
}

p {
    color: var(--text-secondary) !important;
}

.text-muted {
    color: var(--text-secondary) !important;
}

/* Badge and Labels */
.badge {
    background: var(--bg-tertiary) !important;
    color: var(--text-primary) !important;
}

/* Dropdown Menus */
.dropdown-menu {
    background: var(--modal-bg) !important;
    border: 1px solid var(--border-color) !important;
}

.dropdown-item {
    color: var(--text-primary) !important;
}

.dropdown-item:hover {
    background: var(--bg-tertiary) !important;
    color: var(--text-primary) !important;
}

/* Smooth transitions for theme switching */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    background-color: var(--bg-primary);
    min-width: 600px;
    z-index: 1050 !important;
    position: absolute !important;
}

/* Fix dropdown floating issue */
.dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.2s ease;
}

.dropdown-menu:not(.show) {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

.dropdown-menu-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.25rem;
    padding: 0.5rem;
    width: 100%;
}

.dropdown-menu-columns .dropdown-item {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
    margin: 0;
    border-radius: 0.25rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Responsive dropdown for smaller screens */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 350px;
        max-height: 250px;
    }
    
    .dropdown-menu-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .dropdown-menu {
        min-width: 280px;
        max-height: 200px;
    }
    
    .dropdown-menu-columns {
        grid-template-columns: repeat(1, 1fr);
    }
}

.dropdown-item {
    color: var(--text-primary);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Button Borders for Visibility */
.btn-outline-primary,
.btn-outline-success,
.btn-outline-warning,
.btn-outline-info,
.btn-outline-danger,
.btn-outline-light {
    border: 2px solid currentColor !important;
    font-weight: 500;
}

.btn-outline-primary:hover,
.btn-outline-success:hover,
.btn-outline-warning:hover,
.btn-outline-info:hover,
.btn-outline-danger:hover,
.btn-outline-light:hover {
    border: 2px solid currentColor !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

/* Navigation buttons with better visibility */
.nav-link {
    border: 1px solid transparent;
    border-radius: 0.375rem;
    margin: 0 0.25rem;
    transition: var(--transition);
}

.nav-link:hover {
    border-color: var(--primary-color);
    background-color: rgba(var(--primary-rgb), 0.1);
}

/* Search form styling */
.navbar .form-control {
    border: 2px solid var(--border-color);
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.navbar .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}

.navbar .btn {
    border: 2px solid currentColor;
}

/* Pagination with borders */
.page-link {
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

.page-link:hover {
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color);
    color: white;
}

.page-item.active .page-link {
    border-color: var(--primary-color) !important;
    background-color: var(--primary-color);
    color: white;
}

.page-item.disabled .page-link {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    opacity: 0.5;
}

.page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Responsive pagination */
@media (max-width: 768px) {
    .pagination {
        gap: 0.125rem;
    }
    
    .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
        min-width: 36px;
        height: 36px;
    }
    
    .movie-count {
        font-size: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        min-width: 32px;
        height: 32px;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Search Section Styles */
.search-section {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(13, 110, 253, 0.1));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.search-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.3);
}

.search-input::placeholder {
    color: #666;
}

.search-btn {
    padding: 1rem 1.5rem;
    border: none;
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: linear-gradient(45deg, #c82333, #a71e2a);
    transform: translateY(-1px);
}

/* Content Tabs Styles */
.content-tabs {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-tabs .nav-link {
    color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.content-tabs .nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
}

.content-tabs .nav-link.active {
    color: white;
    background: linear-gradient(45deg, #dc3545, #c82333);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}



@media (max-width: 768px) {
    .search-container {
        padding: 1rem;
    }
    
    .search-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .search-input, .search-btn {
        padding: 0.8rem 1rem;
    }
    
    .content-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .tv-categories .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .tv-info {
        padding: 0.75rem;
    }
    
    .tv-title {
        font-size: 0.9rem;
    }
    
    .tv-meta, .tv-overview {
        font-size: 0.8rem;
    }
    
    /* Glassmorphism adjustments for mobile */
    #castSection, #similarSection {
        padding: 1.5rem !important;
        margin: 1rem 0 !important;
    }
    
   #castContainer, #similarContainer {
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
            gap: 0.8rem !important;
        }
    
    .cast-item, .similar-item {
        padding: 0.8rem !important;
    }
    
    .cast-item img, .similar-item img {
        aspect-ratio: 2/3 !important;
    }
}

@media (max-width: 480px) {
    .search-container {
        padding: 0.8rem;
        margin: 0 0.5rem;
    }
    
    .search-title {
        font-size: 1.1rem;
    }
}

/* Cast and Similar Movies Sections */
#castSection, #similarSection {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    margin: 2rem 0 !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

#castSection h2, #similarSection h2 {
    color: var(--text-primary) !important;
    margin-bottom: 1.5rem !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

#castContainer, #similarContainer {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 1rem !important;
}

.cast-item, .similar-item {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 15px !important;
    padding: 1rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
}

.cast-item:hover, .similar-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(229, 9, 20, 0.5) !important;
}

.cast-item img, .similar-item img {
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    margin-bottom: 0.5rem !important;
    aspect-ratio: 2/3 !important;
}

.cast-item h5, .similar-item h5 {
    color: var(--text-primary) !important;
    font-size: 0.9rem !important;
    margin-bottom: 0.25rem !important;
    font-weight: 600 !important;
}

.cast-item p, .similar-item p {
    color: var(--text-secondary) !important;
    font-size: 0.8rem !important;
    margin: 0 !important;
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow) !important;
}

.shadow-lg-custom {
    box-shadow: var(--shadow-lg) !important;
}

.rounded-custom {
    border-radius: 15px !important;
}

.text-gradient {
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}