/* WebFlix - Main Stylesheet */

:root {
    --netflix-red: #E50914;
    --netflix-black: #141414;
    --netflix-dark: #000000;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --white: #ffffff;
}

/* Light Theme */
[data-theme="light"] {
    --netflix-black: #f5f5f5;
    --netflix-dark: #ffffff;
    --gray-800: #e5e7eb;
    --gray-700: #d1d5db;
    --gray-600: #9ca3af;
    --gray-400: #4b5563;
    --gray-300: #374151;
    --gray-200: #1f2937;
    --white: #000000;
}

[data-theme="light"] body {
    background: linear-gradient(to bottom, #f5f5f5, #ffffff, #f5f5f5);
    color: #000000;
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .movie-card,
[data-theme="light"] .match-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .hero-overlay {
    background: linear-gradient(to bottom, transparent, rgba(245, 245, 245, 0.8));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, var(--netflix-black), #1a1a1a, var(--netflix-black));
    color: var(--white);
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

/* Quando menu mobile está aberto, navbar e toggle ficam acima do menu */
body.menu-open .navbar {
    z-index: 10002 !important;
}

body.menu-open .mobile-menu-toggle {
    z-index: 10003 !important;
    position: relative;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar-logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--netflix-red);
}

.navbar-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--netflix-red);
}

/* Dropdown toggle button should match nav-link style */
.nav-dropdown .dropdown-toggle.nav-link {
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-size: inherit;
    font-family: inherit;
}

.nav-dropdown .dropdown-toggle.nav-link:focus {
    outline: none;
}

.nav-dropdown .dropdown-toggle.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--netflix-red);
}

.navbar-search {
    flex: 1;
    max-width: 400px;
}

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-input {
    flex: 1;
    padding: 0.5rem 1rem;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--netflix-red);
}

.search-btn {
    padding: 0.5rem 1rem;
    background: var(--netflix-red);
    border: none;
    border-radius: 0.5rem;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #b20710;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
}

/* Main Content */
main {
    padding-top: 80px;
    padding-bottom: 2rem;
    min-height: calc(100vh - 80px);
}

/* Home Page */
.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--gray-800);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--white);
}

