        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background: #0b0b0f;
            color: #f0f0f0;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .app {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 2rem 1rem;
            width: 100%;
            flex: 1;
        }

        h1, h2, h3 {
            font-weight: 500;
            letter-spacing: -0.02em;
        }

        .top-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.6rem;
            font-weight: 500;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .logo i {
            color: #f5c518;  
            font-size: 1.9rem;
        }

        .logo span {
            background: linear-gradient(135deg, #f5c518, #ff8a4c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .sub {
            color: #888;
            font-size: 0.95rem;
            border-left: 1px solid #2a2a2a;
            padding-left: 1.2rem;
            font-weight: 400;
        }

        .search-section {
            max-width: 680px;
            margin: 0 auto 3.5rem;
        }

        .search-wrapper {
            position: relative;
            width: 100%;
        }

        .search-input {
            width: 100%;
            padding: 1.2rem 2rem 1.2rem 3.5rem;
            font-size: 1.1rem;
            background: #13131a;
            border: 1px solid #2a2a35;
            border-radius: 2.5rem;
            color: #fff;
            font-weight: 400;
            transition: all 0.2s ease;
            outline: none;
        }

        .search-input:focus {
            border-color: #f5c518;
            background: #181822;
            box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.05);
        }

        .search-input::placeholder {
            color: #555;
            font-weight: 400;
        }

        .search-icon {
            position: absolute;
            left: 1.4rem;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-size: 1.2rem;
            pointer-events: none;
        }

        .suggestions {
            position: absolute;
            top: calc(100% + 0.6rem);
            left: 0;
            right: 0;
            background: #14141c;
            border: 1px solid #2a2a35;
            border-radius: 1.8rem;
            overflow: hidden;
            z-index: 100;
            box-shadow: 0 20px 40px rgba(0,0,0,0.7);
            display: none;
        }

        .suggestion-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.9rem 1.5rem;
            cursor: pointer;
            transition: background 0.15s;
            border-bottom: 1px solid #24242f;
        }

        .suggestion-item:last-child {
            border-bottom: none;
        }

        .suggestion-item:hover {
            background: #1e1e2a;
        }

        .suggestion-poster {
            width: 36px;
            height: 54px;
            object-fit: cover;
            border-radius: 6px;
            background: #2c2c3a;
        }

        .suggestion-info {
            flex: 1;
        }

        .suggestion-title {
            font-weight: 500;
            color: #fff;
            margin-bottom: 0.2rem;
        }

        .suggestion-year {
            font-size: 0.85rem;
            color: #888;
        }

        .suggestions .loader {
            padding: 1.5rem;
            text-align: center;
            color: #aaa;
        }

        .loader {
            display: none;
            text-align: center;
            padding: 3rem;
            color: #aaa;
        }

        .loader i {
            font-size: 2rem;
            color: #f5c518;
            opacity: 0.6;
        }

        .movie-card {
            background: #111117;
            border: 1px solid #24242f;
            border-radius: 2rem;
            overflow: hidden;
            display: flex;
            flex-direction: row;
            margin: 2rem 0 3rem;
            transition: transform 0.2s ease, border-color 0.2s;
        }

        .movie-card:hover {
            border-color: #3a3a4a;
        }

        .movie-poster {
            width: 260px;
            min-width: 260px;
            height: auto;
            object-fit: cover;
            background: #1e1e2a;
            aspect-ratio: 2/3;
        }

        .movie-info {
            padding: 2.2rem 2.5rem;
            flex: 1;
        }

        .movie-title {
            font-size: 2.4rem;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            color: #fff;
        }

        .movie-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem;
            margin-bottom: 1.8rem;
            color: #aaa;
            font-size: 0.95rem;
            border-bottom: 1px solid #24242f;
            padding-bottom: 1.2rem;
        }

        .movie-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .movie-meta i {
            color: #f5c518;
            width: 1.2rem;
        }

        .movie-description {
            font-size: 1rem;
            color: #ccc;
            margin-bottom: 2rem;
            line-height: 1.7;
            max-width: 600px;
        }

        .detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
            gap: 1.2rem;
            margin: 1.5rem 0 2rem;
        }

        .detail-item {
            background: #1b1b26;
            padding: 0.9rem 1.2rem;
            border-radius: 1.2rem;
            border: 1px solid #2a2a37;
        }

        .detail-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            color: #777;
            margin-bottom: 0.3rem;
        }

        .detail-value {
            font-weight: 500;
            color: #eee;
        }

        .action-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            padding: 0.9rem 1.8rem;
            border-radius: 2.5rem;
            font-weight: 500;
            font-size: 0.95rem;
            border: 1px solid transparent;
            transition: all 0.15s ease;
            cursor: pointer;
            background: none;
            color: #fff;
            text-decoration: none;
            background: #1e1e2a;
            border-color: #333340;
        }

        .btn i {
            font-size: 1.1rem;
            color: #f5c518;
        }

        .btn-primary {
            background: #f5c518;
            color: #0b0b0f;
            border-color: #f5c518;
        }
        .btn-primary i {
            color: #0b0b0f;
        }

        .btn-primary:hover {
            background: #ffd966;
            border-color: #ffd966;
        }

        .btn-danger {
            background: #2a1a28;
            border-color: #5a2a40;
        }
        .btn-danger i {
            color: #ff7b9c;
        }
        .btn-danger:hover {
            background: #3d1e30;
            border-color: #b34a6b;
        }

        .btn-secondary {
            background: #1a1a24;
            border-color: #33334a;
        }
        .btn-secondary:hover {
            background: #262635;
            border-color: #555;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.5);
        }

        .notification {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #1e1e2c;
            backdrop-filter: blur(12px);
            border: 1px solid #3a3a50;
            color: #fff;
            padding: 0.9rem 1.8rem;
            border-radius: 3rem;
            font-size: 0.95rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
            display: none;
            align-items: center;
            gap: 0.8rem;
            z-index: 10000;
            animation: slideUp 0.25s ease;
        }

        .notification i {
            color: #f5c518;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .timings-container {
            background: #0f0f15;
            border: 1px solid #2a2a37;
            border-radius: 2rem;
            padding: 2rem;
            margin: 2.5rem 0;
            display: none;
        }

        .timings-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.8rem;
        }

        .timings-header h3 {
            font-weight: 500;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .timings-header h3 i {
            color: #f5c518;
        }

        .timings-content {
            max-height: 470px;
            overflow-y: auto;
            padding-right: 0.5rem;
            scrollbar-width: thin;
            scrollbar-color: #f5c518 #1e1e2a;
        }

        .timings-content::-webkit-scrollbar {
            width: 5px;
        }
        .timings-content::-webkit-scrollbar-track {
            background: #1e1e2a;
            border-radius: 20px;
        }
        .timings-content::-webkit-scrollbar-thumb {
            background: #f5c518;
            border-radius: 20px;
        }

        .timing-card {
            background: #15151f;
            border-radius: 1.5rem;
            padding: 1.5rem;
            margin-bottom: 1.2rem;
            border: 1px solid #2d2d3d;
            transition: all 0.15s;
        }

        .timing-card:hover {
            border-color: #50506a;
        }

        .timing-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1rem;
        }

        .timing-author {
            font-weight: 600;
            color: #f5c518;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .timing-author::before {
            content: '\f007';
            font-family: 'Font Awesome 6 Free';
            font-weight: 400;
            color: #aaa;
        }

        .timing-date {
            color: #888;
            font-size: 0.85rem;
            background: #22222e;
            padding: 0.3rem 1rem;
            border-radius: 2rem;
        }

        .timing-list {
            list-style: none;
        }

        .timing-item {
            display: flex;
            align-items: baseline;
            gap: 0.8rem;
            padding: 0.6rem 0;
            border-bottom: 1px dashed #2a2a3a;
        }

        .timing-item:last-child {
            border-bottom: none;
        }

        .timing-time {
            font-family: 'JetBrains Mono', monospace;
            background: #23232f;
            color: #f5c518;
            padding: 0.25rem 1rem;
            border-radius: 2rem;
            font-size: 0.85rem;
            font-weight: 500;
            white-space: nowrap;
        }

        .timing-description {
            color: #ccc;
            font-size: 0.95rem;
        }

        .timing-status {
            font-size: 0.75rem;
            padding: 0.2rem 0.8rem;
            border-radius: 2rem;
            background: #1e1e2a;
            border: 1px solid;
            margin-left: 0.5rem;
        }
        .timing-status.horny {
            border-color: #b34a6b;
            color: #ff99bb;
        }
        .timing-status.no-horny {
            border-color: #3f7e5c;
            color: #8bc34a;
        }

        .no-timings {
            text-align: center;
            padding: 3rem;
            color: #666;
        }

        .video-container {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(2, 2, 6, 0.98);
            backdrop-filter: blur(10px);
            z-index: 2000;
            padding: 2rem;
            flex-direction: column;
        }

        .video-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            color: #fff;
        }

        .video-title {
            font-weight: 400;
            font-size: 1.4rem;
        }

        .close-video {
            background: transparent;
            border: 1px solid #444;
            color: #fff;
            padding: 0.6rem 1.4rem;
            border-radius: 3rem;
            cursor: pointer;
            transition: 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .close-video:hover {
            border-color: #f5c518;
            color: #f5c518;
        }

        #videoContent {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .kp-iframe {
            width: 100%;
            max-width: 1400px;
            height: 80vh;
            border: none;
            border-radius: 2rem;
            box-shadow: 0 30px 60px rgba(0,0,0,0.8);
        }

        .video-loader {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            color: #aaa;
        }

        .footer {
            margin-top: 5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #1f1f2b;
            color: #555;
            font-size: 0.85rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        /* мобилки */
        @media (max-width: 700px) {
            .app { padding: 1.5rem; }
            .movie-card { flex-direction: column; }
            .movie-poster { width: 100%; height: auto; max-height: 400px; object-fit: contain; background: #0a0a0f; }
            .movie-info { padding: 1.5rem; }
            .movie-title { font-size: 1.8rem; }
            .top-bar { flex-direction: column; align-items: start; }
            .sub { border-left: none; padding-left: 0; }
        }

        .badge {
            background: #f5c518;
            color: #0b0b0f;
            border-radius: 999px;
            padding: 0.15rem 0.6rem;
            font-size: 0.8rem;
            margin-left: 0.5rem;
            font-weight: 600;
        }
    