* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #333333;
    background: #ffffff;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #2b2b2b;
    line-height: 1.3;
}

p,
ul,
li {
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
}

ul {
    list-style: none;
}

.wrap {
    max-width: 880px;
    margin: 0 auto;
    padding: 0;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    color: #4a474c;
}

h2 {
    font-size: 26px;
    font-weight: 700;
    color: #4a474c;
    margin-bottom: 22px;
}

h3 {
    font-size: 16px;
    font-weight: 700;
    color: #4a474c;
    margin-bottom: 10px;
}

p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a474c;
    margin-bottom: 16px;
}

ul,
ol {
    margin: 0;
    padding: 0;
    margin-left: 20px;
    margin-bottom: 16px;
}

ul li,
ol li {
    font-size: 15px;
    line-height: 1.7;
    color: #4a474c;
}

ul li {
    list-style: disc;
}

ol li {
    list-style: decimal;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

/* ---------- Header ---------- */

.site-header {
    border-bottom: 1px solid #ececec;
}

.brand-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 15px 14px;
    border-bottom: 1px solid #ececec;

}

.brand-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 22px;
    font-weight: 700;
    color: #e91700;
}

.brand-link img {
    width: 26px;
    height: 26px;
}

.primary-nav {
    position: relative;
    max-width: 880px;
    width: 100%;
    margin: 0 auto;
}

.primary-nav .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
    gap: 40px;
    padding: 14px 20px;
}

.primary-nav a {
    font-size: 15px;
    color: #4a474c;
}

.primary-nav a:hover {
    color: #e91700;
}

.lang-switcher {}

.lang-switcher button {
    font-family: inherit;
    font-size: 15px;
    color: #4a474c;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-switcher button::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #8a8a8a;
    margin-left: 2px;
}

.lang-menu {
    list-style: none;
    position: absolute;
    right: 0;
    top: calc(100% + 1px);
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    width: 180px;
    max-height: 320px;
    overflow-y: auto;
    display: none;
    z-index: 20;
    margin: 0;
}

.lang-menu.open {
    display: block;
}

.lang-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 15px;
    color: #4a474c;
}

.lang-menu li a:hover {
    background: #f7f7f7;
    color: #e91700;
}

/* ---------- Hero ---------- */

.hero {
    text-align: center;
    padding: 56px 15px 40px;
}

.hero .tagline {
    margin-top: 10px;
    font-size: 15px;
    color: #6c6c6c;
}

.converter-form {
    max-width: 780px;
    width: 100%;
    margin: 26px auto 0;
    display: flex;
    gap: 16px;
    position: relative;
}

.converter-form input[type="text"] {
    flex: 1;
    height: 56px;
    border: 2px solid #ffc4c4;
    border-radius: 12px;
    padding: 17px 20px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
}

.converter-form input[type="text"]::placeholder {
    color: #757575;
}

.converter-form input[type="text"]:focus,
.converter-form button:focus {
    outline: none;
}

.converter-form button {
    height: 56px;
    padding: 18px 40px;
    background: #e91700;
    box-shadow: 0 4px 10px rgba(255, 86, 63, .4);
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.converter-form button:hover {
    background: #d42b23;
}

/* ---------- Features ---------- */

.features {
    padding: 30px 15px 10px;
    text-align: center;
}

.feature-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 0;
    margin-top: 34px;
    text-align: left;
}

.feature-card {
    border: 1px solid #ececec;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.icon-blue {
    background: #dceafb;
}

.icon-red {
    background: #fbdcdb;
}

.icon-green {
    background: #d9f0df;
}

.icon-yellow {
    background: #fbedd2;
}

.icon-pink {
    background: #fbe1ee;
}

.icon-cyan {
    background: #d9f3fb;
}

.feature-body {
    padding: 20px 22px 26px;
}

.feature-body p {
    margin-bottom: 0;
}

.formats {
    padding: 46px 15px 20px;
    text-align: center;
}

.format-badges {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0px;
    margin-bottom: 32px;
}

