* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    -webkit-tap-highlight-color: transparent; 
}

/* active link */
body {
    background-color: #000;
}

.crl {
    color: yellow !important;
    border-left: 3px solid yellowgreen;
}

/* back to top */
.back-to-top {
    font-size: 15px;
    padding: 15px;
    border: none;
    position: fixed;
    bottom: 12px;
    right: 12px;
    background-color: yellowgreen;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    outline: none;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
}

.error-message {
    font-weight: 600;
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}


/* royxatdan o'tish */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.850);
    z-index: 100;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-login {
    position: absolute;
    font-weight: 600;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #ccc;
}

.login-title {
    text-align: center;
    font-size: 24px;
    color: #fff;
}

.login-form .form-group {
    margin-bottom: 0px;
}

.login-form label {
    margin-top: 20px;
    display: block;
    margin-bottom: 8px;
    color: #ccc;
}

.login-form input {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: #333;
    color: #fff;
    font-size: 16px;
}

.login-form input:focus {
    outline: none;
    border-color: yellow;
}

.login-btn {
    margin: 20px 0px 5px 0px;
    width: 100%;
    padding: 12px;
    background-color: yellowgreen;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
    position: relative;
    overflow: hidden;
}

.login-btn:hover {
    background-color: #9acd32;
}

.login-btn.loading {
    position: relative;
    color: transparent;
}

.login-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #fff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.login-btn.success {
    background-color: #28a745;
    animation: successPulse 0.5s ease-in-out;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.login-options {
    margin-top: 20px;
    font-size: 17px;
    text-align: center;
    color: #ccc;
}

.login-options a {
    color: yellowgreen;
    text-decoration: none;
    margin-top: 15px;
}

.login-options a:hover {
    text-decoration: underline;
}

.login-options p {
    margin-top: 10px;
}

/* formdagi shartlar */
.terms-i-ch {
    display: grid;
    gap: 5px;
    grid-template-columns: 15px auto;
    justify-content: center;
    align-items: center;
}

.terms-section p {
    font-weight: 600;
    margin: 0;
    font-size: 14px;
    color: yellowgreen;
}

.terms-section a {
    font-weight: 600;
    color: #fff;
}

.terms-section input[type="checkbox"] {
    width: 15px;
    height: 20px;
    cursor: pointer;
    accent-color: yellowgreen;
}

#termsCheckbox-error {
    margin: 10px 0px;
    text-align: center;
}

