/* =========================
   GLOBAL RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0d0d0f;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}


/* =========================
   TOP BOOKMARK BAR
========================= */

.bookmark-bar {
    width: 100%;
    background: #17171b;
    border-bottom: 1px solid #29292f;
}

.bookmark-content {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #d6d6d8;
}

.pin-icon {
    font-size: 16px;
}

.domain-name {
    background: #7c1018;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 5px;
    font-weight: bold;
}


/* =========================
   HEADER
========================= */

.main-header {
    width: 100%;
    min-height: 72px;
    background: #111114;
    border-bottom: 1px solid #29292f;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    color: #ffffff;

    font-size: 24px;
    font-weight: 800;
}

.logo-icon {
    width: 38px;
    height: 38px;

    background: #c91422;
    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 17px;
}

.telegram-button {
    display: flex;
    align-items: center;
    gap: 7px;

    background: #c91422;
    color: #ffffff;

    text-decoration: none;

    padding: 10px 16px;
    border-radius: 7px;

    font-size: 14px;
    font-weight: bold;

    transition: 0.25s ease;
}

.telegram-button:hover {
    transform: translateY(-2px);
    background: #e11b2b;
}


/* =========================
   MAIN CONTAINER
========================= */

.container {
    width: 100%;
    max-width: 1200px;

    margin: auto;
    padding: 35px 20px 50px;
}


/* =========================
   VIDEO SECTIONS
========================= */

.video-section {
    margin-bottom: 55px;
}

.section-title {
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.section-title h2 i {
    color: #e11b2b;
    margin-right: 7px;
}


/* =========================
   VIDEO GRID
========================= */

.video-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(230px, 1fr));

    gap: 18px;
}


/* =========================
   VIDEO CARD
========================= */

.video-card {
    display: block;

    background: #17171b;
    border: 1px solid #29292f;

    border-radius: 9px;
    overflow: hidden;

    text-decoration: none;
    color: #ffffff;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: #c91422;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35);
}


/* =========================
   THUMBNAIL
========================= */

.thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;

    position: relative;
    overflow: hidden;

    background: #222227;
}

.thumbnail img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.video-card:hover .thumbnail img {
    transform: scale(1.05);
}


/* =========================
   HD BADGE
========================= */

.hd-badge {
    position: absolute;

    top: 10px;
    right: 10px;

    background: #c91422;
    color: #ffffff;

    font-size: 11px;
    font-weight: bold;

    padding: 3px 7px;
    border-radius: 4px;
}


/* =========================
   VIDEO INFORMATION
========================= */

.video-info {
    padding: 13px;
}

.video-info h3 {
    font-size: 15px;
    font-weight: 700;

    line-height: 1.4;

    margin-bottom: 11px;

    overflow: hidden;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


/* =========================
   VIDEO META
========================= */

.video-meta {
    display: flex;
    align-items: center;
    gap: 16px;

    font-size: 13px;
    color: #9b9ba1;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-meta i {
    color: #c91422;
}


/* =========================
   LATEST DIVIDER
========================= */

.latest-divider {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 35px;

    color: #8d8d93;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 1px;
}

.latest-divider span {
    height: 1px;
    flex: 1;

    background: #29292f;
}

.latest-divider p {
    white-space: nowrap;
}


/* =========================
   LATEST SECTION HEADER
========================= */

.latest-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.latest-title p {
    color: #8d8d93;
    font-size: 14px;
}


/* =========================
   PAGINATION
========================= */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 10px;
}

.page-button {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #17171b;
    color: #c5c5c9;

    text-decoration: none;

    border: 1px solid #29292f;
    border-radius: 7px;

    font-weight: bold;

    transition: 0.2s ease;
}

.page-button:hover {
    background: #242429;
    color: #ffffff;
}

.page-button.active {
    background: #c91422;
    border-color: #c91422;
    color: #ffffff;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #111114;
    border-top: 1px solid #29292f;

    text-align: center;

    padding: 40px 20px 30px;

    color: #919198;
}

