/* assets/css/live-cinema.css - განახლებული და დახვეწილი */

:root {
    --cinema-bg: #0a0a0a;
    --cinema-primary: #e50914;
    --cinema-gold: #d4af37;
    --cinema-accent: #00a8ff;
    --cinema-card-bg: #1a1a1a;
    --cinema-text: #f0f0f0;
    --cinema-chat-bg: #181818;
    --cinema-header-bg: #111;
}

body { 
    background-color: var(--cinema-bg) !important; 
    color: var(--cinema-text);
    font-family: 'FiraGO', sans-serif;
    overflow-x: hidden;
}

.cinema-hall { 
    width: 100%; 
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cinema-bg) 0%, #1a1a1a 100%);
}

/* კინოთეატრის დარბაზის სტილები */
.cinema-theater {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.theater-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(229, 9, 20, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.theater-screen-area {
    position: relative;
    padding: 2rem 0;
    z-index: 2;
}

.cinema-screen {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.screen-container {
    position: relative;
    background: #000;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: 
        0 0 100px rgba(212, 175, 55, 0.3),
        0 0 200px rgba(229, 9, 20, 0.1),
        inset 0 0 50px rgba(0, 0, 0, 0.8);
    border: 2px solid #333;
}

.screen-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.player-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    z-index: 2;
}

.player-container iframe,
.player-container .video-js {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}

.screen-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid #d4af37;
    border-radius: 12px;
    pointer-events: none;
    z-index: 3;
    box-shadow: 
        inset 0 0 20px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(212, 175, 55, 0.2);
}

/* მაყურებლების სილუეტები */
.audience-silhouettes {
    position: relative;
    height: 150px;
    margin-top: -20px;
    z-index: 2;
    overflow: hidden;
}

.audience-row {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 5px;
}

.silhouette {
    width: 40px;
    height: 60px;
    background: linear-gradient(to top, #333 0%, #222 100%);
    border-radius: 20px 20px 0 0;
    position: relative;
    opacity: 0.7;
}

.silhouette::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10px;
    width: 20px;
    height: 25px;
    background: #444;
    border-radius: 10px 10px 5px 5px;
}

.silhouette:nth-child(2n) {
    height: 55px;
    width: 35px;
}

.silhouette:nth-child(3n) {
    height: 65px;
    width: 45px;
}

/* კინოს სავარძლები */
.theater-seats {
    position: relative;
    height: 100px;
    margin-top: 20px;
    z-index: 1;
}

.seat-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 8px;
}

.seat {
    width: 25px;
    height: 20px;
    background: linear-gradient(to bottom, #444 0%, #222 100%);
    border-radius: 3px 3px 0 0;
    position: relative;
    opacity: 0.6;
}

.seat::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 2px;
    width: 21px;
    height: 8px;
    background: #555;
    border-radius: 2px 2px 0 0;
}

.seat:nth-child(2n) {
    opacity: 0.4;
}

.seat:nth-child(3n) {
    opacity: 0.5;
}

