        body {
            background-color: #0c0d0f;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            margin-bottom: 70px;
        }
        header {
            background-color: #0c0d0f;
        }
        .header-logo img {
            width: auto;
            height: 30px;
        }
        .tian-abu {
            background-color: #26292e;
        }
        .tian-abu:hover,
        .tian-abu:focus {
            background-color: #26292e;
            color: white !important;
            outline: none;
            box-shadow: none !important;
        }
        .text-abu {
            color: #c7cbd4;
        }
        .tian-item {
            background-color: #0c0d0f;
        }
        .index-h2 {
            font-size: 0.85rem;
            font-weight: normal;
        }
        .sr-tian { clip: rect(0 0 0 0); width: 1px; height: 1px; overflow: hidden; }
        .btn-light:hover {
            background-color: #f8f9fa !important;
            color: inherit !important;
            box-shadow: none !important;
        }
        .btn-danger:hover {
            background-color: #dc3545 !important;
            color: white !important;
            box-shadow: none !important;
        }
        .clear-tian {
            font-size: 30px;
            line-height: 1;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 0 8px;
        }
        .kapten-title {
            font-size: 1rem;
            color: white;
            border-right: 5px solid red;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .kanananan {
            color: white;
        }
        .pemisahh {
            font-style: normal;
            color: white;
        }
        .movie-item {
            position: relative;
            cursor: pointer;
            overflow: hidden;
        }
        .movie-item:hover .play-button,
        .movie-item:focus .play-button,
        .movie-item:active .play-button {
            opacity: 1;
            transform: scale(1);
        }
        .punya-tian-ya {
            padding: 2px;
        }
        .movie-item img {
            width: 100%;
            height: 180px;
            border-radius: 8px;
            padding: 0;
            object-fit: cover;
            background-color: black;
        }
        .movie-item .movie-info {
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            display: flex;
            justify-content: space-between;
            color: white;
            font-size: 10px;
        }
        .movie-item .movie-title {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(50%);
            color: white;
            font-size: 12px;
            width: 100%;
            text-align: center;
        }
        .movie-item .movie-rating i {
            color: #e0a800;
            margin-right: 2px;
        }
        .movie-item a {
            text-decoration: none;
            color: #007bff;
        }
        
        .movie-item.loading {
            position: relative;
            background: #26292e;
            overflow: hidden;
            margin: 2px;
            border-radius: 8px;
            height: 212px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .movie-item.loadingsamping {
            position: relative;
            background: #26292e;
            overflow: hidden;
            margin: 2px;
            border-radius: 8px;
            height: 160px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .movie-item.loading::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
            animation: shine 2s infinite ease-in-out;
            z-index: 1;
            border-radius: 8px;
        }
        
        .movie-item.loadingsamping::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
            animation: shine 2s infinite ease-in-out;
            z-index: 1;
            border-radius: 8px;
        }
        
        @keyframes shine {
            0% {
                transform: translateX(-100%);
            }
            50% {
                transform: translateX(0%);
                background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
            }
            100% {
                transform: translateX(100%);
            }
        }
        .navbar-bottom {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #1A1A1A;
            border-radius: 8px 8px 0 0;
            z-index: 2;
            padding-bottom: 0;
        }
        .navbar-bottom .nav-link {
            text-align: center;
            padding: 6px;
            font-size: 10px;
            transition: all 0.3s ease-out;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .navbar-bottom .nav-link svg {
            font-size: 18px;
            margin-bottom: 3px;
            color: #9498a1;
            transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
        }
        
        .navbar-bottom .nav-link span {
            color: #9498a1;
            transition: color 0.3s ease;
        }
        
        .navbar-bottom .nav-link:hover svg,
        .navbar-bottom .nav-link:hover span {
            transform: translateY(-3px) scale(1.05);
            color: white;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
        }

        .navbar-bottom .nav-link.active,
        .navbar-bottom .nav-link.active svg,
        .navbar-bottom .nav-link.active span {
            color: white;
        }
        
        .navbar-bottom .nav-link.active svg {
            transform: scale(1.1);
            font-weight: bold;
        }

        .search-input {
            width: 150px;
            border: none;
            border-radius: 50px;
            padding: 8px;
            background-color: #1A1A1A;
            color: #EDEDED;
            font-size: 12px;
            transition: width 0.4s ease;
        }
        #searchQuery::placeholder {
            color: #9498a1;
            font-size: 13px;
        }
        .search-input:focus {
            width: 200px;
            outline: none;
            box-shadow: none;
            border: none;
        }
        
        .pagination {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .pagination .page-item {
            margin: 0 12px;
        }
        
        .pagination .page-item a.page-link {
            border: none;
            padding: 8px 12px;
            font-size: 14px;
            font-weight: bold;
            color: white;
            background-color: #1A1A1A;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            outline: none;
            box-shadow: none; 
        }
        
        .pagination .page-item:not(.active) a.page-link {
            color: #c7cbd4;
        }
        
        .pagination .page-item.active a.page-link {
            background-color: red;
            color: white;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
            z-index: 1;
        }
        
        .pagination .page-item a.page-link i {
            font-size: 16px;
        }
        .genre-btn {
            color: white;
            background-color: #dc3545;
            padding: 5px 8px;
            border-radius: 10px;
            font-size: 10px;
            font-weight: 400;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .genre-btn:hover {
            background-color: black;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
        }
        
        .genre-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin-top: 12px;
        }
        
        .genre-item {
            display: inline-block;
        }
        .floating-icon {
          position: fixed;
          bottom: 70px;
          right: 15px;
          z-index: 998;
        }
        .floating-icon img {
          width: 38px;
          height: 38px;
        }
        .z-1000 {
          z-index: 1000;
        }
        .footer {
            background-color: #1A1A1A;
            color: white;
            padding-top: 2rem;
        }
        
        .footer-logo img {
            width: auto;
            height: 50px;
        }
        body.dark-mode {
            position: relative;
            overflow: hidden;
        }
        
        body.dark-mode::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: black;
            z-index: 999;
        }
        
        iframe {
            position: relative;
            z-index: 1001;
        }
        .actor-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .actor-list span,
        .badge {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            display: inline-block;
        }

        .actor-name {
            background-color: #181818;
            padding: 4px 8px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 400;
            color: white;
            transition: all 0.3s ease;
        }
        
        .actor-name:hover {
            background-color: #dc3545 !important;
            color: white;
            transform: translateY(-1px) scale(1.05);
        }
        
        .actor-name:active {
            transform: translateY(0.5px);
        }
        
        .actor-name a {
            color: inherit;
            text-decoration: none;
            font-weight: 600;
        }
        
        .actor-name a:hover {
            color: white;
        }
        .keyworddd:hover {
            background-color: #dc3545 !important;
            color: white;
            transform: translateY(-1px) scale(1.05);
        }
        
        .keyworddd:active {
            transform: translateY(0.5px);
        }
        
        .keyworddd a {
            color: inherit;
            text-decoration: none;
            font-weight: 400;
        }
        .keyworddd a:hover {
            color: white;
        }
        .small-btn {
            font-size: 0.7rem;
            padding: 0.3rem 0.6rem;
            height: auto;
        }
        
        .small-btn i {
            font-size: 0.8rem;
        }

        .detail-container, .komen-container, .playermovie-container, .listeps-container {
            background: rgba(34, 34, 34, 0.95);
            border-radius: 10px;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65vh;
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
            z-index: 9999999;
            overflow-y: auto;
            padding: 20px;
            will-change: transform;
            backdrop-filter: blur(10px);
        }
        
        .detail-container.show, .komen-container.show , .playermovie-container.show, .listeps-container.show {
            transform: translateY(0);
        }
        .playermovie-button.bg-danger, .episode-button.bg-danger {
            background: rgb(189, 33, 48) !important;
        }
        .playermovie-button:focus, .episode-button:focus,
        .playermovie-button:active, .episode-button:active {
            outline: none !important;
            box-shadow: none !important;
        }
        #app-notice {
            position: fixed;
            bottom: 15px;
            right: 15px;
            max-width: 260px;
            display: flex;
            align-items: center;
            z-index: 1000;
            transform: translateY(20px);
            opacity: 0;
            transition: transform 0.5s ease-out, opacity 0.5s ease-out;
            user-select: none;
        }
    
        #app-notice.show {
            transform: translateY(0);
            opacity: 1;
        }
    
        .btn-telegram {
            background: white;
            color: #1E88E5;
            font-size: 10px;
            padding: 8px 8px;
            border-radius: 8px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-left: auto;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
            transition: 0.3s ease-in-out;
        }
    
        .btn-telegram:hover {
            background: #f1f1f1;
            transform: scale(1.05);
        }
        .scroll-container {
            overflow-x: auto;
            white-space: nowrap;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        .scroll-container::-webkit-scrollbar {
            display: none;
        }

        .category-link {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0 7px;
            text-decoration: none;
            color: white;
        }
        
        .category-icon {
            width: 45px;
            height: 45px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(to top, #000 30%, #111 50%, #222 80%);
        }
        
        .category-img {
            width: 28px;
            height: 28px;
            object-fit: contain;
        }
        
        .category-text {
            margin-top: 4px;
            font-size: 0.72rem;
            text-decoration: none;
        }
        .article-content {
            font-size: 0.8rem;
            color: #f0f0f0;
            padding: 8px;
            border-radius: 8px;
        }
        
        .article-paragraph {
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }
        .movie-card-loading {
            width: 120px;
            flex: 0 0 auto;
            cursor: pointer;
        }
        .carousel-item {
            position: relative;
            overflow: hidden;
            background-color: #26292e;
            height: 200px;
            border-radius: 8px;
            transition: transform 1s ease-in-out, opacity 1s ease-in-out;
        }
        .carousel-img {
            width: 100%;
            height: 100%;
            position: absolute;
            z-index: 2;
            border-radius: 8px;
        }
        .carousel-indicators {
            bottom: 6px;
        }
        .carousel-indicators li {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            border: none;
            margin: 0 3px;
            transition: all 0.3s ease-in-out;
            opacity: 0.6;
        }
        .carousel-indicators li:hover {
            background-color: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
        }
        
        .carousel-indicators .active {
            background-color: #c7cbd4;
            width: 6px;
            height: 6px;
            opacity: 1;
            transform: scale(1.3);
        }
        @media (max-width: 768px) {
            .navbar-bottom .nav-link {
                font-size: 10px;
            }
            .navbar-bottom .navbar-nav {
                flex-direction: row !important;
                justify-content: space-around;
            }
            .navbar-bottom .nav-item {
                flex: 1;
                text-align: center;
            }
        }
        @media (max-width: 992px) {
            .navbar-bottom .nav-link {
                font-size: 10px;
            }
            .navbar-bottom .navbar-nav {
                flex-direction: row !important;
                justify-content: space-around;
            }
            .navbar-bottom .nav-item {
                flex: 1;
                text-align: center;
            }
        }
        @media (min-width: 1024px) {
            .marquee-container {
                margin-left: 165px;
                margin-right: 165px;
            }
            .nikkonik {
                justify-content: center !important;
            }
            .detail-container, .komen-container, .playermovie-container, .listeps-container {
                left: 50%;
                transform: translate(-50%, 100%);
                width: 50%;
                max-width: 800px;
            }
            .detail-container.show, 
            .komen-container.show, 
            .playermovie-container.show,
            .listeps-container.show{
                transform: translate(-50%, 0);
            }
            .carousel-item {
                position: relative;
                overflow: hidden;
                background-color: #26292e;
                height: 400px;
                border-radius: 8px;
                transition: transform 1s ease-in-out, opacity 1s ease-in-out;
            }
            .carousel-item img {
                max-width: 100%;
                max-height: 400px;
                margin: 0 auto; 
                object-fit: cover;
            }
        }