/* mobile */
@media screen and (min-width:310px) and (max-width: 790px) {
    .login-options p {
        margin-top: 20px;
    }

    .back-to-top {
        display: none;
    }

    .crl {
        color: yellowgreen;
        border: none;
    }

    /* header */
    header {
        box-shadow: 0px 10px 20px #000;
        padding: 20px 5% 15px 5%;
        width: 100%;
        position: fixed;
        background-color: #000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 100;
    }

    .logo-img img {
        border-radius: 50%;
        width: 40px;
        margin-right: 10px;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo span {
        display: none;
        font-family: "Montserrat", Arial, sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: #fff;
    }

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

    .nav-list a {
        border-radius: 5px;
        padding: 5px;
        border: 2px solid yellowgreen;
        font-weight: 600;
        font-size: 15px;
        margin: 0px 10px 0px 0px;
        color: #fff;
        text-decoration: none;
    }

    .user {
        display: flex;
        align-items: center;
    }

    .user-img i {
        font-size: 15px;
        border-radius: 50%;
        padding: 8px;
        cursor: pointer;
        color: #fff;
        border: 4px solid yellowgreen;
    }

    .S-media {
        margin-top: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .S-media i {
        cursor: pointer;
        margin-left: 10px;
        font-size: 22px;
        color: #fff;
    }

    .S-media span {
        padding-bottom: 8px;
        font-weight: 700;
        font-size: 20px;
        color: #fff;
    }

    /* body */
    .body {
        display: flex;
        margin: auto;
    }

    .section-1 {
        margin: 5px 10px;
        border-radius: 10px;
        padding: 10px 0px;
        background-color: #202425;
    }

    .section-1 p {
        font-size: 17px;
    }

    .menu {
        box-shadow: 0px 10px 20px 15px #000;
        padding: 20px 0px;
        display: flex;
        justify-content: center;
        gap: 65px;
        position: fixed;
        bottom: 0px;
        z-index: 100;
        background-color: #000;
        width: 100%;
    }

    .menu a {
        text-decoration: none;
    }

    .menu i {
        cursor: pointer;
        font-size: 25px;
        color: #fff;
    }

    .main {
        margin-top: 85px;
        width: 100%;
        color: #fff;
    }

    .main-text {
        margin-top: 15px;
        padding: 0px 15px;
        font-weight: 600;
    }

    .main-text p {
        font-size: 17px;
    }

    .main .theme {
        display: flex;
        margin-bottom: 25px;
        font-weight: 600;
        font-size: 24px;
        font-family: "Montserrat", Arial, sans-serif;
    }

    .main-video {
        margin: 0px 15px;
    }

    .main-video iframe {
        width: 100%;
        height: 250px;
        border-radius: 10px;
    }

    /* play-list */
    .section-2 {
        padding: 0px 15px;
        margin-top: 50px;
    }

    .play-list-item {
        cursor: pointer;
        background-color: rgb(19, 18, 18);
        margin-right: 20px;
    }

    .play-list-item:last-child {
        margin-right: 0px;
    }

    .play-list-item img {
        width: 200px;
    }

    .play-list-text {
        font-weight: 600;
        text-align: center;
        padding: 5px 5px 10px 5px;
    }

    .section-2-span {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
    }

    .section-2-span a {
        text-decoration: none;
        color: #fff;
    }

    .section-2 span {
        font-size: 14px;
        border-radius: 5px;
        padding: 5px 8px;
        font-weight: 600;
        background-color: #202425;
    }

    .Multfilmlar {
        overflow-x: scroll;
        display: -webkit-box;
        scrollbar-width: inherit;
        scrollbar-color: #454141 transparent;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }

    /* kinolar */
    .Kinolar {
        overflow-x: scroll;
        display: -webkit-box;
        scrollbar-width: inherit;
        scrollbar-color: #454141 transparent;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }

    /* seriallar */
    .seriallar {
        overflow-x: scroll;
        display: -webkit-box;
        scrollbar-width: inherit;
        scrollbar-color: #454141 transparent;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }

    /* scrol tugmalari */
    .scroll-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        background-color: #202425;
        padding: 10px;
        margin-bottom: 40px;
    }

    .scroll-btn {
        background: #202425;
        color: white;
        border: none;
        outline: none;
        cursor: pointer;
        font-size: 18px;
        padding: 20px 7px;
        margin-bottom: 80px;
    }

    .scroll-btn.left {
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
        position: absolute;
        left: -1px;
    }

    .scroll-btn.right {
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
        position: absolute;
        right: -1px;
    }

    .Multfilmlar,
    .Kinolar,
    .seriallar {
        overflow-x: auto;
        scroll-behavior: smooth;
        display: flex;
        /* joy qoldiramiz tugmalar uchun */
    }

    /* Top */
    .top-span {
        margin: 0px 0px 15px 0px;
        display: flex;
        justify-content: left;
        font-size: 18px;
        font-weight: 600;
    }

    .top {
        margin: 50px 15px;
    }

    .top-list {
        display: -webkit-box;
        overflow-x: scroll;
        justify-content: center;
        background-color: #272d2e;
        gap: 30px;
        padding: 10px;
    }

    .top-list-item img {
        width: 200px;
        border-top-right-radius: 10px;
    }

    .top-list-text {
        margin-top: -5px;
        background-color: #1a1a1a;
        padding: 5px 0px;
        display: flex;
        justify-content: center;
    }

    .top-list-item {
        cursor: pointer;
        position: relative;
        /* Needed for absolute positioning of badges */
    }

    .rank-badge {
        padding: 5px 10px;
        position: absolute;
        top: 0px;
        left: 0px;
        background-color: rgba(18, 176, 18, 0.896);
        border-bottom-right-radius: 10px;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1rem;
        z-index: 1;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.719);
    }

    /* Specific rank styles - fixed selector */
    .top-list-item:nth-child(1) .rank-badge {
        background-color: gold;
    }

    .top-list-item:nth-child(2) .rank-badge {
        background-color: silver;
    }

    .top-list-item:nth-child(3) .rank-badge {
        background-color: brown;
        /* bronze */
    }

    /* footer */
    footer {
        display: flex;
        margin-top: 30px;
        background-color: #202425;
        margin-bottom: 85px;
    }

    .t-logo {
        font-size: 25px !important;
        display: block !important;
    }

    .footer {
        font-weight: 600;
        padding-top: 25px;
        width: 89%;
        margin: auto;
    }

    .footer-social {
        margin-bottom: 10px;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

    .footer-section a button {
        cursor: pointer;
        margin-bottom: 10px;
        font-weight: 600;
        color: #fff;
        border: none;
        background: none;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: yellow;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 14px;
        color: #ccc;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a {
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-social a {
        margin-right: 15px;
        font-size: 20px;
        color: #fff;
        transition: color 0.3s ease;
    }

    .footer-bottom {
        text-align: center;
        padding: 10px 0px;
        border-top: 1px solid #333;
    }

    .footer-bottom p {
        font-size: 14px;
        color: #ccc;
    }

    .user-img {
        cursor: pointer;
    }

    .user-dropdown {
        display: none;
        position: absolute;
        right: 5%;
        top: 60px;
        background-color: #1a1a1a;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        z-index: 100;
        width: 200px;
        overflow: hidden;
    }

    .user-dropdown.show {
        display: block;
    }

    .user-dropdown a {
        font-weight: 600;
        font-size: 15px;
        display: block;
        padding: 12px 20px;
        color: #fff;
        text-decoration: none;
        transition: background-color 0.3s;
    }

    .user-dropdown a:hover {
        background-color: #333;
    }

    .user-dropdown a i {
        margin-right: 10px;
    }
}

/* tabel */
@media screen and (min-width:790px) and (max-width: 1320px) {
    .back-to-top {
        display: none;
    }

    .crl {
        color: yellowgreen;
        border: none !important;
    }

    /* header */
    header {
        box-shadow: 0px 10px 20px #000;
        padding: 20px 5% 15px 5%;
        width: 100%;
        position: fixed;
        background-color: #000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 100;
    }

    .logo-img img {
        border-radius: 50%;
        width: 40px;
        margin-right: 10px;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo span {
        display: none;
        font-family: "Montserrat", Arial, sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: #fff;
    }

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

    .nav-list a {
        border-radius: 5px;
        padding: 5px;
        border: 2px solid yellowgreen;
        font-weight: 600;
        font-size: 15px;
        margin: 0px 10px 0px 0px;
        color: #fff;
        text-decoration: none;
    }

    .user {
        display: flex;
        align-items: center;
    }

    .user-img i {
        font-size: 15px;
        border-radius: 50%;
        padding: 8px;
        cursor: pointer;
        color: #fff;
        border: 4px solid yellowgreen;
    }

    .S-media {
        margin-top: 25px;
        display: flex;
        align-items: center;
    }

    .S-media i {
        cursor: pointer;
        margin-left: 10px;
        font-size: 22px;
        color: #fff;
    }

    .S-media span {
        padding-bottom: 8px;
        font-weight: 700;
        font-size: 20px;
        color: #fff;
    }

    /* body */
    .body {
        display: flex;
        margin: auto;
    }

    .section-1 {
        margin: 5px 10px;
        border-radius: 10px;
        padding: 20px;
        background-color: #202425;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .section-1 p {
        font-size: 17px;
    }

    .menu {
        box-shadow: 0px 10px 20px 15px #000;
        padding: 20px 0px;
        display: flex;
        justify-content: center;
        gap: 60px;
        position: fixed;
        bottom: 0px;
        z-index: 100;
        background-color: #000;
        width: 100%;
    }

    .menu a {
        text-decoration: none;
    }

    .menu i {
        cursor: pointer;
        font-size: 25px;
        color: #fff;
    }

    .main {
        margin-top: 85px;
        width: 100%;
        color: #fff;
    }

    .main-text {
        margin-top: 15px;
        padding: 0px 15px;
        font-weight: 600;
    }

    .main-text p {
        font-size: 17px;
    }

    .main .theme {
        display: flex;
        margin-bottom: 25px;
        font-weight: 600;
        font-size: 24px;
        font-family: "Montserrat", Arial, sans-serif;
    }

    .main-video {
        margin: 0px 15px;
    }

    .main-video iframe {
        width: 100%;
        height: 250px;
        border-radius: 10px;
    }

    /* play-list */
    .section-2 {
        padding: 0px 15px;
        margin-top: 50px;
    }

    .play-list-item {
        cursor: pointer;
        background-color: rgb(19, 18, 18);
        margin-right: 20px;
    }

    .play-list-item:last-child {
        margin-right: 0px;
    }

    .play-list-item img {
        width: 200px;
    }

    .play-list-text {
        font-weight: 600;
        text-align: center;
        padding: 5px 5px 10px 5px;
    }

    .section-2-span {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
    }

    .section-2-span a {
        text-decoration: none;
        color: #fff;
    }

    .section-2 span {
        font-size: 14px;
        border-radius: 5px;
        padding: 5px 8px;
        font-weight: 600;
        background-color: #202425;
    }

    .Multfilmlar {
        overflow-x: scroll;
        display: -webkit-box;
        scrollbar-width: inherit;
        scrollbar-color: #454141 transparent;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }

    /* kinolar */
    .Kinolar {
        overflow-x: scroll;
        display: -webkit-box;
        scrollbar-width: inherit;
        scrollbar-color: #454141 transparent;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }

    /* seriallar */
    .seriallar {
        overflow-x: scroll;
        display: -webkit-box;
        scrollbar-width: inherit;
        scrollbar-color: #454141 transparent;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }

    /* scrol tugmalari */
    .scroll-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        background-color: #202425;
        padding: 10px;
        margin-bottom: 40px;
    }

    .scroll-btn {
        background: #202425;
        color: white;
        border: none;
        outline: none;
        cursor: pointer;
        font-size: 18px;
        padding: 20px 7px;
        margin-bottom: 80px;
    }

    .scroll-btn.left {
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
        position: absolute;
        left: -1px;
    }

    .scroll-btn.right {
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
        position: absolute;
        right: -1px;
    }

    .Multfilmlar,
    .Kinolar,
    .seriallar {
        overflow-x: auto;
        scroll-behavior: smooth;
        display: flex;
        /* joy qoldiramiz tugmalar uchun */
    }

    /* Top */
    .top-span {
        margin: 0px 0px 15px 0px;
        display: flex;
        justify-content: left;
        font-size: 18px;
        font-weight: 600;
    }

    .top {
        margin: 50px 15px;
    }

    .top-list {
        display: -webkit-box;
        overflow-x: scroll;
        justify-content: center;
        background-color: #272d2e;
        gap: 30px;
        padding: 10px;
    }

    .top-list-item img {
        width: 200px;
        border-top-right-radius: 10px;
    }

    .top-list-text {
        margin-top: -5px;
        background-color: #1a1a1a;
        padding: 5px 0px;
        display: flex;
        justify-content: center;
    }

    .top-list-item {
        cursor: pointer;
        position: relative;
        /* Needed for absolute positioning of badges */
    }

    .rank-badge {
        padding: 5px 10px;
        position: absolute;
        top: 0px;
        left: 0px;
        background-color: rgba(18, 176, 18, 0.896);
        border-bottom-right-radius: 10px;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1rem;
        z-index: 1;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.719);
    }

    /* Specific rank styles - fixed selector */
    .top-list-item:nth-child(1) .rank-badge {
        background-color: gold;
    }

    .top-list-item:nth-child(2) .rank-badge {
        background-color: silver;
    }

    .top-list-item:nth-child(3) .rank-badge {
        background-color: brown;
        /* bronze */
    }

    /* footer */
    footer {
        display: flex;
        margin-top: 30px;
        background-color: #202425;
        margin-bottom: 85px;
    }

    .t-logo {
        font-size: 25px !important;
        display: block !important;
    }

    .footer {
        font-weight: 600;
        padding-top: 25px;
        width: 89%;
        margin: auto;
    }

    .footer-social {
        margin-bottom: 10px;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

    .footer-section a button {
        cursor: pointer;
        margin-bottom: 10px;
        font-weight: 600;
        color: #fff;
        border: none;
        background: none;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: yellow;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 14px;
        color: #ccc;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a {
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-social a {
        margin-right: 15px;
        font-size: 20px;
        color: #fff;
        transition: color 0.3s ease;
    }

    .footer-bottom {
        text-align: center;
        padding: 10px 0px;
        border-top: 1px solid #333;
    }

    .footer-bottom p {
        font-size: 14px;
        color: #ccc;
    }

    .user-img {
        cursor: pointer;
    }

    .user-dropdown {
        display: none;
        position: absolute;
        right: 5%;
        top: 60px;
        background-color: #1a1a1a;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        z-index: 100;
        width: 200px;
        overflow: hidden;
    }

    .user-dropdown.show {
        display: block;
    }

    .user-dropdown a {
        font-weight: 600;
        font-size: 15px;
        display: block;
        padding: 12px 20px;
        color: #fff;
        text-decoration: none;
        transition: background-color 0.3s;
    }

    .user-dropdown a:hover {
        background-color: #333;
    }

    .user-dropdown a i {
        margin-right: 10px;
    }

    .login-options p {
        margin-top: 5px;
    }
}

/* comp and notebook */
@media screen and (min-width:1320px) and (max-width: 2000px) {

    /* header */
    header {
        box-shadow: 0px 10px 20px #000;
        padding: 20px 5% 15px 5%;
        width: 100%;
        position: fixed;
        background-color: #000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 100;
    }

    .logo-img img {
        border-radius: 50%;
        width: 45px;
        margin-right: 10px;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo span {
        font-family: "Montserrat", Arial, sans-serif;
        font-size: 35px;
        font-weight: 600;
        color: #fff;
    }

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

    .nav-list a {
        border-radius: 5px;
        padding: 3px 8px 6px 8px;
        border: 2px solid yellowgreen;
        font-weight: 600;
        font-size: 16px;
        margin: 0px 10px 0px 0px;
        color: #fff;
        text-decoration: none;
    }

    .user {
        display: flex;
        align-items: center;
    }

    #bell {
        cursor: pointer;
        font-size: 25px;
        margin: 0px 25px;
        color: #fff;
    }

    .user-img i {
        border-radius: 50%;
        padding: 10px;
        cursor: pointer;
        color: #fff;
        border: 4px solid yellowgreen;
    }

    .S-media {
        margin-top: 25px;
        display: flex;
        align-items: center;
    }

    .S-media i {
        cursor: pointer;
        margin-left: 10px;
        font-size: 22px;
        color: #fff;
    }

    .S-media span {
        padding-bottom: 8px;
        font-weight: 700;
        font-size: 20px;
        color: #fff;
    }

    /* body */
    .body {
        display: flex;
        padding-top: 30px;
        width: 92%;
        margin: auto;
    }

    .section-1 {
        display: flex;
        background-color: #202425;
        padding: 30px 25px;
        border-radius: 15px;
        height: 350px;
    }

    .section-1 p {
        font-size: 17px;
    }

    .menu {
        top: 130px;
        position: fixed;
        width: 4%;
        padding-left: 15px;
    }

    .menu a {
        text-decoration: none;
    }

    .menu i {
        cursor: pointer;
        margin-bottom: 55px;
        font-size: 23px;
        color: #fff;
        display: flex;
        justify-content: end;
    }

    .main {
        margin-top: 85px;
        margin-left: 4%;
        padding-left: 60px;
        width: 96%;
        color: #fff;
    }

    .main-text {
        padding: 0px 30px;
    }

    .main .theme {
        margin-bottom: 30px;
        font-weight: 600;
        font-size: 43px;
        display: block;
        font-family: "Montserrat", Arial, sans-serif;
    }

    .main-video iframe {
        border-radius: 15px;
        height: 100%;
        width: 550px;
    }

    /* play-list */
    .section-2 {
        margin-top: 60px;
    }

    .play-list-item {
        cursor: pointer;
        background-color: #17191a;
        margin-right: 20px;
    }

    .play-list-item:last-child {
        margin-right: 0px;
    }

    .play-list-item img {
        width: 240px;
    }

    .play-list-text {
        font-weight: 600;
        text-align: center;
        padding: 5px 5px 10px 5px;
    }

    .section-2-span {
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
        margin-bottom: 10px;
    }

    .close-profile {
        font-weight: 600;
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 24px;
        cursor: pointer;
        color: #ccc;
    }

    .profile-title {
        font-size: 24px;
        color: #ccc;
    }

    .section-2-span-a {
        text-decoration: none;
        color: #fff;
        background-color: #202425;
        padding: 2px 8px 5px 8px;
        border-radius: 5px;

    }

    .section-2-span-span {
        border-radius: 5px;
        padding: 2px 8px 5px 8px;
        font-weight: 600;
        background-color: #202425;
    }

    .Multfilmlar {
        overflow-x: scroll;
        display: -webkit-box;
        scrollbar-width: inherit;
        scrollbar-color: #454141 transparent;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }

    /* kinolar */
    .Kinolar {
        overflow-x: scroll;
        display: -webkit-box;
        scrollbar-width: inherit;
        scrollbar-color: #454141 transparent;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }

    /* seriallar */
    .seriallar {
        overflow-x: scroll;
        display: -webkit-box;
        scrollbar-width: inherit;
        scrollbar-color: #454141 transparent;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }

    /* scrol tugmalari */
    .scroll-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        background-color: #202425;
        padding: 15px;
    }

    .scroll-btn {
        height: 85px;
        background: #202425;
        color: white;
        border: none;
        outline: none;
        cursor: pointer;
        font-size: 22px;
        padding: 10px;
        margin-bottom: 80px;
    }

    .scroll-btn.left {
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
        position: absolute;
        left: 0;
    }

    .scroll-btn.right {
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
        position: absolute;
        right: 0;
    }

    .Multfilmlar,
    .Kinolar,
    .seriallar {
        overflow-x: auto;
        scroll-behavior: smooth;
        display: flex;
        padding: 0px 0px 10px 0px;
    }

    /* Top */
    .top {
        margin-top: 3rem;
        padding: 0 1rem;
    }

    .top-span {
        margin-bottom: 1rem;
        display: flex;
        justify-content: flex-start;
        font-size: 1.2rem;
        font-weight: 600;
        color: #fff;
    }

    .top-list {
        position: relative;
        display: flex;
        overflow-x: auto;
        gap: 34px;
        padding: 0.5rem;
        background-color: #272d2e;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .top-list-item {
        display: block;
    }

    .top-list-item img {
        width: 220px;
        border-radius: 8px;
    }

    .top-list-text {
        margin-top: -0.3rem;
        background-color: #1a1a1a;
        padding: 0.5rem 0;
        font-size: 0.9rem;
        color: #fff;
        font-weight: 600;
        text-align: center;
    }

    .top-list-item {
        cursor: pointer;
        position: relative;
        /* Needed for absolute positioning of badges */
    }

    .rank-badge {
        padding: 5px 10px;
        position: absolute;
        top: 0px;
        left: 0px;
        background-color: rgba(18, 176, 18, 0.896);
        border-bottom-right-radius: 10px;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1rem;
        z-index: 1;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.719);
    }

    /* Specific rank styles - fixed selector */
    .top-list-item:nth-child(1) .rank-badge {
        background-color: gold;
    }

    .top-list-item:nth-child(2) .rank-badge {
        background-color: silver;
    }

    .top-list-item:nth-child(3) .rank-badge {
        background-color: brown;
        /* bronze */
    }

    /* footer */
    footer {
        margin-top: 100px;
        background-color: #202425;
    }

    .t-logo {
        display: none;
    }

    .footer {
        font-weight: 600;
        padding-top: 25px;
        width: 89%;
        margin: auto;
    }

    .footer-social {
        margin-bottom: 10px;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-section {
        flex: 1;
        min-width: 200px;
    }

    .footer-section a button {
        cursor: pointer;
        margin-bottom: 10px;
        font-weight: 600;
        color: #fff;
        border: none;
        background: none;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: yellow;
    }

    .footer-section p,
    .footer-section ul li a {
        font-size: 14px;
        color: #ccc;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a {
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-social a {
        margin-right: 15px;
        font-size: 20px;
        color: #fff;
        transition: color 0.3s ease;
    }

    .footer-bottom {
        text-align: center;
        padding: 10px 0px;
        border-top: 1px solid #333;
    }

    .footer-bottom p {
        font-size: 14px;
        color: #ccc;
    }

    /* Login modal uchun qo'shimcha stil */


    .user-img {
        cursor: pointer;
    }

    .user-dropdown {
        display: none;
        position: absolute;
        right: 5%;
        top: 60px;
        background-color: #1a1a1a;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        z-index: 100;
        width: 200px;
        overflow: hidden;
    }

    .user-dropdown.show {
        display: block;
    }

    .user-dropdown a {
        font-weight: 600;
        font-size: 15px;
        display: block;
        padding: 12px 20px;
        color: #fff;
        text-decoration: none;
        transition: background-color 0.3s;
    }

    .user-dropdown a:hover {
        background-color: #333;
    }

    .user-dropdown a i {
        margin-right: 10px;
    }
}