/* კინოს დარბაზის დეტალები */
.theater-details {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    font-family: 'FiraGO', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 3;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Error State */
.cinema-error-state {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 2rem;
}

.error-content {
    max-width: 500px;
}

.error-icon {
    color: var(--cinema-gold);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--cinema-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cinema {
    background: linear-gradient(135deg, var(--cinema-primary) 0%, #b80710 100%);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cinema:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3);
}

/* Scheduled & Finished Views */
.scheduled-view, .finished-view {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scheduled-view::before, .finished-view::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(74,1,1,0.7) 100%);
    backdrop-filter: blur(5px);
}

.cinema-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.event-poster {
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    max-width: 300px;
    margin: 0 auto 2rem;
    transition: transform 0.3s ease;
}

.event-poster:hover {
    transform: scale(1.05);
}

.event-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--cinema-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.event-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
}

.meta-item i {
    color: var(--cinema-gold);
}

/* Countdown Timer */
.countdown-section {
    margin: 3rem 0;
}

.countdown-title {
    font-size: 1.3rem;
    color: var(--cinema-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

#live-countdown {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

#live-countdown .timer-box {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    text-align: center;
    min-width: 100px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#live-countdown .timer-box:hover {
    transform: translateY(-5px);
    border-color: var(--cinema-gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

#live-countdown .timer-box span:first-child {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

#live-countdown .timer-box .timer-label {
    font-size: 0.9rem;
    color: var(--cinema-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* Live View */
.live-view {
    background: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.cinema-header {
    background: var(--cinema-header-bg);
    border-bottom: 2px solid #333;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cinema-primary);
    font-weight: 600;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: var(--cinema-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.event-info-live h2 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.cinema-main {
    display: flex;
    flex: 1;
    height: calc(100vh - 80px);
}

.cinema-player-section {
    flex: 1;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cinema-chat-section {
    width: 400px;
    background: var(--cinema-chat-bg);
    border-left: 2px solid #333;
    display: flex;
    flex-direction: column;
}

/* Chat Styles */
.chat-header {
    padding: 1.5rem;
    background: #222;
    border-bottom: 1px solid #333;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column-reverse;
}

.chat-message {
    margin-bottom: 1rem;
    display: flex;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-message .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid #333;
}

.chat-message .message-content {
    background: #2a2a2a;
    color: #eee;
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 280px;
    position: relative;
}

.chat-message .message-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 12px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #2a2a2a;
}

.chat-message.is-me {
    flex-direction: row-reverse;
}

.chat-message.is-me .avatar {
    margin-right: 0;
    margin-left: 12px;
}

.chat-message.is-me .message-content {
    background: var(--cinema-primary);
    color: white;
}

.chat-message.is-me .message-content::before {
    left: auto;
    right: -8px;
    border-right: none;
    border-left: 8px solid var(--cinema-primary);
}

.message-meta {
    font-size: 0.75rem;
    color: #999;
    margin-top: 4px;
}

.chat-input-area {
    padding: 1.5rem;
    background: #222;
    border-top: 1px solid #333;
}

.chat-input-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.chat-input-wrapper textarea {
    flex: 1;
    resize: none;
    background: #333;
    color: white;
    border: 1px solid #444;
    border-radius: 20px;
    padding: 12px 18px;
    font-family: inherit;
    min-height: 44px;
    max-height: 120px;
}

.chat-input-wrapper textarea:focus {
    outline: none;
    border-color: var(--cinema-primary);
}

.chat-input-wrapper button {
    background: var(--cinema-primary);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-input-wrapper button:hover:not(:disabled) {
    background: #b80710;
    transform: scale(1.05);
}

.chat-input-wrapper button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Guest Chat View */
.cinema-chat-guest {
    width: 400px;
    background: var(--cinema-chat-bg);
    border-left: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.guest-message {
    color: #ccc;
}

.guest-message i {
    font-size: 3rem;
    color: var(--cinema-gold);
    margin-bottom: 1rem;
}

/* Curtain Effects */
.curtain {
    background: linear-gradient(135deg, #4a0101 0%, #8b0000 50%, #4a0101 100%);
    position: relative;
    overflow: hidden;
}

.curtain::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: curtainShine 3s infinite;
}

@keyframes curtainShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Navigation Styles */
.cinema-navigation {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.cinema-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cinema-text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.nav-back:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.nav-event-info {
    display: flex;
    align-items: center;
}

.event-status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-live {
    background: rgba(229, 9, 20, 0.2);
    color: var(--cinema-primary);
    border: 1px solid var(--cinema-primary);
}

.status-upcoming {
    background: rgba(212, 175, 55, 0.2);
    color: var(--cinema-gold);
    border: 1px solid var(--cinema-gold);
}

.status-finished {
    background: rgba(0, 168, 255, 0.2);
    color: var(--cinema-accent);
    border: 1px solid var(--cinema-accent);
}

.status-canceled {
    background: rgba(108, 117, 125, 0.2);
    color: #6c757d;
    border: 1px solid #6c757d;
}

.nav-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
    border-radius: 8px;
    color: var(--cinema-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Event Details Footer */
.event-details-footer {
    background: rgba(20, 20, 20, 0.9);
    border-top: 1px solid #333;
    padding: 2rem 0;
    margin-top: 2rem;
}

.event-meta-details h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.meta-grid {
    display: grid;
    gap: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.meta-item i {
    color: var(--cinema-gold);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.meta-content {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.8rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-value {
    font-size: 1rem;
    color: white;
    font-weight: 600;
}

.event-actions-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: center;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.countdown-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--cinema-gold);
    border-radius: 8px;
    color: var(--cinema-gold);
    font-size: 0.9rem;
}

/* Related Events Section */
.related-events-section {
    background: rgba(10, 10, 10, 0.8);
    padding: 3rem 0;
    border-top: 1px solid #333;
}

.section-title {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 2rem;
}

.related-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-event-card {
    background: var(--cinema-card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-event-card:hover {
    transform: translateY(-10px);
    border-color: var(--cinema-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.related-event-poster {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-event-info {
    padding: 1.5rem;
}

.related-event-info h5 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.event-date {
    color: var(--cinema-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Enhanced Error State */
.cinema-error-state {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    color: var(--cinema-gold);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--cinema-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-suggestions {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--cinema-gold);
}

.error-suggestions h4 {
    color: var(--cinema-gold);
    margin-bottom: 1rem;
}

.error-suggestions ul {
    color: #ccc;
    padding-left: 1.5rem;
}

.error-suggestions li {
    margin-bottom: 0.5rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.error-support {
    text-align: center;
}

.error-support a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-support a:hover {
    color: var(--cinema-primary) !important;
}

/* Enhanced Scheduled View */
.scheduled-view .cinema-content {
    max-width: 900px;
}

.event-actions-main {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-main-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.btn-primary-cinema {
    background: linear-gradient(135deg, var(--cinema-primary) 0%, #b80710 100%);
    border: none;
    color: white;
}

.btn-primary-cinema:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
    color: white;
}

.btn-secondary-cinema {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--cinema-gold);
    color: var(--cinema-gold);
}

.btn-secondary-cinema:hover {
    background: var(--cinema-gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Enhanced Countdown */
.countdown-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.countdown-title {
    font-size: 1.5rem;
    color: var(--cinema-gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

#live-countdown {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

#live-countdown .timer-box {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    min-width: 120px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#live-countdown .timer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

#live-countdown .timer-box:hover::before {
    left: 100%;
}

#live-countdown .timer-box:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--cinema-gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

#live-countdown .timer-box span:first-child {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#live-countdown .timer-box .timer-label {
    font-size: 1rem;
    color: var(--cinema-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Live View Enhancements */
.live-view-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid #333;
}

.live-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.control-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #444;
    border-radius: 6px;
    color: white;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Toast Notifications */
.cinema-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
}

.cinema-toast.show {
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid #28a745;
}

.toast-error {
    border-left: 4px solid #dc3545;
}

.toast-warning {
    border-left: 4px solid #ffc107;
}

.toast-info {
    border-left: 4px solid #17a2b8;
}

.toast-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.toast-close {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Loading States */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Animation Classes */
.animate-in {
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* რესპონსივი დიზაინი */
@media (max-width: 768px) {
    .cinema-screen {
        padding: 0 1rem;
    }
    
    .silhouette {
        width: 30px;
        height: 45px;
    }
    
    .silhouette:nth-child(2n) {
        width: 25px;
        height: 40px;
    }
    
    .silhouette:nth-child(3n) {
        width: 35px;
        height: 50px;
    }
    
    .audience-silhouettes {
        height: 120px;
    }
    
    .theater-details {
        font-size: 1rem;
    }

    .cinema-nav {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-actions {
        justify-content: center;
    }
    
    .event-details-footer .row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .action-buttons {
        justify-content: center;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    #live-countdown .timer-box {
        min-width: 80px;
        padding: 1.5rem 1rem;
    }
    
    #live-countdown .timer-box span:first-child {
        font-size: 2rem;
    }
    
    .event-actions-main {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-main-action {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .cinema-screen {
        padding: 0 0.5rem;
    }
    
    .silhouette {
        width: 20px;
        height: 35px;
    }
    
    .audience-silhouettes {
        height: 100px;
    }
    
    .theater-seats {
        height: 80px;
    }
    
    .seat {
        width: 20px;
        height: 15px;
    }

    .related-events-grid {
        grid-template-columns: 1fr;
    }
    
    .meta-grid {
        grid-template-columns: 1fr;
    }
    
    #live-countdown {
        gap: 0.5rem;
    }
    
    #live-countdown .timer-box {
        min-width: 70px;
        padding: 1rem 0.5rem;
    }
    
    #live-countdown .timer-box span:first-child {
        font-size: 1.8rem;
    }
    
    .cinema-navigation {
        padding: 0.5rem 0;
    }
    
    .nav-action-btn span {
        display: none;
    }
    
    .nav-action-btn {
        padding: 0.75rem;
    }
}

@media (max-width: 1200px) {
    .cinema-chat-section,
    .cinema-chat-guest {
        width: 350px;
    }
}

@media (max-width: 992px) {
    .cinema-main {
        flex-direction: column;
        height: auto;
    }
    
    .cinema-player-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .cinema-chat-section,
    .cinema-chat-guest {
        width: 100%;
        height: 40vh;
        min-height: 300px;
        border-left: none;
        border-top: 2px solid #333;
    }
    
    .event-title {
        font-size: 2.2rem;
    }
    
    #live-countdown .timer-box {
        min-width: 80px;
        padding: 1rem 0.8rem;
    }
    
    #live-countdown .timer-box span:first-child {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .cinema-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .event-title {
        font-size: 1.8rem;
    }
    
    .event-description {
        font-size: 1rem;
    }
    
    #live-countdown {
        gap: 1rem;
    }
    
    #live-countdown .timer-box {
        min-width: 70px;
        padding: 0.8rem 0.5rem;
    }
    
    #live-countdown .timer-box span:first-child {
        font-size: 1.8rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .cinema-content {
        padding: 1rem;
    }
    
    .event-poster {
        max-width: 250px;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    #live-countdown {
        gap: 0.5rem;
    }
    
    #live-countdown .timer-box {
        min-width: 60px;
        padding: 0.6rem 0.3rem;
    }
    
    #live-countdown .timer-box span:first-child {
        font-size: 1.5rem;
    }
    
    .chat-input-area {
        padding: 1rem;
    }
}