  .header h1 {
            font-size: 2rem;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .video-container {
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* 16:9 aspect ratio */
            background: #000;
            overflow: hidden;
        }

        .video-player {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .loading-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            z-index: -1;
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid #fff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 15px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .controls-section {
            padding: 25px;
            background: linear-gradient(145deg, #f8f9fa, #e9ecef);
        }

        .section-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2c3e50;
            display: flex;
            align-items: center;
        }

        .section-title::before {
            content: '';
            width: 4px;
            height: 20px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            margin-right: 10px;
            border-radius: 2px;
        }

        .server-controls {
            margin-bottom: 30px;
        }

        .server-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 15px;
        }

        .server-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .server-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        .server-btn.active {
            background: linear-gradient(45deg, #2c3e50, #34495e);
            box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
        }

        .quality-selector {
            display: none;
            margin-top: 15px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 15px;
            border: 2px solid #e9ecef;
        }

        .quality-selector.show {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .quality-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .quality-btn {
            padding: 8px 16px;
            border: 2px solid #667eea;
            border-radius: 20px;
            background: transparent;
            color: #667eea;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .quality-btn:hover,
        .quality-btn.active {
            background: #667eea;
            color: white;
            transform: scale(1.05);
        }

        .episode-controls {
            margin-bottom: 20px;
        }

        .episode-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
            gap: 10px;
            margin-top: 15px;
        }

        .episode-btn {
            padding: 12px 8px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            background: white;
            color: #2c3e50;
            cursor: pointer;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .episode-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #667eea, #764ba2);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .episode-btn:hover::before,
        .episode-btn.active::before {
            left: 0;
        }

        .episode-btn:hover,
        .episode-btn.active {
            color: white;
            border-color: #667eea;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .tags-section {
            margin-top: 20px;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag {
            padding: 8px 16px;
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            color: white;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(231, 76, 60, 0.3);
        }

        .tag.indo {
            background: linear-gradient(45deg, #27ae60, #2ecc71);
            box-shadow: 0 3px 10px rgba(39, 174, 96, 0.3);
        }

        .tag.hd {
            background: linear-gradient(45deg, #f39c12, #e67e22);
            box-shadow: 0 3px 10px rgba(243, 156, 18, 0.3);
        }



        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            .header h1 {
                font-size: 1.5rem;
            }

            .controls-section {
                padding: 20px;
            }

            .server-buttons {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                gap: 8px;
            }

            .server-btn {
                flex: 1;
                min-width: calc(50% - 4px);
                padding: 8px 12px;
                font-size: 0.9rem;
                text-align: center;
            }

            .episode-grid {
                grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
                gap: 8px;
            }

            .episode-btn {
                padding: 10px 6px;
                font-size: 0.9rem;
            }

            .quality-buttons {
                justify-content: center;
            }

     
        }

        @media (max-width: 480px) {
            .server-buttons {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 8px;
                justify-items: center;
            }
            
            .quality-buttons {
                flex-direction: column;
                align-items: center;
            }

            .server-btn {
                width: 100%;
                padding: 8px 12px;
                font-size: 0.85rem;
                text-align: center;
            }
            
            .quality-btn {
                width: 100%;
                max-width: 200px;
            }

            .episode-grid {
                grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
            }

            .tags {
                justify-content: center;
            }
        }
 

        .container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .header-unix {
            background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-icon {
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #00b4db;
            font-weight: bold;
        }


        .poster {
            width: 120px;
            height: 180px;
            background: url('');
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        .poster::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(transparent 60%, rgba(0,0,0,0.8));
        }

        .info {
            flex: 1;
            margin-left: 20px;
            color: white;
        }

        .title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 5px;
            line-height: 1.2;
          	color: white;
        }

        .korean-title {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 15px;
        }

        .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .stars {
            color: #ffd700;
            font-size: 16px;
        }

        .score {
            font-weight: bold;
            font-size: 18px;
        }

        .ratings-count {
            font-size: 12px;
            opacity: 0.8;
        }

        .genres {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .genre {
            background: rgba(255,255,255,0.2);
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 12px;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .download-btn {
            background: linear-gradient(135deg, #00c851, #00a83f);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,200,81,0.3);
        }

        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,200,81,0.4);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 1000;
            animation: fadeIn 0.3s ease;
        }

        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-content {
            background: white;
            border-radius: 15px;
            width: 100%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            animation: slideIn 0.3s ease;
            position: relative;
        }

        .modal-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-size: 20px;
            font-weight: bold;
            color: #333;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #999;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: #f0f0f0;
            color: #333;
        }

        .episode-section {
            padding: 20px;
            border-bottom: 1px solid #eee;
        }

        .episode-section:last-child {
            border-bottom: none;
        }

        .episode-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }

        .video-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .quality-btn {
            background: linear-gradient(135deg, #00c851, #00a83f);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .quality-btn:hover {
            background: linear-gradient(135deg, #00a83f, #008a34);
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(0,200,81,0.3);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { 
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to { 
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {


            .hero-section {
                height: auto;
                min-height: 250px;
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            .info {
                margin-left: 0;
                margin-top: 15px;
            }

            .title {
                font-size: 20px;
              	color: white;
            }

            .meta {
                justify-content: center;
            }

            .modal-content {
                margin: 10px;
                max-height: 90vh;
            }

            .video-options {
                justify-content: center;
            }

            .quality-btn {
                flex: 1;
                min-width: 120px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .poster {
                width: 100px;
                height: 150px;
            }

            .title {
                font-size: 18px;
              	color: white;
            }

            .modal-header {
                padding: 15px;
            }

            .episode-section {
                padding: 15px;
            }

            .quality-btn {
                min-width: 100px;
                padding: 8px 15px;
            }
        }


        .synopsis-container {
            max-width: 800px;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .synopsis-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.1) 50%, transparent 51%);
            pointer-events: none;
        }

        .synopsis-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .header-uyu {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        .header-uyu::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.1) 10px,
                rgba(255, 255, 255, 0.1) 20px
            );
            animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%); }
            100% { transform: translateX(0%) translateY(0%); }
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 18px 25px;
            position: relative;
            z-index: 1;
            gap: 15px;
        }

        .synopsis-card-brand-icon {
            background: rgba(255, 255, 255, 0.25);
            border-radius: 12px;
            padding: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 45px;
            height: 45px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .synopsis-card-brand-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.6s ease;
        }

        .synopsis-card-brand-icon:hover::before {
            transform: scale(1);
        }

        .synopsis-card-brand-icon:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.35);
        }

        .synopsis-card-brand-icon svg {
            width: 22px;
            height: 22px;
            filter: brightness(1.3) saturate(1.2);
            animation: gentle-pulse 3s ease-in-out infinite;
        }

        @keyframes gentle-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .synopsis-card-main-title {
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            letter-spacing: 0.5px;
            flex: 1;
            margin: 0;
        }

        .content {
            padding: 30px;
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
            position: relative;
        }

        .content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 30px;
            right: 30px;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
        }

        .synopsis-text {
            color: #2c3e50;
            font-size: 1.05rem;
            line-height: 1.8;
            text-align: justify;
            position: relative;
            padding-left: 20px;
            margin: 0;
        }

        .synopsis-text::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #4facfe, #00f2fe);
            border-radius: 2px;
        }

        .highlight {
            background: linear-gradient(120deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.4) 100%);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .highlight:hover {
            background: linear-gradient(120deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.5) 100%);
            transform: scale(1.02);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .synopsis-container {
                border-radius: 15px;
            }

            .header-content {
                padding: 15px 20px;
                gap: 12px;
            }

            .synopsis-card-brand-icon {
                min-width: 40px;
                height: 40px;
                padding: 8px;
            }

            .synopsis-card-brand-icon svg {
                width: 20px;
                height: 20px;
            }

            .synopsis-card-main-title {
                font-size: 1.2rem;
            }

            .content {
                padding: 25px 20px;
            }

            .synopsis-text {
                font-size: 1rem;
                line-height: 1.7;
                padding-left: 15px;
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .synopsis-container {
                border-radius: 12px;
            }

            .header-content {
                padding: 12px 15px;
                gap: 10px;
            }

            .synopsis-card-brand-icon {
                min-width: 35px;
                height: 35px;
                padding: 6px;
            }

            .synopsis-card-brand-icon svg {
                width: 18px;
                height: 18px;
            }

            .synopsis-card-main-title {
                font-size: 1.1rem;
            }

            .content {
                padding: 20px 15px;
            }

            .synopsis-text {
                font-size: 0.95rem;
                padding-left: 12px;
            }

            .content::before {
                left: 15px;
                right: 15px;
            }
        }

        /* Animation for content reveal */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .synopsis-text {
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

        /* Hover effects */
        .synopsis-container:hover .header-uyu::before {
            animation-duration: 1.5s;
        }

        /* Dark mode support */
        @media (prefers-color-scheme: dark) {
            .content {
                background: linear-gradient(to bottom, #2c3e50, #34495e);
            }
            
            .synopsis-text {
                color: #ecf0f1;
            }
        }


        .drama-info-container {
            font-family: Arial, sans-serif;
            max-width: 800px;
            margin: 20px auto;
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
          	border-radius: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .drama-header {
            background: linear-gradient(135deg, #4dd0e1, #26c6da);
            color: white;
          
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .drama-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        .drama-title {
            font-size: 18px;
            font-weight: bold;
            margin: 0;
          	color: white;
        }

        .drama-content {
            background: #f5f5f5;
            padding: 0;
        }

        .info-row {
            display: flex;
            align-items: flex-start;
            padding: 12px 20px;
            border-bottom: 1px solid #e0e0e0;
            min-height: 50px;
        }

        .info-row:last-child {
            border-bottom: none;
        }

        .info-label {
            font-weight: bold;
            color: #666;
            width: 140px;
            flex-shrink: 0;
            padding-top: 2px;
        }

        .info-colon {
            margin: 0 8px;
            color: #666;
        }

        .info-value {
            flex: 1;
            color: #333;
            line-height: 1.4;
        }

        .tag {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: bold;
            color: white;
            margin-right: 5px;
        }

        .tag-tv {
            background: #17a2b8;
        }

        .tag-ongoing {
            background: #fd7e14;
        }

        .tag-season {
            background: #28a745;
        }

        .tag-episode {
            background: #6c757d;
        }

        .cast-link {
            color: #dc3545;
            text-decoration: none;
        }

        .cast-link:hover {
            text-decoration: underline;
        }

        .cast-role {
            color: #666;
        }

        .superscript {
            font-size: 0.75em;
            vertical-align: super;
        }

        @media (max-width: 768px) {
            .drama-info-container {
                margin: 10px;
                border-radius: 20px;
              	
            }

            .drama-header {
                padding: 12px 15px;
            }

            .drama-title {
                font-size: 16px;
            }

            .info-row {
                flex-direction: column;
                padding: 10px 15px;
                gap: 5px;
            }

            .info-label {
                width: auto;
                padding-top: 0;
            }

            .info-colon {
                display: none;
            }

            .info-value {
                padding-left: 0;
            }
        }

        @media (max-width: 480px) {
            .drama-header {
                padding: 10px 12px;
            }

            .drama-title {
                font-size: 14px;
            }

            .info-row {
                padding: 8px 12px;
            }

            .tag {
                font-size: 11px;
                padding: 3px 6px;
            }
        }


        .video-wrapper {
            position: relative;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            border-radius: 15px;
            overflow: hidden;
        }
        
        video {
            width: 100%;
            height: auto;
            display: block;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            pointer-events: auto;
        }
        
    
        .episode-info {
            text-align: left;
            margin: 20px 0;
            padding: 25px;
            background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
            border-radius: 12px;
            max-width: 800px;
            margin: 20px auto;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            border: 1px solid #333;
        }

        .episode-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #fff;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .episode-description {
            color: #e0e0e0;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .episode-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #404040;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #bbb;
            font-size: 14px;
        }

        .meta-icon {
            width: 16px;
            height: 16px;
            background: #667eea;
            border-radius: 50%;
            display: inline-block;
        }

        @media (max-width: 768px) {
   

            .episode-title {
                font-size: 24px;
            }

            .episode-description {
                font-size: 16px;
            }

            .episode-info {
                padding: 20px;
                margin: 15px;
            }

            .episode-meta {
                flex-direction: column;
                gap: 10px;
            }

      
        }