.footer-disclaimer {
    max-width: 750px;
    margin: 0 auto 28px;

    font-size: 13px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 24px;

    font-size: 14px;
}

.footer-links a {
    color: #d4d4d7;
    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #e11b2b;
}

.footer-links span {
    color: #55555c;
}

.copyright {
    font-size: 13px;
    color: #77777e;
}

.copyright strong {
    color: #bdbdc2;
}


/* =========================
   SCROLL TO TOP
========================= */

.scroll-top {
    position: fixed;

    right: 20px;
    bottom: 20px;

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 8px;

    background: #c91422;
    color: #ffffff;

    font-size: 16px;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: 0.25s ease;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.35);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.scroll-top:hover {
    background: #e11b2b;
}


/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

    .main-header {
        padding: 0 20px;
        min-height: 65px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .container {
        padding: 25px 15px 40px;
    }

    .video-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }

    .video-info {
        padding: 10px;
    }

    .video-info h3 {
        font-size: 13px;
    }

    .video-meta {
        gap: 10px;
        font-size: 11px;
    }

    .section-title h2 {
        font-size: 18px;
    }

    .telegram-button {
        padding: 9px 12px;
    }

    .telegram-button span {
        display: none;
    }

    .telegram-button i {
        font-size: 19px;
    }

    .latest-divider {
        margin-bottom: 25px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .bookmark-content {
        font-size: 11px;
        gap: 5px;
        padding: 8px 10px;
    }

    .domain-name {
        padding: 2px 6px;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .video-grid {
        gap: 9px;
    }

    .video-info {
        padding: 9px;
    }

    .video-info h3 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .video-meta {
        font-size: 10px;
        gap: 8px;
    }

    .hd-badge {
        top: 7px;
        right: 7px;

        font-size: 9px;
        padding: 2px 5px;
    }

    .section-title h2 {
        font-size: 16px;
    }

    .latest-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .latest-title p {
        font-size: 12px;
    }

    .page-button {
        width: 38px;
        height: 38px;
    }

    .footer {
        padding: 30px 15px 25px;
    }

    .footer-disclaimer {
        font-size: 12px;
    }

    .footer-links {
        font-size: 12px;
        gap: 7px;
    }

}
/* =========================
   POPUP OVERLAY
========================= */

.popup-overlay {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        rgba(0, 0, 0, 0.82);

    backdrop-filter:
        blur(8px);

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


/* SHOW POPUP */

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}


/* =========================
   18+ WARNING POPUP
========================= */

.age-popup {
    width: 100%;
    max-width: 1150px;

    min-height: 650px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 70px 50px;

    background:
        #1b1b1e;

    border:
        2px solid #333338;

    border-radius:
        55px;

    box-shadow:
        0 0 50px rgba(255, 0, 0, 0.18),
        0 0 100px rgba(255, 0, 0, 0.08);

    cursor: pointer;
}


/* WARNING TITLE */

.age-warning-title {
    display: flex;
    align-items: center;

    justify-content: center;

    gap: 35px;

    color: #d92328;

    font-size: 68px;
    font-weight: 800;

    margin-bottom: 55px;
}


.age-warning-title i {
    font-size: 58px;
}


/* HORIZONTAL LINE */

.age-line {
    width: 100%;
    max-width: 1000px;

    height: 2px;

    background:
        #39393e;

    margin-bottom: 70px;
}


/* WARNING TEXT */

.age-popup p {
    color:
        #eeeeee;

    font-size:
        50px;

    font-weight:
        700;

    line-height:
        1.4;

    max-width:
        1000px;
}


/* =========================
   TELEGRAM POPUP
========================= */

.telegram-popup {
    width: 100%;
    max-width: 400px;

    text-align: center;

    padding:
        32px 32px 28px;

    background:
        #1a1a1d;

    border:
        1px solid #d92328;

    border-radius:
        22px;

    box-shadow:
        0 0 25px rgba(255, 30, 30, 0.25),
        0 0 60px rgba(255, 30, 30, 0.12);
}


/* TELEGRAM ICON */

.telegram-icon {
    width: 66px;
    height: 66px;

    margin:
        0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        #f3f3f3;

    color:
        #9f1d20;

    border-radius:
        50%;

    font-size:
        34px;

    box-shadow:
        0 0 25px rgba(255, 255, 255, 0.15);
}


/* ACCESS BADGE */

.access-badge {
    display: inline-block;

    margin:
        0 0 16px;

    padding:
        7px 18px;

    background:
        linear-gradient(
            90deg,
            #bd1b1f,
            #ee2a2e
        );

    color:
        #ffffff;

    border-radius:
        50px;

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        0.3px;
}


/* TELEGRAM HEADING */

.telegram-popup h2 {
    color:
        #eeeeee;

    font-size:
        25px;

    margin-bottom:
        22px;

    font-weight:
        800;
}


/* DESCRIPTION */

.telegram-description {
    color:
        #a8a8ae;

    font-size:
        14px;

    line-height:
        1.65;

    margin-bottom:
        15px;
}


/* MEMBER COUNT */

.members-text {
    display: flex;
    align-items: center;
    justify-content: center;

    gap:
        7px;

    color:
        #d8a235;

    font-size:
        13px;

    font-weight:
        700;

    margin-bottom:
        20px;
}


.members-text i {
    font-size:
        13px;
}


/* JOIN NOW BUTTON */

.join-now-button {
    width: 100%;

    display: block;

    padding:
        15px 10px;

    background:
        linear-gradient(
            90deg,
            #c91d21,
            #f42a2f
        );

    color:
        #ffffff;

    text-decoration:
        none;

    border-radius:
        50px;

    font-size:
        15px;

    font-weight:
        800;

    box-shadow:
        0 8px 25px rgba(220, 30, 35, 0.25);

    transition:
        0.25s ease;
}


.join-now-button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 12px 30px rgba(220, 30, 35, 0.35);
}


