
/*===============================================================================================
                      ZTHEME BODY MAIN CSS START FORM HERE
=================================================================================================*/

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    transition: all .3s;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    line-height: 1.2;
    background: #101218;
    color: #ccc;
}

.box-layout {
    background-color: #202124;
    max-width: 600px;
    margin: 15px auto;
    border-radius: 14px;
    box-shadow: 0px 0px 20px 20px #00000026;
}

a {
    color: #ececec;
    text-decoration: none;
}

svg {
    width: 24px;
}

img {
    width: 100%;
    height: auto;
}

h1,h2,h3 {
    margin-bottom: 10px;
    font-weight: 500;
}

h1 {
    font-size: 1.5em;
}

h2 {
    font-size: 1.3em;
}

h3 {
    font-size: 1em;
}

p {
    margin-bottom: 15px;
}

ul,ol {
    margin: 0 0 1em 2em;
}

.page-content {
    padding: 10px;
}

div#video-container {
    aspect-ratio: 16 / 9;
    width: 100%;
}

img.hicon {
    width: 38px;
}

header.main-header {
    display: flex;
    justify-content: space-between;
    padding: 8px 15px;
    position: relative;
    border-bottom: 1px solid #101218;
}

.hleft {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    flex: 1;
}

.hright {
    display: flex;
    gap: 10px;
    align-items: center;
}

ul.post-categories {
    margin: 0;
    display: inline-block;
    list-style: none;
}

.hlink {
    background: #00000000;
    height: 40px;
    width: 40px;
    padding: 3px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: inherit;
    font: inherit;
}

.hlink:hover {
    background: #303134;
}

section.content {
    padding: 10px;
    position: relative;
}

h1.title {
    font-size: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    padding-right: 26px;
}

.btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.btnlink {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #394457;
    border-radius: 99px;
    padding: 10px;
    justify-content: center;
    flex: auto;
    color: #ccc;
    border: 0;
    cursor: pointer;
}

.btnlink svg {
    width: 18px;
    height: 18px;
}

.btnlink:hover {
    background: #2b2d34;
}

