        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.5;
            min-height: 100vh;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.03;
            pointer-events: none;
            z-index: 1;
        }

        header {
            padding: 1.2rem 2rem;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .logo-container {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.02em;
        }

        .logo-subtitle {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 400;
            line-height: 1.3;
        }

        .pronunciation {
            font-style: italic;
            color: rgba(255, 255, 255, 0.5);
        }

        .search-box {
            position: relative;
            flex: 1;
            max-width: 420px;
        }

        #search-input {
            width: 100%;
            padding: 0.7rem 1rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 6px;
            color: #e0e0e0;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.2s ease;
        }

        #search-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        #search-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .home-page {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: calc(100vh - 80px);
            padding: 3rem 2rem;
            position: relative;
            z-index: 2;
        }

        .home-page.hidden {
            display: none;
        }

        .main-page {
            position: relative;
            z-index: 2;
        }

        .main-page.hidden {
            display: none;
        }

        .home-intro {
            text-align: center;
            max-width: 680px;
        }

        .home-intro h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            line-height: 1.1;
            color: #fff;
            letter-spacing: -0.03em;
        }

        .home-intro p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 2.5rem;
            font-weight: 400;
        }

        .home-stats {
            display: flex;
            gap: 3rem;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0.3rem;
        }

        .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 500;
        }

        .movie-count-display {
            margin-top: 2rem;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 2rem;
        }

        .movie-count-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.8rem;
            color: #fff;
            font-weight: 700;
        }

        .start-button {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            background: #fff;
            border: none;
            border-radius: 6px;
            color: #0a0a0a;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .start-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
        }

        .start-button:active {
            transform: translateY(0);
        }

        .filters {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 2rem 2.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .filter-group {
            margin-bottom: 2rem;
        }

        .filter-group:last-child {
            margin-bottom: 0;
        }

        .filter-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 0.8rem;
            display: block;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 600;
        }

        .genre-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .genre-pill {
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 4px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.15s ease;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }

        .genre-pill:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .genre-pill.active {
            background: #fff;
            color: #0a0a0a;
            border-color: #fff;
        }

        .sort-container {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .sort-select {
            padding: 0.6rem 1rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 4px;
            color: #e0e0e0;
            font-size: 0.9rem;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: all 0.15s ease;
        }

        .sort-select:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        .sort-select:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .sort-select option {
            background: #1a1a1a;
            color: #e0e0e0;
        }

        .tagging-section {
            margin-left: auto;
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }

        .tag-button {
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 4px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.15s ease;
            font-weight: 500;
        }

        .tag-button:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .tag-button.active {
            background: #fff;
            color: #0a0a0a;
            border-color: #fff;
        }

        .movies-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2.5rem 2rem 4rem;
        }

        #movie-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 1.5rem;
        }

        .movie {
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .movie:hover {
            transform: translateY(-4px);
        }

        .movie-poster {
            position: relative;
            margin-bottom: 0.8rem;
            border-radius: 4px;
            overflow: hidden;
            background: #1a1a1a;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .movie-poster img {
            width: 100%;
            aspect-ratio: 2/3;
            object-fit: cover;
            display: block;
        }

        .movie-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 1.5rem 1rem 1rem;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .movie:hover .movie-overlay {
            opacity: 1;
        }

        .movie-overlay button {
            width: 100%;
            padding: 0.6rem;
            background: #fff;
            border: none;
            border-radius: 4px;
            color: #0a0a0a;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            transition: all 0.15s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            margin-bottom: 0.5rem;
        }

        .movie-overlay button:last-child {
            margin-bottom: 0;
        }

        .movie-overlay button:hover {
            transform: scale(1.03);
        }

        .movie-overlay .info-btn {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .movie-overlay .info-btn:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .movie-info-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2500;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            overflow-y: auto;
        }

        .movie-info-modal.active {
            display: flex;
        }

        .info-modal-content {
            background: #0f0f0f;
            border-radius: 8px;
            max-width: 800px;
            width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }

        .info-modal-header {
            position: relative;
            height: 300px;
            overflow: hidden;
            border-radius: 8px 8px 0 0;
        }

        .info-backdrop {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.4);
        }

        .info-close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            z-index: 10;
        }

        .info-close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .info-poster-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        }

        .info-poster-title h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .info-rating {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .info-rating-score {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 600;
            color: #fff;
        }

        .info-modal-body {
            padding: 2rem;
        }

        .info-section {
            margin-bottom: 2rem;
        }

        .info-section:last-child {
            margin-bottom: 0;
        }

        .info-section-title {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .info-overview {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .info-metadata {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .info-meta-item {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .info-meta-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 600;
        }

        .info-meta-value {
            color: #fff;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .info-cast {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .cast-member {
            background: rgba(255, 255, 255, 0.06);
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .info-genres {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .genre-tag {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            font-size: 0.85rem;
            color: #fff;
            font-weight: 500;
        }

        .info-loading {
            text-align: center;
            padding: 3rem 2rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .info-error {
            text-align: center;
            padding: 3rem 2rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .movie-info h3 {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #fff;
            line-height: 1.3;
        }

        .movie-meta {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 400;
        }

        .loader {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 0.8rem 1.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: none;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.85rem;
            z-index: 1000;
        }

        .loader.show {
            display: flex;
        }

        .loader-spin {
            width: 14px;
            height: 14px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .movie-player-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 3000;
            justify-content: center;
            align-items: center;
        }

        .movie-player-modal.active {
            display: flex;
        }

        .player-container {
            width: 95%;
            height: 85vh;
            background: #0a0a0a;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            display: flex;
            flex-direction: column;
        }

        .player-header {
            padding: 1rem 1.5rem;
            background: rgba(15, 15, 15, 0.95);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .player-info {
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .player-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.1rem;
            color: #fff;
            max-width: 70%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        kbd {
            background: rgba(255, 255, 255, 0.08);
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
            font-size: 0.7rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-family: monospace;
        }

        .player-controls {
            display: flex;
            gap: 0.6rem;
            align-items: center;
        }

        .server-selector {
            padding: 0.5rem 0.8rem;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.15s ease;
        }

        .server-selector:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .server-selector:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.2);
        }

        .server-selector option {
            background: #1a1a1a;
            color: #e0e0e0;
        }

        .player-btn {
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: all 0.15s ease;
        }

        .player-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .close-player {
            background: rgba(255, 60, 60, 0.15);
            border-color: rgba(255, 60, 60, 0.3);
            color: #ff6b6b;
        }

        .close-player:hover {
            background: rgba(255, 60, 60, 0.25);
        }

        .player-body {
            height: calc(100% - 60px);
            display: flex;
            justify-content: center;
            align-items: center;
            flex: 1;
            position: relative;
        }

        .player-iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .fullscreen-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            z-index: 3999;
            display: none;
        }

        .fullscreen-overlay.active {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .fullscreen-overlay.active iframe {
            width: 100%;
            height: 100%;
        }

        .player-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            display: none;
        }

        .player-loading.show {
            display: block;
        }

        footer {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2.5rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
            text-align: center;
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            .logo-subtitle {
                font-size: 0.65rem;
            }

            .search-box {
                max-width: 100%;
            }

            .home-intro h1 {
                font-size: 2.5rem;
            }

            .home-stats {
                gap: 2rem;
                flex-direction: column;
            }

            #movie-list {
                grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
                gap: 1.2rem;
            }

            .player-container {
                width: 100%;
                height: 70vh;
            }

            .player-header {
                flex-wrap: wrap;
                gap: 0.5rem;
            }

            .player-controls {
                width: 100%;
                justify-content: space-between;
            }

            .server-selector {
                flex: 1;
                min-width: 100px;
            }

            .info-modal-content {
                max-height: 95vh;
            }

            .info-modal-header {
                height: 200px;
            }

            .info-poster-title h2 {
                font-size: 1.5rem;
            }

            .info-modal-body {
                padding: 1.5rem;
            }

            .info-metadata {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .logo-subtitle {
                display: none;
            }

            .home-intro h1 {
                font-size: 2rem;
            }

            #movie-list {
                grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
                gap: 1rem;
            }

            .player-btn {
                padding: 0.4rem 0.7rem;
                font-size: 0.75rem;
            }

            .server-selector {
                font-size: 0.75rem;
                padding: 0.4rem 0.6rem;
            }

            .movie-info-modal {
                padding: 1rem;
            }

            .info-modal-header {
                height: 150px;
            }

            .info-poster-title {
                padding: 1rem;
            }

            .info-poster-title h2 {
                font-size: 1.2rem;
            }

            .info-rating {
                font-size: 0.8rem;
                gap: 0.6rem;
            }

            .info-modal-body {
                padding: 1rem;
            }

            .info-section {
                margin-bottom: 1.5rem;
            }

            .cast-member, .genre-tag {
                font-size: 0.8rem;
                padding: 0.3rem 0.6rem;
            }
        }