:root {
    --primary-red: #e50914;
    --primary-red-dark: #b20710;
    --primary-red-light: #ff2e2e;
    --dark-bg: #141414;
    --dark-bg-light: #221f1f;
    --dark-bg-lighter: #2d2d2d;
    --text-light: #f5f5f1;
    --text-gray: #808080;
    --text-dark: #333;
    --success-green: #28a745;
    --warning-yellow: #ffc107;
    --danger-red: #dc3545;
    --info-blue: #17a2b8;
    --border-color: #333;
    --border-light: #444;
    --card-bg: #1a1a1a;
    --hover-bg: #262626;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: var(--dark-bg-light);
    border-bottom: 3px solid var(--primary-red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo i {
    color: var(--primary-red);
    font-size: 2rem;
}

.search-container {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    position: relative;
}

.search-form {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    background: var(--dark-bg-lighter);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.2);
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-red);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.search-button:hover {
    background: var(--primary-red-light);
    transform: translateY(-50%) scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-red);
}

.nav-link i {
    font-size: 1.1rem;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-greeting {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-light));
    color: white;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 1rem;
    cursor: pointer;
    line-height: normal;
    vertical-align: middle;
}

.btn-outline:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-2px);
}

.btn-light {
    background: var(--dark-bg-lighter);
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.btn-light:hover {
    background: var(--hover-bg);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu {
    display: none;
    background: var(--dark-bg-light);
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    display: block;
}

.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.flash-success {
    background: var(--success-green);
    border-left: 4px solid #1e7e34;
}

.flash-error {
    background: var(--danger-red);
    border-left: 4px solid #bd2130;
}

.flash-warning {
    background: var(--warning-yellow);
    color: var(--text-dark);
    border-left: 4px solid #d39e00;
}

.flash-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.main-content {
    flex: 1;
    padding: 30px 0;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-red);
}

.section-title i {
    color: var(--primary-red);
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.movie-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.15);
    border-color: var(--primary-red);
}

.movie-poster {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.movie-card:hover .movie-poster img {
    transform: scale(1.05);
}

.movie-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(5px);
}

.movie-rating i {
    color: gold;
}

.movie-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.movie-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.4;
}

.movie-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.movie-desc {
    color: var(--text-gray);
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.5;
}

.movie-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.sessions-list {
    display: grid;
    gap: 15px;
}

.session-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.session-card:hover {
    background: var(--hover-bg);
    border-color: var(--primary-red);
}

.session-info {
    flex: 1;
}

.session-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.session-info p {
    color: var(--text-gray);
}

.session-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-red);
    min-width: 120px;
}

.features {
    background: var(--dark-bg-light);
    padding: 50px;
    border-radius: 15px;
    margin-top: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 25px;
    background: var(--card-bg);
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.1);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.feature p {
    color: var(--text-gray);
    line-height: 1.5;
}

.footer {
    background: var(--dark-bg-light);
    border-top: 3px solid var(--primary-red);
    padding: 50px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-gray);
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.footer-section i {
    color: var(--primary-red);
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.dropdown {
    position: relative;
}

.btn-user {
    background: var(--dark-bg-lighter);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-user:hover {
    background: var(--hover-bg);
    border-color: var(--primary-red);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--dark-bg-light);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    display: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--text-light);
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: var(--hover-bg);
    color: var(--primary-red);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 5px 0;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border-color: var(--danger-red);
    color: var(--danger-red);
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border-color: var(--success-green);
    color: var(--success-green);
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--warning-yellow);
    color: var(--warning-yellow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: var(--dark-bg-lighter);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.2);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
}

.input-with-icon input {
    padding-left: 45px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 1rem;
}

.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-gray);
}

.empty-state i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-success {
    background: rgba(40, 167, 69, 0.2);
    color: var(--success-green);
}

.badge-warning {
    background: rgba(255, 193, 7, 0.2);
    color: var(--warning-yellow);
}

.badge-danger {
    background: rgba(220, 53, 69, 0.2);
    color: var(--danger-red);
}

.welcome-banner {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.welcome-banner h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-menu {
    gap: 35px;
    margin-right: 15px;
}

.nav-auth {
    margin-left: 40px;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    background: var(--card-bg);
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--hover-bg);
}

.faq-question i {
    margin-left: 10px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: var(--text-gray);
    line-height: 1.6;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-10px);
    display: block !important;
    visibility: hidden;
}

.faq-item.active {
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.15);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
    opacity: 1;
    transform: translateY(0);
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
    visibility: visible;
}

.faq-item.active .faq-question {
    color: var(--primary-red);
    background: rgba(229, 9, 20, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-red);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-search {
    max-width: 600px;
    margin: 30px auto 40px;
}

.hero-search-form {
    display: flex;
    gap: 10px;
}

.hero-search-input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.hero-search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.3);
}