/* CONTINUE BUTTON */

.continue-button {
    width: 100%;

    margin-top:
        14px;

    padding:
        8px;

    background:
        transparent;

    border:
        none;

    color:
        #88888e;

    font-size:
        11px;

    font-weight:
        800;

    cursor:
        pointer;

    letter-spacing:
        0.2px;

    transition:
        0.2s ease;
}


.continue-button:hover {
    color:
        #ffffff;
}


/* =========================
   MOBILE POPUP DESIGN
========================= */

@media (max-width: 768px) {

    .age-popup {
        min-height:
            500px;

        padding:
            45px 25px;

        border-radius:
            30px;
    }


    .age-warning-title {
        gap:
            15px;

        font-size:
            40px;

        margin-bottom:
            40px;
    }


    .age-warning-title i {
        font-size:
            38px;
    }


    .age-line {
        margin-bottom:
            45px;
    }


    .age-popup p {
        font-size:
            28px;
    }

}


@media (max-width: 480px) {

    .age-popup {
        min-height:
            430px;

        padding:
            35px 20px;

        border-radius:
            25px;
    }


    .age-warning-title {
        font-size:
            30px;

        margin-bottom:
            30px;
    }


    .age-warning-title i {
        font-size:
            28px;
    }


    .age-line {
        margin-bottom:
            35px;
    }


    .age-popup p {
        font-size:
            22px;
    }


    .telegram-popup {
        padding:
            28px 22px 24px;
    }


    .telegram-popup h2 {
        font-size:
            22px;
    }

}
/* =====================================
   MOVING BOOKMARK BAR
===================================== */

.bookmark-bar {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;

    background: linear-gradient(
        90deg,
        #9f1118,
        #e51d25,
        #c3131b,
        #ed1c24
    );

    padding: 10px 0;
}