.tab-btn.active {
    color: var(--netflix-red);
    border-bottom-color: var(--netflix-red);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.page-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.accent-text {
    color: var(--netflix-red);
}

/* Movies Grid */
.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (min-width: 1024px) {
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

/* Movie Card */
.movie-card {
    position: relative;
    background: var(--gray-800);
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.movie-card:hover {
    transform: scale(1.05);
}

.movie-card.watched {
    border: 2px solid rgba(34, 197, 94, 0.5);
}

.movie-card-poster-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Remove button for continue watching cards */
.remove-continue-watching-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 15; /* Higher than watched-indicator (z-index: 2) */
    color: var(--white);
}

.remove-continue-watching-btn:hover {
    background: rgba(229, 9, 20, 0.9);
    border-color: var(--netflix-red);
    transform: scale(1.1);
}

.continue-watching-card:hover .remove-continue-watching-btn {
    opacity: 1;
}

.remove-continue-watching-btn svg {
    width: 16px;
    height: 16px;
}

/* Adjust watched indicator position when remove button is present */
.continue-watching-card .watched-indicator {
    top: 0.5rem;
    right: 3rem; /* Move left to make room for X button */
}

.watched-indicator {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(34, 197, 94, 0.95);
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.movie-poster {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.movie-info {
    padding: 1rem;
}

.movie-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-year {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Skeleton Loader */
.skeleton-loader {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.skeleton-item {
    background: var(--gray-800);
    border-radius: 0.5rem;
    height: 350px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Details Page */
.details-hero {
    position: relative;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-poster img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.rating-badge, .year-badge, .runtime-badge, .seasons-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    font-size: 0.9rem;
}

.genres-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.genre-tag {
    padding: 0.25rem 0.75rem;
    background: var(--netflix-red);
    border-radius: 1rem;
    font-size: 0.85rem;
}

.hero-overview {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-300);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--netflix-red);
    color: var(--white);
}

.btn-primary:hover {
    background: #b20710;
}

.btn-secondary {
    background: var(--gray-800);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--gray-700);
}

/* Cast Grid */
.cast-section {
    margin-top: 3rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
}

.cast-item {
    text-align: center;
}

.cast-image {
    width: 100%;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.cast-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.cast-character {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Player */
.player-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.player-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.source-selector-container {
    background: rgba(0, 0, 0, 0.85);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.source-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.source-selector::-webkit-scrollbar {
    width: 8px;
}

.source-selector::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.source-selector::-webkit-scrollbar-thumb {
    background: var(--netflix-red);
    border-radius: 4px;
}

/* Fix for older browsers that don't support :hover on scrollbar thumb */
@supports (scrollbar-width: thin) {
    .source-selector::-webkit-scrollbar-thumb:hover {
        background: #f40612;
    }
}

.source-btn {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--white);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.source-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.source-btn.active {
    background: var(--netflix-red);
    border-color: var(--netflix-red);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(229, 9, 20, 0.4);
}

.source-btn.error {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
    color: #fca5a5;
    cursor: not-allowed;
    opacity: 0.6;
}

.player-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 400px;
    position: relative;
}

.player-wrapper iframe {
    width: 100%;
    height: 100%;
    max-width: 1600px;
    max-height: 900px;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.player-error {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(220, 38, 38, 0.1);
    border-top: 1px solid rgba(220, 38, 38, 0.3);
}

.error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fca5a5;
    margin-bottom: 0.5rem;
}

.error-hint {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.loading-spinner {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--netflix-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-400);
}

.empty-icon {
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--netflix-red);
    border: none;
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.load-more-btn:hover {
    background: #f40612;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Match Cards - Football */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.match-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-color: var(--netflix-red);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.live-badge {
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.popular-badge {
    background: rgba(229, 9, 20, 0.2);
    color: #fca5a5;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 1rem;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.team-badge {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 0.5rem;
}

.team-name {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.match-vs {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--gray-400);
    padding: 0 1rem;
}

.match-info {
    text-align: center;
    margin-top: 1rem;
}

.match-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.match-date {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.watch-match-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--netflix-red);
    border: none;
    border-radius: 0.25rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.watch-match-btn:hover {
    background: #f40612;
    transform: translateY(-1px);
}

/* Source Selector for Match Streams */
.source-selector-container {
    margin-bottom: 1.5rem;
}

.source-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.source-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.source-btn:hover {
    border-color: var(--netflix-red);
    background: rgba(229, 9, 20, 0.2);
}

.source-btn.active {
    border-color: var(--netflix-red);
    background: rgba(229, 9, 20, 0.3);
    color: var(--netflix-red);
}

.source-label {
    font-weight: 500;
    flex: 1;
}

.source-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.open-new-window-btn {
    background: transparent !important;
    border: none !important;
    color: #9ca3af !important;
    cursor: pointer !important;
    padding: 0.25rem !important;
    margin-left: auto !important;
    opacity: 0.7 !important;
    transition: opacity 0.2s, color 0.2s !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.open-new-window-btn:hover {
    opacity: 1 !important;
    color: #E50914 !important;
}

.hd-badge {
    padding: 0.125rem 0.5rem;
    background: var(--netflix-red);
    color: white;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.home-content-section {
    display: block;
}

/* Download Dropdown */
.download-dropdown {
    position: relative;
    display: inline-block;
}

.download-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem;
    min-width: 220px;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.download-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 0.25rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.download-menu-item:hover {
    background: rgba(229, 9, 20, 0.2);
    color: var(--netflix-red);
}

.download-menu-item svg {
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-btn {
    position: relative;
}

.download-btn svg:last-child {
    margin-left: 0.25rem;
    transition: transform 0.3s;
}

.download-dropdown:hover .download-btn svg:last-child,
.download-menu[style*="block"] ~ .download-btn svg:last-child {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .download-menu {
        right: 0;
        left: auto;
    }
}

/* Navbar Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle svg:last-child {
    margin-left: 0.25rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-toggle svg:last-child,
.nav-dropdown.active .dropdown-toggle svg:last-child {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--white);
    text-decoration: none;
    border-radius: 0.25rem;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-dropdown-item:hover {
    background: rgba(229, 9, 20, 0.2);
    color: var(--netflix-red);
}

.nav-dropdown-item svg {
    flex-shrink: 0;
}

/* Sport Filter Tabs */
.sport-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.sport-filter-btn {
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.sport-filter-btn:hover {
    border-color: var(--netflix-red);
    background: rgba(229, 9, 20, 0.1);
}

.sport-filter-btn.active {
    background: var(--netflix-red);
    border-color: var(--netflix-red);
    color: white;
}

.sport-badge {
    padding: 0.25rem 0.5rem;
    background: rgba(74, 144, 226, 0.3);
    color: #4a90e2;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .nav-dropdown-menu {
        right: 0;
        left: auto;
    }
    
    .sport-filter-tabs {
        justify-content: center;
    }
}

/* Download Modal */
.download-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.download-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.download-modal-content {
    position: relative;
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.download-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.download-modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.download-modal-close {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    transition: all 0.3s;
}

.download-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--netflix-red);
}

.download-modal-body {
    padding: 1.5rem;
}

.download-info {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0.25rem;
}

.download-info-title,
.download-info-imdb {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.download-links-section {
    margin-bottom: 1.5rem;
}

.download-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--netflix-red);
}

.download-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.download-link {
    display: block;
    text-decoration: none;
    color: var(--white);
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.download-link:hover {
    background: rgba(229, 9, 20, 0.2);
    border-color: var(--netflix-red);
    transform: translateX(4px);
}

.download-link-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.download-link-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.download-link-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.download-link-quality {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.download-note {
    padding: 1rem;
    background: rgba(229, 9, 20, 0.1);
    border-left: 3px solid var(--netflix-red);
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.download-search-terms {
    margin-top: 1.5rem;
}

.search-terms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.search-term-tag {
    padding: 0.5rem 0.75rem;
    background: rgba(229, 9, 20, 0.2);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 0.25rem;
    font-size: 0.8rem;
    color: var(--netflix-red);
    cursor: copy;
    transition: all 0.3s;
}

.search-term-tag:hover {
    background: rgba(229, 9, 20, 0.3);
    transform: scale(1.05);
}

.search-term-tag:active {
    transform: scale(0.95);
}

/* Direct Download Links */
.download-link.direct-link {
    background: rgba(229, 9, 20, 0.2);
    border-color: var(--netflix-red);
}

.download-link.direct-link:hover {
    background: rgba(229, 9, 20, 0.4);
}

.magnet-badge {
    padding: 0.25rem 0.5rem;
    background: rgba(74, 144, 226, 0.3);
    color: #4a90e2;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* TV Shows Download */
.tv-download-section {
    margin-bottom: 1.5rem;
}

.seasons-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.season-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

.season-btn {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

.season-btn:hover {
    background: rgba(229, 9, 20, 0.2);
    border-color: var(--netflix-red);
}

.season-btn svg {
    transition: transform 0.3s;
}

.season-item:has(.episodes-list[style*="block"]) .season-btn svg {
    transform: rotate(180deg);
}

.episodes-list {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
}

.episodes-note {
    color: var(--gray-400);
    font-size: 0.875rem;
    text-align: center;
    padding: 1rem;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
}

.episode-btn {
    padding: 0.75rem 1rem;
    background: rgba(229, 9, 20, 0.2);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    transition: all 0.3s;
}

.episode-btn:hover {
    background: rgba(229, 9, 20, 0.4);
    border-color: var(--netflix-red);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .download-modal {
        padding: 1rem;
    }
    
    .download-modal-content {
        max-height: 85vh;
    }
}

/* Episode Selector Modal */
.episode-selector-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.episode-selector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.episode-selector-content {
    position: relative;
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.episode-selector-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.episode-selector-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    color: var(--white);
}

.episode-selector-close {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    transition: all 0.3s;
}

.episode-selector-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--netflix-red);
}

.episode-selector-body {
    padding: 1.5rem;
}

.seasons-select-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.season-select-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

.season-select-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
}

.season-select-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.3s;
}

.season-select-btn:hover {
    background: rgba(229, 9, 20, 0.2);
    border-color: var(--netflix-red);
}

.season-select-btn svg {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.episode-count {
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 400;
}

.season-watched-btn {
    padding: 0.75rem 1rem;
    background: rgba(229, 9, 20, 0.2);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.season-watched-btn:hover {
    background: rgba(229, 9, 20, 0.4);
    border-color: var(--netflix-red);
}

.season-watched-btn svg {
    flex-shrink: 0;
}

.episodes-select-list {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.episodes-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.75rem;
}

.episode-select-btn {
    padding: 0.75rem 1rem;
    background: rgba(229, 9, 20, 0.2);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    transition: all 0.3s;
    position: relative;
}

.episode-select-btn:hover {
    background: rgba(229, 9, 20, 0.4);
    border-color: var(--netflix-red);
    transform: translateY(-2px);
}

.episode-select-btn.watched {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
}

.episode-select-btn.watched:hover {
    background: rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.6);
}

.episode-number {
    flex: 1;
}

.watched-badge {
    background: rgba(34, 197, 94, 0.9);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .episode-selector-modal {
        padding: 1rem;
    }
    
    .episode-selector-content {
        max-height: 85vh;
    }
    
    .episodes-select-grid {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }
}

/* Filters Section */
.filters-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Toggle Filters Button */
.toggle-filters-btn {
    display: none;
    width: 100%;
    padding: 1rem;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.toggle-filters-btn:hover {
    background: rgba(229, 9, 20, 0.2);
    border-color: var(--netflix-red);
}

.toggle-filters-btn:active {
    transform: scale(0.98);
}

.toggle-filters-btn svg:first-child {
    flex-shrink: 0;
}

.toggle-filters-text {
    flex: 1;
    text-align: left;
}

.toggle-filters-arrow {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.toggle-filters-btn.active .toggle-filters-arrow {
    transform: rotate(180deg);
}

.filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

/* Desktop: filtros sempre visíveis */
@media (min-width: 769px) {
    .filters-container {
        max-height: none !important;
        opacity: 1 !important;
        overflow: visible !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        display: flex !important;
    }
    
    .filters-section.filters-open .filters-container,
    .filters-section .filters-container {
        max-height: none !important;
        opacity: 1 !important;
    }
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 150px;
}

.filter-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-300);
}

.filter-select {
    padding: 0.75rem;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 0.25rem;
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-select:hover {
    border-color: var(--netflix-red);
}

.filter-select:focus {
    outline: none;
    border-color: var(--netflix-red);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.clear-filters-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--gray-700);
    border-radius: 0.25rem;
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.clear-filters-btn:hover {
    background: rgba(229, 9, 20, 0.1);
    border-color: var(--netflix-red);
    color: var(--netflix-red);
}

/* Media Type Badges */
.media-type-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.media-type-badge.type-movie {
    background: rgba(229, 9, 20, 0.9);
    color: white;
}

.media-type-badge.type-tv {
    background: rgba(74, 144, 226, 0.9);
    color: white;
}

/* Movie Card Overlay for Search Results */
.movie-card-poster {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 0.5rem 0.5rem 0 0;
}

.movie-card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.75rem;
}

.movie-card:hover .movie-card-overlay {
    opacity: 1;
}

.movie-card-rating {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

.movie-card-info {
    padding: 1rem;
}

.movie-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-card-year {
    font-size: 0.75rem;
    color: var(--gray-400);
}

@media (max-width: 768px) {
    .toggle-filters-btn {
        display: flex;
    }
    
    .filters-section {
        padding: 1rem;
    }
    
    /* Por padrão, filtros estão escondidos no mobile */
    .filters-container {
        display: none !important;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 0;
        visibility: hidden;
    }
    
    /* Quando aberto, mostrar filtros */
    .filters-section.filters-open .filters-container {
        display: flex !important;
        max-height: 1000px;
        opacity: 1;
        visibility: visible;
        margin-top: 1rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.3s ease-out 0.1s, 
                    margin 0.3s ease-out,
                    visibility 0s,
                    padding 0.3s ease-out;
    }
    
    /* Quando fechado, animar fechamento */
    .filters-section:not(.filters-open) .filters-container {
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.3s ease-out, 
                    margin 0.3s ease-out,
                    visibility 0s 0.4s,
                    padding 0.3s ease-out,
                    display 0s 0.4s;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .clear-filters-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Utilities */
.hidden {
    display: none !important;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.error-message {
    text-align: center;
    padding: 2rem;
    color: var(--gray-400);
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--gray-800);
    margin-top: 3rem;
}

.footer-note {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 80px;
    right: 1rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    pointer-events: all;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast svg:first-child {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.toast-message {
    flex: 1;
    line-height: 1.5;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    transition: all 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.toast-success {
    border-left: 4px solid #22c55e;
}

.toast-success svg:first-child {
    color: #22c55e;
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-error svg:first-child {
    color: #ef4444;
}

.toast-warning {
    border-left: 4px solid #f59e0b;
}

.toast-warning svg:first-child {
    color: #f59e0b;
}

.toast-info {
    border-left: 4px solid #3b82f6;
}

.toast-info svg:first-child {
    color: #3b82f6;
}

/* Theme Toggle Button */
.nav-link.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    text-decoration: none;
    min-width: auto;
    height: auto;
}

.nav-link.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--netflix-red);
    color: var(--white);
}

.nav-link.theme-toggle svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.nav-link.theme-toggle span {
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .nav-link.theme-toggle span {
        display: none;
    }
    
    .nav-link.theme-toggle {
        padding: 0.5rem;
        min-width: 40px;
        width: 40px;
    }
}

/* Mobile Menu (Hamburger) */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
    z-index: 10000;
    position: relative;
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--netflix-red);
    outline-offset: 2px;
    border-radius: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999 !important;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.3s,
                opacity 0.3s;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    min-height: 70px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--netflix-red);
}

.mobile-menu-close:active {
    transform: scale(0.95);
}

.mobile-menu-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    flex: 1;
    text-align: center;
}

.mobile-menu-content {
    padding: 1rem 0;
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.mobile-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
    background: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    text-align: left;
    font-family: inherit;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    min-height: 56px;
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link:focus {
    background: rgba(255, 255, 255, 0.1);
    color: var(--netflix-red);
    padding-left: 2rem;
    outline: none;
}

.mobile-menu .nav-link:active {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0.98);
}

.mobile-menu .nav-link:last-child {
    border-bottom: none;
}

.mobile-menu .nav-link svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.mobile-menu .nav-link span {
    flex: 1;
    color: inherit;
}

/* Light theme support for mobile menu */
[data-theme="light"] .mobile-menu {
    background: rgba(255, 255, 255, 0.98);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .mobile-menu-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .mobile-menu-title {
    color: #000000;
}

[data-theme="light"] .mobile-menu-close {
    color: #000000;
}

[data-theme="light"] .mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--netflix-red);
}

[data-theme="light"] .mobile-menu .nav-link {
    color: #000000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .mobile-menu .nav-link:hover,
[data-theme="light"] .mobile-menu .nav-link:focus {
    background: rgba(229, 9, 20, 0.1);
    color: var(--netflix-red);
}

[data-theme="light"] .mobile-menu .nav-link:active {
    background: rgba(229, 9, 20, 0.15);
}

body.menu-open {
    overflow: hidden;
}

/* Progress Bar on Cards */
.watch-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 0.5rem 0.5rem;
}

.watch-progress-bar {
    height: 100%;
    background: var(--netflix-red);
    border-radius: 0 0 0.5rem 0.5rem;
    transition: width 0.3s;
}

/* Player Controls */
.player-controls-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.player-wrapper:hover .player-controls-overlay {
    opacity: 1;
    pointer-events: all;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.player-control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 0.25rem;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.player-control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.player-speed-select {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.25rem;
    color: var(--white);
    padding: 0.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-content {
        gap: 1rem;
        flex-wrap: nowrap;
        position: relative;
        z-index: 1000;
    }
    
    .navbar-logo {
        font-size: 1.25rem;
        flex-shrink: 0;
        order: 1;
        z-index: 1000;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 2;
        margin-left: auto;
        z-index: 10001;
    }
    
    .navbar-search {
        order: 3;
        flex: 1;
        max-width: none;
        min-width: 0;
    }
    
    .navbar-links {
        display: none !important;
    }
    
    .search-form {
        gap: 0.25rem;
    }
    
    .search-input {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    .search-btn {
        padding: 0.5rem 0.75rem;
        flex-shrink: 0;
    }
    
    .search-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }
    
    .movie-poster {
        height: 240px;
    }
    
    .toast-container {
        right: 0.5rem;
        left: 0.5rem;
        top: 70px;
        max-width: none;
        z-index: 10002;
    }
    
    .toast {
        transform: translateY(-100px);
    }
    
    .toast.show {
        transform: translateY(0);
    }
    
    main {
        padding-top: 70px;
    }
    
    /* Menu mobile deve estar sempre acima no mobile */
    .mobile-menu {
        z-index: 9998 !important;
    }
    
    .mobile-menu.active {
        z-index: 9999 !important;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-logo {
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        padding: 0.4rem;
        min-width: 40px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    .search-input {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
        min-width: 0;
    }
    
    .search-btn {
        padding: 0.4rem 0.6rem;
        min-width: 36px;
    }
    
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    .movie-poster {
        height: 200px;
    }
    
    .mobile-menu .nav-link {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        min-height: 52px;
    }
    
    .mobile-menu-content {
        padding-top: 65px;
    }
    
    main {
        padding-top: 65px;
    }
}

/* Profiles Page */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.profile-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.profile-card:hover {
    transform: translateY(-4px);
    border-color: var(--netflix-red);
    box-shadow: 0 8px 24px rgba(229, 9, 20, 0.3);
}

.profile-card.active {
    border-color: var(--netflix-red);
    background: rgba(229, 9, 20, 0.1);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 3rem;
    border: 3px solid var(--netflix-red);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.profile-select-btn,
.profile-delete-btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.875rem;
}

/* Lists Page */
.lists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.list-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.list-card:hover {
    transform: translateY(-4px);
    border-color: var(--netflix-red);
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.list-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.list-delete-btn {
    background: transparent;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s;
}

.list-delete-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.list-description {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.list-stats {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.list-preview {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.list-item-preview {
    width: 60px;
    height: 90px;
    object-fit: cover;
    border-radius: 0.25rem;
}

.list-more-items {
    width: 60px;
    height: 90px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--white);
}

.lists-select {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.list-select-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.list-select-btn:hover {
    background: rgba(229, 9, 20, 0.2);
    border-color: var(--netflix-red);
}

.list-item-count {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Stats Page */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--netflix-red);
    box-shadow: 0 8px 24px rgba(229, 9, 20, 0.3);
}

.stat-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    color: var(--netflix-red);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin: 0.25rem 0 0 0;
}

.stats-section {
    margin-top: 3rem;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.history-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.history-item:hover {
    background: rgba(229, 9, 20, 0.1);
    transform: translateX(4px);
}

.history-poster {
    width: 60px;
    height: 90px;
    object-fit: cover;
    border-radius: 0.25rem;
    flex-shrink: 0;
}

.history-info {
    flex: 1;
}

.history-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.history-date {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin: 0;
}

/* Rating Stars */
.rating-stars {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.rating-stars-select {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.star-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s;
}

.star-btn:hover {
    transform: scale(1.2);
}

.rating-value-display {
    text-align: center;
    color: var(--netflix-red);
    font-weight: 600;
}

/* Continue Watching & Recommendations Sections */
.continue-watching-section,
.recommendations-section {
    margin-bottom: 3rem;
}

.continue-watching-details-section {
    margin: 2rem 0;
}

.continue-watching-details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.continue-watching-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.continue-watching-item:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(229, 9, 20, 0.5);
    transform: translateX(5px);
}

.remove-continue-watching-details-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--white);
}

.remove-continue-watching-details-btn:hover {
    background: rgba(229, 9, 20, 0.9);
    border-color: var(--netflix-red);
    transform: scale(1.1);
}

.continue-watching-item:hover .remove-continue-watching-details-btn {
    opacity: 1;
}

.remove-continue-watching-details-btn svg {
    width: 14px;
    height: 14px;
}

.continue-watching-info {
    flex: 1;
}

.continue-watching-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--white);
}

.continue-watching-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.continue-watching-progress {
    color: var(--netflix-red);
    font-weight: 500;
}

.continue-watching-time {
    color: var(--gray-400);
}

.continue-watching-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.continue-watching-progress-fill {
    height: 100%;
    background: var(--netflix-red);
    border-radius: 3px;
    transition: width 0.3s;
}

.continue-watching-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .continue-watching-item {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .continue-watching-btn {
        width: 100%;
    }
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

/* Adblock Warning - Compact and Dismissible */
.adblock-warning {
    position: relative;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    max-width: 100%;
    animation: slideDown 0.3s ease-out;
    transition: opacity 0.3s, transform 0.3s;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.adblock-warning-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    z-index: 100;
    opacity: 0.8;
    -webkit-tap-highlight-color: transparent;
}

.adblock-warning-close:hover {
    background: rgba(229, 9, 20, 0.8);
    border-color: var(--netflix-red);
    opacity: 1;
    transform: scale(1.1);
}

.adblock-warning-close:active {
    transform: scale(0.9);
    background: rgba(229, 9, 20, 1);
}

.adblock-warning-close:focus {
    outline: 2px solid var(--netflix-red);
    outline-offset: 2px;
}

.adblock-warning-close svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.5;
    pointer-events: none;
}

.adblock-warning-content {
    color: var(--white);
    padding-right: 2rem;
}

.adblock-warning-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.adblock-warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.adblock-warning h3 {
    color: var(--netflix-red);
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.adblock-warning-text {
    margin: 0 0 1rem 0;
    line-height: 1.5;
    color: var(--gray-300);
    font-size: 0.875rem;
}

.adblock-warning-text strong {
    color: var(--white);
    font-weight: 600;
}

.adblock-warning-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-height: auto;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .adblock-warning {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
        border-radius: 0.375rem;
    }
    
    .adblock-warning-header {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .adblock-warning-icon {
        font-size: 1.25rem;
    }
    
    .adblock-warning h3 {
        font-size: 0.875rem;
        line-height: 1.2;
    }
    
    .adblock-warning-text {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }
    
    .adblock-warning-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.375rem;
    }
    
    .adblock-warning-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .adblock-warning-close {
        top: 0.375rem;
        right: 0.375rem;
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        background: rgba(229, 9, 20, 0.7);
        border-color: rgba(229, 9, 20, 0.5);
    }
    
    .adblock-warning-close:active {
        background: rgba(229, 9, 20, 1);
    }
    
    .adblock-warning-close svg {
        width: 18px;
        height: 18px;
    }
    
    .adblock-warning-content {
        padding-right: 2.75rem;
    }
}

/* Light theme support */
[data-theme="light"] .adblock-warning {
    background: rgba(229, 9, 20, 0.08);
    border-color: rgba(229, 9, 20, 0.25);
}

[data-theme="light"] .adblock-warning-close {
    color: #000000;
}

[data-theme="light"] .adblock-warning-close:hover {
    background: rgba(229, 9, 20, 0.15);
}

[data-theme="light"] .adblock-warning-text {
    color: #333333;
}

[data-theme="light"] .adblock-warning-text strong {
    color: #000000;
}

.adblock-fallback {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Open New Window Button in Source Selector */
.open-new-window-btn {
    background: transparent !important;
    border: none !important;
    color: var(--gray-400) !important;
    cursor: pointer !important;
    padding: 0.25rem !important;
    margin-left: auto !important;
    opacity: 0.7 !important;
    transition: opacity 0.2s, color 0.2s, transform 0.2s !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    flex-shrink: 0;
}

.open-new-window-btn:hover {
    opacity: 1 !important;
    color: var(--netflix-red) !important;
    transform: scale(1.1);
    background: rgba(229, 9, 20, 0.1) !important;
}

.source-btn {
    position: relative;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--netflix-red);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--netflix-red);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.rating-input {
    text-align: center;
}

/* Scroll Infinite */
.infinite-scroll-trigger {
    height: 20px;
    margin: 2rem 0;
}