.videos {
    padding: 10px;
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

article.video {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

span.rtitle {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    padding: 5px;
    background: #0000004a;
    width: 100%;
    backdrop-filter: blur(100px);
}

section.categories {
    padding: 10px;
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

a.category-item {
    aspect-ratio: 16 / 9;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.category-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    position: absolute;
    bottom: 0;
    z-index: 3;
    width: 100%;
    background: #3F51B5;
}

.fmenu a {
    flex: auto;
    padding: 10px;
    text-align: center;
}

.fmenu {
    display: flex;
    gap: 5px;
    border-top: 1px solid #101218;
}

.fmenu a:hover {
    background: #2b2d34;
}

.border {
    height: 1px;
    background: #101218;
    margin: 10px 0;
}

.dropbtn {
    border: none;
    cursor: pointer;
    background: transparent;
    padding: 0;
    color: inherit;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #202124;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 99;
    right: 3px;
    top: 56px;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.show {
    display: block !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}

svg.dropbtn,svg.dropbtn path {
    pointer-events: none;
}

.dropdown-content:before {
    content: '';
    background: #202124;
    width: 11px;
    height: 11px;
    position: absolute;
    rotate: 45deg;
    top: -6px;
    right: 12px;
    background-size: 11px 11px;
    z-index: -1;
}

.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-content li {
    margin: 0;
    padding: 0;
}

.dropdown-content ul li a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover,.dropdown-content ul li a:hover {
    background-color: #2b2d34;
}

section.slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}


 h2.vtitle {
             position: absolute;
             bottom: 20px;
             font-size: calc(18px + 6 * ((100vw - 320px) / 680));
             width: 100%;
             text-align: center;
 }


img.mySlides {
    object-fit: cover;
    height: 100%;
}

.slider-btns {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
}

.slbtns {
    padding: 12px 17px;
    border: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 100%;
    line-height: 16px;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
}

.slbtns:hover {
    transform: scale(1.2);
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #101218;
}

h1.page-title {
    font-size: 20px;
    margin: 0;
    font-weight: normal;
}

.link {
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    position: absolute;
}

.vdicon {
    display: flex;
    gap: 5px;
    align-items: center;
}

.vdicon:before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M2 8.25A3.25 3.25 0 0 1 5.25 5h6.5A3.25 3.25 0 0 1 15 8.25v7.5A3.25 3.25 0 0 1 11.75 19h-6.5A3.25 3.25 0 0 1 2 15.75zm17.257 9.438L16 15.44V8.562l3.257-2.249c1.161-.802 2.745.03 2.745 1.44v8.495c0 1.41-1.584 2.242-2.745 1.44'/%3E%3C/svg%3E");
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    display: block;
}

.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 101;
}


.slider-indicators {
    margin: 0 10px;
}

.search-container {
    position: absolute;
    top: 60px;
    right: 50px;
    z-index: 1000;
    background-color: #202124;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    pointer-events: none;
}

.show-search {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.search-form {
    display: flex;
    align-items: center;
}

.search-field {
    background-color: #2b2d34;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    color: #ccc;
    width: 200px;
    font-size: 14px;
}

.search-field:focus {
    outline: none;
    background-color: #303134;
}

.search-submit {
    background: transparent;
    border: none;
    padding: 5px;
    margin-left: -40px;
    cursor: pointer;
    color: #ccc;
    min-width: 44px;
    min-height: 44px;
}

.search-submit svg {
    width: 20px;
    height: 20px;
}

.search-btn:hover {
    background: #303134;
}

@media screen and (max-width: 370px) {
    .hleft {
        gap:5px;
    }

    .hright {
        gap: 5px;
    }

    .hlink {
        width: 35px;
        height: 35px;
    }

    svg {
        width: 20px;
    }

    img.hicon {
        width: 32px;
    }

    .hlogo {
        font-size: 14px;
        max-width: 100px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block;
    }

    .search-container {
        right: 5px;
        top: 55px;
    }

    .dropdown-content {
        min-width: 140px;
        top: 50px;
    }

    .dropdown-content a {
        padding: 10px 14px;
    }
}

@media screen and (max-width: 320px) {
    .hleft {
        gap:3px;
    }

    .hright {
        gap: 2px;
    }

    .hlink {
        width: 30px;
        height: 30px;
        padding: 2px;
    }

    svg {
        width: 18px;
    }

    img.hicon {
        width: 28px;
        padding: 3px;
    }

    header.main-header {
        padding: 8px 5px;
    }

    .search-container {
        right: 5px;
        width: 250px;
        max-width: calc(100% - 20px);
    }

    .search-field {
        width: 160px;
    }

    .dropdown-content:before {
        right: 6px;
    }

    .dropdown-content a {
        padding: 8px 12px;
        font-size: 14px;
    }
}

.header-wrapper {
    width: 100%;
    position: relative;
}

.header-sticky {
    position: fixed!important;
    top: -60px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease-in-out;
    background-color: #202124;
    border-radius: 14px 14px 0 0;
}

.header-sticky-visible {
    top: 0;
}

.header-sticky .dropdown-content {
    position: fixed;
    top: 56px;
}

.header-sticky .search-container {
    position: fixed;
    top: 60px;
}

@media screen and (max-width: 370px) {
    .header-sticky .search-container {
        top:55px;
    }

    .header-sticky .dropdown-content {
        top: 50px;
    }
}

.nav-links {
    display: flex;
    gap: 5px;
    width: 100%;
}

.pagination {
    text-align: center;
    margin: 20px 10px;
    clear: both;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination .page-numbers {
    flex: auto;
    padding: 8px 12px;
    background-color: #394457;
    color: #ccc;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.pagination .page-numbers.current {
    background-color: #3F51B5;
    color: #fff;
}

.pagination .page-numbers:hover:not(.current) {
    background-color: #2b2d34;
    color: #fff;
}

.pagination .dots {
    background-color: transparent;
    padding: 8px 0;
    display: none;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.taxonomy-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
}

.filter-label {
    margin-right: 15px;
    font-weight: 500;
    color: #fff;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-option {
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.filter-option:hover {
    background-color: #3F51B5;
    color: #fff;
}

.filter-option.active {
    background-color: #3F51B5;
    font-weight: 500;
    color: #ffffff;
}

.taxonomy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.taxonomy-item {
    background-color: #272727;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.taxonomy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.taxonomy-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.taxonomy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.taxonomy-item:hover .taxonomy-image img {
    transform: scale(1.05);
}

.taxonomy-meta {
    padding: 15px;
}

.taxonomy-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.taxonomy-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.taxonomy-count {
    display: flex;
    align-items: center;
}

.taxonomy-count::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z'/%3E%3C/svg%3E");
    background-size: contain;
    margin-right: 5px;
    opacity: 0.7;
}

.taxonomy-date {
    font-style: italic;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .taxonomy-grid {
        grid-template-columns:repeat(auto-fill, minmax(180px, 1fr));
    }

    .taxonomy-title {
        font-size: 16px;
    }

    .taxonomy-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-label {
        margin-right: 0;
        margin-bottom: 10px;
        text-align: center;
    }

    .filter-options {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .taxonomy-grid {
        grid-template-columns:1fr 1fr;
        gap: 15px;
    }

    .taxonomy-meta {
        padding: 10px;
    }

    .taxonomy-title {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .taxonomy-details {
        font-size: 12px;
    }
}

.taxonomy-table-container {
    border-bottom: 1px solid #2b2d34;
}

.taxonomy-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}

.taxonomy-table th {
    padding: 15px;
    text-align: left;
    font-weight: 500;
    color: #fff;
    border-bottom: 1px solid #2b2d34;
}

.taxonomy-table th.term-count {
    text-align: center;
    width: 100px;
}

.taxonomy-table th.term-date {
    text-align: right;
    width: 120px;
}

.taxonomy-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #2b2d34;
    transition: background-color 0.2s ease;
    color: rgba(255, 255, 255, 0.9);
}

.taxonomy-table tr:last-child td {
    border-bottom: none;
}

.taxonomy-table tr:hover {
    background-color: #2b2d34;
}

.taxonomy-table .term-title {
    font-weight: 500;
}

.taxonomy-table .term-count {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.taxonomy-table .term-date {
    text-align: right;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.term-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.folder-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffbf00'%3E%3Cpath d='M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.2s ease;
}

.term-link:hover .folder-icon {
    transform: scale(1.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233F51B5'%3E%3Cpath d='M10 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z'/%3E%3C/svg%3E");
}

.term-name {
    font-weight: 500;
    transition: color 0.2s ease;
}

.term-link:hover .term-name {
    color: #3F51B5;
}

td.ctbl-title:hover {
    background: rgba(255, 255, 255, 0.05);
}

td.ctbl-title a {
    justify-content: space-between;
}

td.ctbl-title {
    width: 50%;
    border: 1px solid #2b2d34;
    background: #101218;
}

.no-results-row td {
    text-align: center;
    padding: 30px 15px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

@media (max-width: 600px) {
    .taxonomy-table th,.taxonomy-table td {
        padding:10px;
    }

    .taxonomy-table th.term-count {
        width: 60px;
    }

    .taxonomy-table th.term-date {
        width: 80px;
    }

    .folder-icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    .term-name {
        font-size: 14px;
    }

    .taxonomy-table .term-count,.taxonomy-table .term-date {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .taxonomy-table th.term-date,.taxonomy-table td.term-date {
        display:none;
    }

    .taxonomy-table th.term-count {
        width: 50px;
    }

    .filter-option {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .taxonomy-table th,.taxonomy-table td {
        padding:8px 5px;
    }

    .folder-icon {
        width: 16px;
        height: 16px;
        margin-right: 5px;
    }

    .term-name {
        font-size: 13px;
    }
}

.table-search-container {
    margin-bottom: 15px;
    width: 100%;
}

.table-search-field {
    width: 100%;
    padding: 12px 20px 12px 40px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    background-color: #1E1E1E;
    color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23707070' d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 20px 20px;
    transition: all 0.3s ease;
}

.table-search-field:focus {
    outline: none;
    border-color: #3F51B5;
    box-shadow: 0 0 5px rgba(63, 81, 181, 0.5);
}

a.tblink {
    background: #3b4456;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 99px;
    padding: 6px 20px;
}

.tblink:hover {
    background: #3F51B5;
}


a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .table-search-field {
        font-size:14px;
        padding: 10px 15px 10px 35px;
        background-size: 16px 16px;
        background-position: 10px center;
    }
}

@media (max-width: 360px) {
    .table-search-field {
        font-size:13px;
        padding: 8px 12px 8px 30px;
        background-size: 14px 14px;
        background-position: 8px center;
    }
}

.slide-dot {
    width: 30px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
    position: relative;
}


.slide-dot {
    flex: auto;
    width: 30px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50px;
    padding: 0;
    cursor: pointer;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}



.slide-dot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    z-index: -1;
    transition: none;
    pointer-events: none;
}



/*If slider = 5s → update CSS too and js */

.slide-dot.active::before {
    animation: fillBackground 3s linear forwards;
}


.slide-dot:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.slide-dot.active {
    background-color: white;
    transform: scale(1.2);
}


.slide-dot.active {
    background-color: rgba(255, 255, 255, 0.2);
}




@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}



@keyframes fillBackground {
    from {
        background-position: right bottom;
    }
    to {
        background-position: left bottom;
    }
}



.slide-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}


a.mySlides {
    display: block;
    min-height: 44px;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.skip-link {
    background: #3F51B5;
    color: white;
    font-weight: 700;
    padding: 10px 15px;
    position: absolute;
    transform: translateY(-120%);
    transition: transform 0.3s;
    z-index: 9999;
    left: 0;
    top: 0;
}

.skip-link:focus {
    transform: translateY(0);
}

.slbtns {
    padding: 12px 17px;
    border: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 100%;
    line-height: 16px;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
}

.search-submit {
    background: transparent;
    border: none;
    padding: 5px;
    margin-left: -40px;
    cursor: pointer;
    color: #ccc;
    min-width: 44px;
    min-height: 44px;
}

.home-links a {
    flex: auto;
    padding: 10px;
    text-align: center;
    border-right: 1px solid #2b2d34;
}

.home-links a:hover {
    background: #2b2d34;
}

.home-links a:last-child {
    border-right: 0px solid #fff;
}

.home-links {
    display: flex;
    gap: 5px;
    border-bottom: 1px solid #2b2d34;
}


 .colicon:before {
                content: '';
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M4.25 4A2.25 2.25 0 0 0 2 6.25v2.5A2.25 2.25 0 0 0 4.25 11h2.5A2.25 2.25 0 0 0 9 8.75v-2.5A2.25 2.25 0 0 0 6.75 4zm7 1a.75.75 0 0 0 0 1.5h10a.75.75 0 0 0 0-1.5zm0 3a.75.75 0 0 0 0 1.5h7a.75.75 0 0 0 0-1.5zm-7 5A2.25 2.25 0 0 0 2 15.25v2.5A2.25 2.25 0 0 0 4.25 20h2.5A2.25 2.25 0 0 0 9 17.75v-2.5A2.25 2.25 0 0 0 6.75 13zm7 1a.75.75 0 0 0 0 1.5h10a.75.75 0 0 0 0-1.5zm0 3a.75.75 0 0 0 0 1.5h7a.75.75 0 0 0 0-1.5z'/%3E%3C/svg%3E");
                width: 20px;
                height: 20px;
                background-size: 20px 20px;
                display: block;
            }


.colicon {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}



.art-icon svg {
    width: 70%;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
    backdrop-filter: blur(5px);
}

.modal-backdrop.active {
    display: block;
}

.modal-box {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #202124;
    height: 50vh;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
    overflow-y: scroll;
    max-width: 600px;
    margin: auto;
    scrollbar-width: none;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 51%;
    right: 20px;
    background: none;
    font-size: 24px;
    border: none;
    cursor: pointer;
    z-index: 1100;
    color: #555;
}

button.info-btnx {
    background: none;
    border: none;
    color: #fff;
}

button.info-btnx {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: 7px;
    right: 10px;
}

button.info-btnx svg {
    width: 30px;
    height: 30px;
}

.dialog-header {
    padding: 10px;
    background: #394457;
    padding-right: 36px;
}

.dialog-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.metadata-breadcrumb {
    font-size: 14px;
    color: #888;
    padding: 10px;
    position: absolute;
    bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 100%;
}

.metadata-breadcrumb a {
    color: #4e69ff;
    text-decoration: none;
}

.metadata-breadcrumb a:hover {
    text-decoration: underline!important;
}

table.metadata-table a:hover {
    text-decoration: underline!important;
}

.metadata-table {
    width: 100%;
    border-collapse: collapse;
}

table.metadata-table a {
    color: #4e69ff;
}

.metadata-table th,.metadata-table td {
    padding: 10px;
    border-bottom: 1px solid #2b2d34;
    text-align: left;
}

.metadata-table th {
    width: 100px;
    font-weight: 500;
    color: #888;
}

.metadata-table td a {
    color: #3F51B5;
    text-decoration: none;
}

.metadata-table td a:hover {
    text-decoration: underline;
}

.metadata-table tr:last-child th,.metadata-table tr:last-child td {
    border-bottom: none;
}

svg#playsvg {
    width: 40px;
    height: 40px;
}

#playsvg {
    animation-name: ckw;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    display: inline-block;
}

@keyframes ckw {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

a.hlogo {
    font-size: 24px;
}

button.hlink {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    line-height: normal;
}



/*===============================================
   REMAING CSS FOR FULL THEME START FROM HERE
=================================================*/

.smaster-trending-keywords {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 5px;
    max-height: 300px;
    overflow-y: scroll;
    scrollbar-width: thin;
}


a.smaster-keyword {
    white-space: nowrap;
    background: #2b2d34;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    flex: auto;
    text-align: center;
}



a.smaster-keyword:hover {
    background: #3F51B5;
}


/* =====================================================
   ZTHEME — DOWNLOAD TABLE (CONTENT ONLY)
===================================================== */

.download-scroll {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.download-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}


.download-table tr {
    padding: 10px;
    border-bottom: 1px solid #2b2d34;
}

.download-table td {
    padding: 8px 6px;
    font-size: 13px;
    color: #ccc;
    vertical-align: middle;
    line-height: 1.2;
}


/* Server column */
.download-table .srv {
    font-weight: 600;
    color: #3F51B5;
    white-space: nowrap;
    padding: 4px 6px;
    font-size: 13px;
    width: 70px;
    text-align: left;
}


/* URL column */
.download-table .url {
    font-size: 13px;
    color: #9aa0b3;
    max-width: 230px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.download-table .act {
    width: 90px;
    text-align: right;
    white-space: nowrap;
}


.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    background: #3F51B5;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.download-btn:hover {
    background: #4e69ff;
    color: #fff;
}


@media (max-width: 600px) {
    .download-table .url {
        max-width: 130px;
    }

    .download-btn {
        min-width: 70px;
        padding: 5px 8px;
    }
}


/* =====================================================
    ZTHEME — VIDEO PLAYER EMBED LINK WITH SLIDEZOOM DESIGN
===================================================== */


.video-player {
    aspect-ratio: 16 / 9;
    /*border-radius: 0.6rem;*/
    overflow: hidden;   
    position: relative;
    background: transparent;
}

/* zoom wrapper */
.video-zoom {
    width: 100%;
    height: 100%;
    transform: scale(1.01); 
    transform-origin: center;
}

/* iframe */
iframe.video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}






/* ===============================
   404 PAGE – ZTHEME POLISH
================================ */

.page-404 {
    max-width: 480px;
    margin: 40px auto;
    padding: 25px;
    background: #171717;
    border-radius: 14px;
    border: 1px solid #ffffff1f;
    text-align: center;
}

.page-404-header {
    margin-bottom: 15px;
}

.page-404-code {
    font-size: 90px;
    font-weight: 800;
    color: #3F51B5;
    margin-bottom: 0;
    line-height: 1;
}

.page-404-title {
    font-size: 20px;
    color: #fff;
    margin-top: 5px;
}

.page-404-desc {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
}

.page-404-actions {
    margin-bottom: 20px;
}

.page-404-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 99px;
    border: 1px solid #3F51B5;
    color: #ccc;
    font-weight: 600;
    transition: all .25s ease;
}

.page-404-btn:hover {
    background: #3F51B5;
    color: #fff;
}

.page-404-search {
    justify-content: center;
    margin-top: 15px;
}

.page-404-search .search-field {
    width: 100%;
    max-width: 260px;
}




/* ===============================
   CONTACT PAGE — ZTHEME
================================ */

.page-contact {
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    padding: 10px;
}

.contact-intro {
    color: #aaa;
    margin-bottom: 20px;
}

.contact-item {
    background: #171717;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    border: 1px solid #ffffff1f;
}

.contact-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
}

.contact-title svg {
    width: 18px;
    height: 18px;
    color: #3F51B5;
}

.contact-text {
    font-size: 14px;
    color: #ccc;
}

.contact-text a {
    color: #4e69ff;
}

.contact-form-box {
    margin-top: 20px;
    background: #171717;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #ffffff1f;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-field label {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 4px;
    display: block;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #1E1E1E;
    color: #fff;
    font-size: 14px;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #3F51B5;
    box-shadow: 0 0 5px rgba(63,81,181,0.4);
}


.contact-item:nth-child(1) svg { color: #4e69ff; } /* Email */
.contact-item:nth-child(2) svg { color: #229ED9; } /* Telegram */
.contact-item:nth-child(3) svg { color: #25D366; } /* WhatsApp */