.bookmark-track {
    display: inline-block;
    width: max-content;

    animation: bookmarkMove 10s linear infinite;
}


.bookmark-content {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #ffffff;
    font-weight: 700;
}


.pin-icon {
    font-size: 17px;
}


.bookmark-text {
    font-size: 16px;
}


.domain-name {
    background: rgba(0, 0, 0, 0.25);

    padding: 7px 18px;

    border-radius: 25px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


@keyframes bookmarkMove {

    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }

}


/* MOBILE */

@media (max-width: 768px) {

    .bookmark-bar {
        padding: 8px 0;
    }


    .bookmark-text {
        font-size: 14px;
    }


    .domain-name {
        padding: 6px 14px;

        font-size: 14px;
    }

}

/* =====================================
   ABOUT PAGE
===================================== */

.about-page {
    max-width: 900px;

    margin: 0 auto 60px;

    padding: 40px 45px;

    background: #1a1a1d;

    border: 1px solid #303035;

    border-radius: 18px;

    box-sizing: border-box;
}


/* PAGE ICON */

.page-icon {
    width: 64px;

    height: 64px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 25px;

    background: rgba(220, 30, 35, 0.18);

    border-radius: 20px;

    color: #e5262c;

    font-size: 28px;
}


/* MAIN TITLE */

.about-page h1 {
    color: #f1f1f3;

    text-align: center;

    font-size: 32px;

    font-weight: 800;

    margin: 0 0 12px;
}


/* RED LINE UNDER TITLE */

.about-page .info-page-line {
    width: 60px;

    height: 3px;

    margin: 0 auto 32px;

    background: #e5262c;

    border-radius: 5px;
}


/* PARAGRAPHS */

.about-page p {
    color: #a9a9b0;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 26px;
}


.about-page p strong {
    color: #f0f0f2;

    font-weight: 800;
}


/* SECTION HEADINGS */

.about-page h2 {
    color: #f0f0f2;

    font-size: 21px;

    font-weight: 800;

    padding-bottom: 10px;

    margin-top: 30px;

    margin-bottom: 16px;

    border-bottom: 1px solid #37373d;
}


/* LIST */

.about-page ul {
    margin: 0 0 25px;

    padding-left: 22px;
}


.about-page li {
    color: #a9a9b0;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 12px;

    padding-left: 5px;
}


/* CONTACT EMAIL BOX */

.contact-email {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 16px 22px;

    margin-top: 5px;

    color: #eeeeee;

    background: rgba(220, 30, 35, 0.08);

    border: 1px solid rgba(220, 30, 35, 0.55);

    border-radius: 12px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.25s ease;
}


.contact-email i {
    color: #e5262c;
}


.contact-email:hover {
    transform: translateY(-2px);

    background: rgba(220, 30, 35, 0.16);

    box-shadow: 0 8px 25px rgba(220, 30, 35, 0.15);
}



/* =====================================
   MOBILE RESPONSIVE
===================================== */

@media (max-width: 768px) {


    .bookmark-bar {
        padding: 8px 0;
    }


    .bookmark-content {
        padding-right: 50px;

        gap: 8px;
    }


    .bookmark-text {
        font-size: 14px;
    }


    .domain-name {
        padding: 6px 14px;

        font-size: 14px;
    }


    .about-page {
        margin: 0 10px 40px;

        padding: 28px 20px;

        border-radius: 16px;
    }


    .page-icon {
        width: 62px;

        height: 62px;

        margin-bottom: 22px;
    }


    .about-page h1 {
        font-size: 24px;
    }


    .about-page h2 {
        font-size: 19px;
    }


    .about-page p,
    .about-page li {
        font-size: 15px;

        line-height: 1.8;
    }


    .contact-email {
        width: 100%;

        justify-content: center;

        box-sizing: border-box;

        font-size: 14px;
    }

}