.hero-search-button {
    padding: 15px 25px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-search-button:hover {
    background: var(--primary-red-light);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat i {
    font-size: 2rem;
    color: var(--primary-red);
}

.stat span {
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.new-movies-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.new-movie-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
}

.new-movie-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.15);
}

.new-movie-poster {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.new-movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.new-movie-info {
    padding: 20px;
    text-align: center;
}

.new-movie-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.new-movie-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
}

.testimonial-rating i {
    color: #ccc;
}

.testimonial-rating i.filled {
    color: gold;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
}

.testimonial-message {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 15px;
}

.testimonial-date {
    text-align: right;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.section.schedule-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 30px;
}

.section-title {
    color: var(--text-light);
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 2rem;
}

.section-title i {
    color: var(--primary-red);
    margin-right: 10px;
}

.filters {
    background: var(--dark-bg-lighter);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.filter-form {
    width: 100%;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 15px;
}

.filter-group {
    min-width: 150px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-group input[type="date"],
.filter-group select {
    width: 100%;
    padding: 12px 15px;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s;
}

.filter-group input[type="date"]:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.2);
}

.filter-group .btn {
    margin-right: 10px;
    margin-top: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-light));
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: white;
}

.empty-state {
    text-align: center;
    padding: 50px 30px;
    background: var(--card-bg);
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    margin: 30px 0;
}

.empty-state i {
    color: var(--text-gray);
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.empty-state p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 1rem;
}

.schedule-date {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(255, 46, 46, 0.05));
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
}

.schedule-date h2 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0;
}

.movie-schedule {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.3s;
}

.movie-schedule:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.15);
    transform: translateY(-3px);
}

.movie-header-schedule {
    display: flex;
    padding: 20px;
    background: var(--dark-bg-lighter);
    border-bottom: 1px solid var(--border-color);
}

.movie-poster-schedule {
    flex: 0 0 120px;
    margin-right: 20px;
}

.movie-poster-schedule img {
    width: 120px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.movie-info-schedule {
    flex: 1;
}

.movie-info-schedule h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.movie-meta-schedule {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.movie-meta-schedule span {
    background: var(--dark-bg);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-gray);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.movie-meta-schedule span i {
    color: var(--primary-red);
    font-size: 0.9rem;
}

.movie-sessions-count {
    color: var(--text-gray);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.movie-sessions-count i {
    color: var(--primary-red);
}

.sessions-timeline {
    padding: 20px;
}

.session-timeline {
    display: grid;
    grid-template-columns: 100px 1fr 150px 120px 150px;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background: var(--dark-bg);
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.session-timeline:hover {
    background: var(--hover-bg);
    border-color: var(--primary-red);
}

.timeline-time {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-time i {
    color: var(--primary-red);
    font-size: 1rem;
}

.timeline-hall {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.timeline-hall i {
    color: var(--primary-red);
    font-size: 0.9rem;
}

.format-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--primary-red);
    color: white;
    margin-left: 8px;
}

.format-badge.vip {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.timeline-seats {
    display: flex;
    align-items: center;
}

.seats-info {
    width: 100%;
}

.seats-info span {
    display: block;
    color: var(--text-gray);
    margin-bottom: 5px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.seats-info span i {
    color: var(--primary-red);
    font-size: 0.8rem;
}

.seats-progress {
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
    border-radius: 3px;
    transition: width 0.5s ease;
}

.timeline-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-price i {
    font-size: 1rem;
    color: var(--text-gray);
}

.timeline-action .btn-book {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-light));
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.timeline-action .btn-book:hover {
    background: linear-gradient(135deg, var(--primary-red-dark), var(--primary-red));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}

.badge-no-seats {
    background: var(--dark-bg-lighter);
    color: var(--text-gray);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
}

.badge-no-seats i {
    color: var(--danger-red);
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
}

.filter-actions .btn {
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .session-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .filter-row {
        flex-direction: column;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .movie-header-schedule {
        flex-direction: column;
        text-align: center;
    }
    
    .movie-poster-schedule {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .movie-poster-schedule img {
        width: 150px;
        height: 225px;
    }
    
    .session-timeline {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }
    
    .timeline-time,
    .timeline-hall,
    .timeline-price {
        justify-content: center;
    }
    
    .seats-info {
        text-align: center;
    }
}

.calendar-container {
    position: relative;
    width: 100%;
}

.calendar-input {
    position: relative;
    cursor: pointer;
}

.calendar-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-red);
    pointer-events: none;
    z-index: 2;
}

.custom-calendar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    margin-top: 5px;
    animation: calendarFadeIn 0.3s ease;
}

.custom-calendar.active {
    display: block;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--dark-bg-lighter);
    border-bottom: 1px solid var(--border-color);
    border-radius: 10px 10px 0 0;
}

.calendar-header button {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.calendar-header button:hover {
    background: var(--primary-red);
    color: white;
}

.calendar-month-year {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px 15px;
    background: var(--dark-bg-lighter);
    border-bottom: 1px solid var(--border-color);
}

.calendar-weekday {
    text-align: center;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 5px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 10px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--dark-bg);
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s;
    border-radius: 4px;
}

.calendar-day:hover:not(.disabled):not(.today):not(.selected) {
    background: var(--hover-bg);
    transform: scale(1.05);
}

.calendar-day.disabled {
    color: var(--text-gray);
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-day.other-month {
    color: var(--text-gray);
    opacity: 0.5;
}

.calendar-day.today {
    background: rgba(229, 9, 20, 0.2);
    color: var(--primary-red);
    font-weight: 600;
    border: 1px solid var(--primary-red);
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-light));
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.3);
}

.calendar-footer {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    background: var(--dark-bg-lighter);
    border-radius: 0 0 10px 10px;
}

.btn-today, .btn-close-calendar {
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-today {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
}

.btn-today:hover {
    background: var(--hover-bg);
    border-color: var(--primary-red);
}

.btn-close-calendar {
    background: var(--primary-red);
    border: 1px solid var(--primary-red);
    color: white;
}

.btn-close-calendar:hover {
    background: var(--primary-red-light);
    transform: translateY(-2px);
}

@keyframes calendarFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendar-day.has-sessions {
    position: relative;
}

.calendar-day.has-sessions::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 50%;
}

.calendar-day.has-sessions.selected::after {
    background: white;
}

.quick-dates {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.quick-date-btn {
    padding: 8px 15px;
    background: var(--dark-bg-lighter);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-date-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.quick-date-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.mobile-calendar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.mobile-calendar-container {
    width: 90%;
    max-width: 400px;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    animation: mobileCalendarSlide 0.3s ease;
}

.date-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.date-input-wrapper .date-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-red);
    pointer-events: none;
    z-index: 2;
}

.date-input-wrapper input[type="date"] {
    width: 100%;
    padding-right: 40px;
    position: relative;
    z-index: 1;
}

.date-input-wrapper input.datepicker {
    padding-right: 40px;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-light);
    padding: 12px 15px;
    width: 100%;
    cursor: pointer;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 15px;
}