.format-badge {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.format-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.cta-button {
    display: inline-block;
    margin-top: 20px;
    background: #e91700;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 34px;
    border-radius: 6px;
    border: none;
    font-family: inherit;
    cursor: pointer;
}

.cta-button:hover {
    background: #d42b23;
}

/* ---------- Steps ---------- */

.steps {
    padding: 50px 20px;
    text-align: center;
}

.step-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
    margin: 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.step-item:nth-child(1) .step-number {
    background: #dceafb;
    color: #4a86e8;
}

.step-item:nth-child(2) .step-number {
    background: #fbdcdb;
    color: #e8615a;
}

.step-item:nth-child(3) .step-number {
    background: #d9f0df;
    color: #34a853;
}

.step-item p {
    margin-bottom: 0;
}


/* ---------- FAQ ---------- */

.faq {
    padding: 30px 15px 60px;
}

.faq-item {
    margin-bottom: 22px;
}


.faq-item ol {
    margin: 10px 0 0 20px;
    font-size: 13.5px;
    line-height: 1.8;
    color: #666666;
}

/* ---------- Footer ---------- */

.site-footer {
    background: #4a4a4a;
    color: #ffffff;
    padding: 24px 15px 18px;
    text-align: center;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px 20px;
    flex-wrap: wrap;
    margin: 0px;
    margin-bottom: 16px;
}

.footer-nav a {
    color: #ffffff;
}

.footer-nav a:hover {
    color: #e91700;
}

.site-footer .copyright {
    font-size: 15px;
    color: #FFFFFF;
    margin: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.img {
    background-image: url('../image/image.webp');
    background-repeat: no-repeat;
    background-size: auto;
}

.yt1s-logo {
    width: 37px;
    height: 28px;
    display: block;
    background-position: 0 -15px;
}

.fast-and-simple {
    width: 200px;
    height: 200px;
    background-position: -410px -163px;
}

.easy-to-use-interface {
    width: 200px;
    height: 200px;
    background-position: -0px -368px;
}

.works-on-multiple-devices {
    width: 200px;
    height: 200px;
    background-position: -410px -368px;
}

.clear-and-high-quality-downloads {
    width: 200px;
    height: 200px;
    background-position: -205px -163px;
}

.fast-and-simple2 {
    width: 200px;
    height: 200px;
    background-position: -205px -368px;
}

.no-registration-required {
    width: 200px;
    height: 200px;
    background-position: 0px -163px;
}

.icon1 {
    width: 110px;
    height: 110px;
    background-position: -0px -48px;
}

.icon2 {
    width: 110px;
    height: 110px;
    background-position: -115px -48px;
}

.icon3 {
    width: 110px;
    height: 110px;
    background-position: -230px -48px;
}

.icon4 {
    width: 110px;
    height: 110px;
    background-position: -345px -48px;
}

.icon5 {
    width: 110px;
    height: 110px;
    background-position: -460px -48px;
}

.why-choose {
    padding: 0 15px 0;
}

#suggestion_box {
    position: absolute;
    top: 60px;
    width: calc(100% - 158px);
    height: auto;
    left: 0;
    background: #fff;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 32px 0 rgb(185 185 185 / 37%)
}

#suggestion_box ul#suggestions {
    color: #000;
    text-align: left;
    padding: 0;
    line-height: normal;
    list-style: none;
    width: 100%;
    margin: 0;
    display: block
}

ul#suggestions li.search_result {
    padding: 3px 15px;
    cursor: pointer;
    margin: 10px 0;
    color: #2c2c2c;
    font-size: 16px;
    font-weight: 400;
    line-height: normal
}

#suggestion_box ul#suggestions li {
    color: #000;
    list-style: none
}

#suggestion_box ul#suggestions li:hover {
    background-color: #f0f0f0;
    font-weight: 600
}

#suggestion_box ul#suggestions li.active {
    background-color: #f0f0f0;
    font-weight: 600
}

.search_results {
    display: flex;
    gap: 30px;
    padding: 0 0 30px;
    flex-wrap: wrap;
    justify-content: flex-start
}

.search_results form {
    max-width: 30%;
    width: 100%;
    height: auto
}

.item_box {
    width: fit-content;
    height: 100%;
    cursor: pointer
}

.item_box img.thumbimg {
    max-width: 100%;
    width: 100%;
    height: 150px;
    object-fit: fill
}

.loader {
    max-width: 100%;
    width: 100%;
    height: auto
}

.inside_box {
    min-height: auto
}

.inside_box p {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    margin: 0
}

button.submit.submit2 {
    display: none
}

.btn-group {
    padding: 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 5px;
    align-items: center;
    justify-content: center
}

.btn-group div {
    position: relative
}

.btn-download,
.btn-playnow {
    background: #00a80c;
    border-radius: 5px;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    padding: 15px;
    width: 200px;
    border: none;
    display: block;
    text-decoration: none;
    color: #fff
}

.btn-playnow {
    background: #c3291a
}

.btn-group span {
    display: block;
    position: absolute;
    right: 5px;
    font-size: 14px;
    line-height: 24px;
    text-align: right;
    color: #0086e7
}

.bloacked_id_error {
    max-width: 730px;
    width: 100%;
    margin: 0 auto;
    padding: 12px;
    text-align: center;
    background: rgb(255 255 255 / .9);
    box-shadow: 0 0 6px 0 rgb(0 0 0 / 37%);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / .18)
}

.blocked_error.error {
    text-align: center;
    width: 100%
}

.blocked_error h3 {
    text-align: center
}

.result.second_section {
    padding: 40px 0
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {

    .feature-grid,
    .step-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:767px) {
    .search_results {
        gap: 20px;
        justify-content: center
    }
}

@media (max-width: 640px) {

    .hero {
        padding: 40px 15px 30px;
    }

    .primary-nav .wrap {
        gap: 30px;
        justify-content: flex-start;
    }

    .lang-switcher {
        position: static;
        transform: none;
        margin-top: 4px;
    }

    .lang-menu {
        right: auto;
        left: 0;
    }

    .feature-grid,
    .step-list {
        grid-template-columns: 1fr;
    }

    .converter-form {
        flex-direction: column;
    }

    .format-badges {
        gap: 10px;
    }

    .search_results form {
        max-width: 100%
    }

    .item_box {
        width: fit-content;
        height: 100%;
        cursor: pointer;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0 10px
    }

    .item_box img.thumbimg {
        max-width: 140px;
        width: 100%;
        height: auto;
        object-fit: fill
    }

    .btn-group {
        gap: 10px 10px
    }

    .btn-download,
    .btn-playnow {
        font-size: 16px;
        padding: 10px;
        width: 136px
    }


}

iframe {
    height: 457px
}

@media only screen and (max-width:480px) {
    iframe {
        height: 410PX
    }
}