.filter-group {
    flex: 0 0 auto;
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
}

.filter-actions .btn {
    white-space: nowrap;
    padding: 10px 20px;
}

.session-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary-red);
    color: white;
    min-width: 70px;
    height: 70px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(229, 9, 20, 0.3);
}

.date-day {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 2px;
}

.date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.session-info p i {
    margin-right: 4px;
}

.session-info p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 0.9rem;
}

@keyframes mobileCalendarSlide {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .session-timeline {
        padding: 15px;
    }
    
    .timeline-action .btn-book,
    .badge-no-seats {
        width: 100%;
        justify-content: center;
    }
}

@keyframes scheduleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.movie-schedule {
    animation: scheduleFadeIn 0.4s ease forwards;
}

@media (max-width: 992px) {
    .search-container {
        max-width: 300px;
        margin: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }
    
    .search-container {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 15px 0 0 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .session-card {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .session-price {
        min-width: auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo span {
        font-size: 1.4rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .movie-card {
        margin: 0 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.remember-me {
    text-align: left;
    margin: 15px 0 25px 0;
}

.remember-me label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.profile-page .search-input {
    min-width: 300px;
}

.profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.profile-header h1 {
    margin: 0;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    white-space: nowrap;
}

.nav-link {
    white-space: nowrap;
}

.auth-card form .form-group.remember-me {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    margin: 15px 0 25px 0 !important;
    padding-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    float: left !important;
    clear: both !important;
}

.auth-card form .form-group.remember-me input[type="checkbox"] {
    margin: 0 !important;
    margin-right: 10px !important;
    float: left !important;
    position: static !important;
}

.auth-card form .form-group.remember-me label {
    margin: 0 !important;
    float: left !important;
    display: inline !important;
}

.auth-card form .form-group .form-check {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    margin: 15px 0 !important;
    padding-left: 0 !important;
    width: 100% !important;
    float: left !important;
}

.auth-card form .form-group .form-check input[type="checkbox"] {
    margin: 0 !important;
    margin-right: 10px !important;
    float: left !important;
    transform: scale(1.2) !important;
}

.auth-card form .form-group .form-check label {
    margin: 0 !important;
    float: left !important;
    display: inline !important;
    line-height: 1.4 !important;
}

.auth-card form .form-group .form-check label a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s;
}

.auth-card form .form-group .form-check label a:hover {
    color: var(--primary-red-light);
    text-decoration: underline;
}

.terms-page .terms-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.7;
}

.terms-page .terms-content h3 {
    color: var(--primary-red);
    margin-top: 25px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
    font-size: 1.3rem;
}

.terms-page .terms-content h3:first-child {
    margin-top: 0;
}

.terms-page .terms-content p {
    margin-bottom: 15px;
    color: var(--text-gray);
}

.terms-page .terms-content ul,
.terms-page .terms-content ol {
    margin: 15px 0 15px 20px;
    color: var(--text-gray);
}

.terms-page .terms-content li {
    margin-bottom: 8px;
}

.terms-page .terms-content strong {
    color: var(--text-light);
}

.terms-page .terms-content .highlight {
    background: rgba(229, 9, 20, 0.1);
    border-left: 4px solid var(--primary-red);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.terms-page .terms-content .highlight p {
    margin-bottom: 0;
    color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--dark-bg-lighter) !important;
    color: white !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 6px !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--dark-bg-lighter) inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

.search-input {
    background: var(--dark-bg-lighter) !important;
    color: white !important;
}

.faq-answer {
    display: block !important;
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    transition: all 0.5s ease !important;
}

.faq-item.active .faq-answer {
    max-height: 500px !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding-bottom: 20px !important;
}

.session-info {
    flex: 1;
}

.session-info h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.session-info p {
    color: #ccc;
    font-size: 0.9rem;
}

.session-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-right: 20px;
    min-width: 100px;
}

.session-action .btn {
    white-space: nowrap;
}

.booking-header {
    margin-bottom: 30px;
}

.hall-plan {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.hall-screen {
    text-align: center;
    background: linear-gradient(90deg, #666 0%, #888 50%, #666 100%);
    color: white;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 3px;
    margin: 0 0 40px 0;
    border-radius: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    position: relative;
}

.hall-screen:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: #555;
    border-radius: 50%;
    opacity: 0.7;
}

.hall-seats {
    margin: 30px 0;
}

.seat-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 20px;
}

.row-number {
    min-width: 80px;
    text-align: right;
    font-weight: 600;
    color: #333;
}

.seats-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

.seat {
    width: 40px;
    height: 40px;
    background: #28a745;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
    border: 2px solid transparent;
    user-select: none;
}

.seat:hover {
    transform: scale(1.05);
}

.seat.available {
    background: #28a745;
}

.seat.available:hover {
    background: #218838;
    border-color: #1e7e34;
}

.seat.selected {
    background: #007bff;
    border-color: #0056b3;
}

.seat.occupied {
    background: #dc3545;
    cursor: not-allowed;
    opacity: 0.7;
}

.seat-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-item .seat {
    width: 30px;
    height: 30px;
    cursor: default;
}

.booking-summary {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.summary-item.total {
    font-size: 18px;
    font-weight: 700;
    color: #e74c3c;
    border-bottom: none;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #eee;
}

.booking-actions {
    text-align: center;
    margin-top: 30px;
}

#book-btn {
    font-size: 18px;
    padding: 15px 40px;
    min-width: 250px;
}

#book-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .seat {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .seats-row {
        gap: 5px;
    }
    
    .seat-legend {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .row-number {
        min-width: 60px;
        font-size: 14px;
    }
}

.seat {
    color: white !important;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.seat-legend span {
    color: #333 !important;
    font-weight: 500;
}

.legend-item {
    color: #333 !important;
}

.seat-legend {
    background: #f8f9fa !important;
    color: #333 !important;
}

.booking-summary,
.summary-item,
.summary-item span {
    color: #333 !important;
}

.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
}

.auth-modal.show {
    display: flex;
}

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
}

.auth-modal-overlay.show {
    display: block;
}

.auth-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    width: 420px;
    max-width: 90%;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(229, 9, 20, 0.3);
    animation: slideInUp 0.4s ease;
    position: relative;
    z-index: 1002;
}

.auth-modal-header {
    background: linear-gradient(135deg, #e50914, #b00710);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.auth-modal-header i {
    font-size: 28px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
}

.auth-modal-header h3 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    flex: 1;
    text-align: center;
}

.auth-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.auth-modal-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.auth-modal-body {
    padding: 35px 25px;
    text-align: center;
}

.auth-icon {
    font-size: 60px;
    color: #ffd700;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

.auth-modal-body p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.auth-modal-footer {
    padding: 20px 25px 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.auth-btn {
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.register-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}

.login-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid #e50914;
}

.login-btn:hover {
    background: #e50914;
    transform: translateY(-2px);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.footer-feedback-link:hover {
    color: #fff;
    text-decoration: underline;
    transform: translateY(-1px);
}