/* 1. Fonts  */

@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* =========================================
   CSS Custom Properties (Design Tokens)
   ========================================= */
:root {
    --clr-bg:          #07090E;
    --clr-card:        #0B0F19;
    --clr-card-2:      #111827;
    --clr-border:      #1e2333;
    --clr-pink:        #FF247E;
    --clr-orange:      #FF7033;
    --clr-grad:        linear-gradient(90deg, #FF247E 0%, #FF7033 100%);
    --clr-grad-135:    linear-gradient(135deg, #FF247E 0%, #FF7033 100%);
    --clr-text:        #ffffff;
    --clr-muted:       #8a94a8;
    --clr-muted-2:     #4a5568;
    --radius-sm:       10px;
    --radius-md:       16px;
    --radius-lg:       24px;
    --radius-xl:       32px;
    --shadow-glow:     0 0 30px rgba(255, 36, 126, 0.2);
    --transition:      0.25s ease;
}

/* 2. Body and Some General Stuff */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'League Spartan', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--clr-bg);
    font-family: 'League Spartan', sans-serif;
    color: var(--clr-text);
}

/* =========================================
   Utility classes
   ========================================= */
.grad-text {
    background: var(--clr-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-pink);
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--clr-grad);
    border-radius: 2px;
}

.divider-grad {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-pink) 30%, var(--clr-orange) 70%, transparent);
    border: none;
    margin: 0;
    opacity: 0.35;
}

a {
    text-decoration: none;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 3. Header css */

.header {
    padding: 15px 0;
}

.header .navbar-toggler i {
    color: white;
}

.header .offcanvas {
    background: #0B0F19;
    padding-top: 50px;
}

.header .offcanvas .offcanvas-header button {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
}

.header .offcanvas .navbar-nav .nav-item .nav-link {
    font-size: 20px;
    font-weight: 400;
    color: white;
    padding: 10px 20px;
}

.header .form_area .search_icon button {
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    background: #0B0F19;
    border-radius: 100%;
}

.header .navbar .navbar-brand img {
    width: 250px;
}

.header .navbar .modal .modal-content .modal_input_box {
    position: relative;
}

.header .navbar .modal .modal-content {
    border-radius: 25px;
    border: none;
}

.header .navbar .modal .modal-content .modal_input_box input {
    width: 100%;
    background-color: #0B0F19;
    border: none;
    padding: 17px 20px 17px 45px;
    border-radius: 15px;
    border: none;
    outline: none;
    color: #818181;
}

.header .navbar .modal .modal-content .modal_input_box input::placeholder {
    color: #818181;
}

.header .navbar .modal .modal-content .modal_input_box input:focus-visible {
    outline: none;
}

.header .navbar .modal .modal-content .modal_input_box .search_input_icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .navbar .modal .modal-content .modal_input_box .search_input_icon i {
    font-size: 20px;
    color: #818181;
}

.header .navbar .modal {
    --bs-modal-margin: 6.75rem;
    --tw-backdrop-blur: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: #0f172a40;
}

.header .navbar .modal-dialog {
    max-width: 600px
}

@media (max-width:480px) {
    .header .navbar .modal-dialog {
        min-width: 90%;
        text-align: center;
        margin: 50px auto;
    }

    .header .navbar .navbar-brand {
        width: 150px;
    }
}

/* 4. Hero section css */

.hero_section {
    padding: 25px 0 60px 0;
}

@media (max-width:991px) {
    .hero_section {
        padding: 5px 0 40px 0;
    }
}

@media (max-width:575px) {
    .hero_section {
        padding: 0px 0 30px 0;
    }
}

/* 5. Popular Games section css */

.popular_games_section {
    padding: 0 0 60px 0;
}

.popular_games_section .top_text_area {
    margin-bottom: 40px;
}

.popular_games_section .top_text_area h5 {
    font-size: 25px;
    font-weight: 700;
    line-height: 28px;
    color: #FFF;
}

.popular_games_section .top_text_area .right_side_area a {
    font-size: 16px;
    font-weight: 400;
    color: #464F63;
    line-height: 18px;
    transition: all 0.5s ease;
}

.popular_games_section .top_text_area .right_side_area a:hover {
    color: #FFFFFF;
}

.popular_games_section .popular_games_area .popular_game_box {
    position: relative;
}

.popular_games_section .popular_games_area .popular_game_box .image .popular-img {
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

.popular_games_section .popular_games_area .popular_game_box .game-name {
    padding: 15px 0;
}

.popular_games_section .popular_games_area .popular_game_box .game-name p {
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

@media (max-width:1399px) {
    .popular_games_section {
        padding: 0px 0 15px 0;
    }
}

@media (max-width:991px) {
    .popular_games_section {
        padding: 0;
    }

    .popular_games_section .top_text_area h5 {
        font-size: 22px;
        line-height: 25px;
    }

    .popular_games_section .top_text_area {
        margin-bottom: 30px;
    }
}

@media (max-width:480px) {
    .popular_games_section .popular_games_area .popular_game_box .image .popular-img {
        height: 150px;
    }
}

/* 6. Game Thumbnail Section */

.game_thumbnail_section {
    padding: 25px 0 60px 0;
}

.game_thumbnail_section .top_text h1 {
    font-family: Road Rage;
    font-size: 50px;
    font-weight: 500;
    line-height: 67px;
    color: white;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.game_thumbnail_section .thumbnail_img {
    height: 600px;
    position: relative;
}

.game_thumbnail_section .thumbnail_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.game_thumbnail_section .thumbnail_img .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.game_thumbnail_section .thumbnail_img .play-btn a {
    background: var(--Linear, linear-gradient(90deg, #FF247E 0%, #FF7033 100%));
    color: #fff;
    padding: 12px 40px;
    font-size: 25px;
    font-weight: 500;
    border-radius: 5px;
}

@media (max-width:1199px) {
    .game_thumbnail_section {
        padding: 30px 0 50px 0;
    }

    .game_thumbnail_section .top_text h1 {
        font-size: 40px;
        line-height: 55px;
    }

    .game_thumbnail_section .thumbnail_img {
        height: 500px;
    }
}

@media (max-width:991px) {
    .game_thumbnail_section {
        padding: 5px 0 40px 0;
    }

    .game_thumbnail_section .top_text h1 {
        font-size: 34px;
        line-height: 45px;
    }

    .game_thumbnail_section .thumbnail_img {
        height: 400px;
    }
}

@media (max-width:767px) {
    .game_thumbnail_section .top_text h1 {
        font-size: 26px;
        line-height: 40px;
        margin-bottom: 25px;
    }
}

@media (max-width:575px) {
    .game_thumbnail_section {
        padding: 0px 0 30px 0;
    }

    .game_thumbnail_section .thumbnail_img {
        height: 300px;
    }

    .game_thumbnail_section .thumbnail_img .play-btn a {
        padding: 10px 30px;
        font-size: 18px;
    }

    .game_thumbnail_section iframe {
        height: 400px;
    }
}

@media (max-width:480px) {
    .game_thumbnail_section .top_text h1 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .game_thumbnail_section .thumbnail_img {
        height: 250px;
    }
}

/* 7. Game Description Section */

.game_description {
    padding: 0 0 40px 0;
}

.game_description .left_side .image {
    border-radius: 30px;
}

.game_description .left_side .image img {
    border-radius: 30px;
}

.game_description .right_side_area .description_text {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.game_description .right_side_area .description_text h5,
.game_description .right_side_area .description_text h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 28px;
    color: #FFF;
}

.game_description .right_side_area .text_area p {
    font-size: 18px;
    font-weight: 400;
    color: #FFF;
    line-height: 27px;
    opacity: 0.7;
    padding-left: 20px;
}

.game_description .right_side_area .categories_area {
    padding: 10px 0 10px 20px;
}

.game_description .right_side_area .categories_area .player_list {
    font-size: 16px;
    font-weight: 700;
    line-height: 38px;
    color: #FFF;
    text-align: center;
    display: inline-block;
    background-image: url("../img/game-detail/category_img-1.png");
    background-size: cover;
    width: 133px;
    height: 50px;
}

@media (max-width:480px) {
    .game_description .right_side_area .description_text h5,
    .game_description .right_side_area .description_text h2 {
        font-size: 23px;
        line-height: 25px;
    }

    .game_description .right_side_area .description_text {
        margin-bottom: 5px;
    }

    .game_description {
        padding: 0 0 10px 0;
    }
}

/* 8. Search Section */

.search_section {
    padding: 70px 0;
}

.search_section .search_area {
    padding: 64px;
    background-color: rgb(31 33 42 / 20%);
    border-radius: 40px;
    text-align: center;
}

.search_section .search_area .top_text h4 {
    font-size: 36px;
    font-weight: 600;
    color: #FFFFFF;
    font-family: 'Rubik', sans-serif;
}

.search_section .search_area .top_text p {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 400;
}

.search_section .search_area .top_text p span {
    color: #FFFFFF;
    font-weight: 600;
}

.search_section .search_area .form_group {
    position: relative;
    margin: 0px;
    overflow: hidden;
    width: 900px;
    text-align: center;
    margin: 30px auto 0;
}

.search_section .search_area .form_group .search_input {
    position: relative;
    display: block;
    font-size: 17px;
    line-height: 50px;
    color: #FFFFFF;
    height: 70px;
    width: 100%;
    padding: 10px 65px 10px 60px;
    background-color: #181A20;
    font-weight: 500;
    border-radius: 10px;
    border: none;
    outline: none;
    border-radius: 40px;
}

.search_section .search_area .form_group .search_input::placeholder {
    color: #FFFFFF;
    font-weight: 400;
}

.search_section .search_area .form_group .arrow_btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    padding: 0;
    cursor: pointer;
    border: none;
    background: rgba(226, 18, 33, 0.1);
    border: 1px solid rgba(226, 18, 33, 0.25);
}

.search_section .search_area .form_group .search_btn {
    position: absolute;
    left: 30px;
    top: 48%;
    transform: translateY(-50%);
    border-radius: 50%;
    cursor: auto;
    background: transparent;
    z-index: 9;
    border: none;
    outline: none;
}

/* === Media query === */

@media (max-width: 1199px) {
    .search_section .search_area .form_group {
        width: 800px;
    }
}

@media (max-width: 991px) {
    .search_section {
        padding: 50px 0;
    }

    .search_section .search_area .form_group {
        width: auto;
    }

    .search_section .search_area .form_group .search_input {
        height: 65px;
    }

    .search_section .search_area {
        padding: 50px;
    }
}

@media (max-width: 767px) {
    .search_section .search_area .form_group {
        width: 430px;
    }

    .search_section .search_area .top_text h4 {
        font-size: 30px;
    }

    .search_section .search_area {
        padding: 30px;
    }

    .search_section .search_area .form_group .search_input {
        height: 55px;
    }

    .search_section .search_area .form_group .arrow_btn {
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .search_section .search_area .form_group {
        width: auto;
    }

    .search_section {
        padding: 30px 0;
    }

    .search_section .search_area .form_group .arrow_btn img {
        width: 14px;
    }
}

@media (max-width: 480px) {
    .search_section .search_area .form_group .search_input {
        font-size: 15px;
        height: 55px;
    }

    .search_section .search_area .form_group .arrow_btn {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 425px) {
    .search_section .search_area .top_text h4 {
        font-size: 24px;
    }

    .search_section .search_area .top_text p {
        font-size: 15px;
    }

    .search_section .search_area {
        padding: 30px 20px;
    }

    .search_section .search_area .form_group .arrow_btn {
        width: 35px;
        height: 35px;
    }

    .search_section .search_area .form_group .arrow_btn img {
        width: 15px;
    }

    .search_section .search_area .form_group .search_input {
        font-size: 15px;
        height: 50px;
        padding: 8px 53px 8px 54px;
    }

    .search_section .search_area .form_group .search_btn img {
        width: 16px;
    }
}

/* 9. Search Games Section */

.search_games {
    padding: 0 0 30px 0;
}

.search_games .popular_games_area .popular_game_box {
    margin-bottom: 30px;
}

.search_games .popular_game_box .image .search_game_img {
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

/* 10. Game Play Section */

.game-play-section {
    position: relative;
}

.game-play-section iframe {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
}

.game-play-section .back-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 30px;
    top: 30px;
    z-index: 99;
    background: #0B0F19;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-play-section .back-btn a {
    color: white;
    font-size: 18px;
}

/* Media query */

@media (max-width:575px) {
    .game-play-section .back-btn {
        position: absolute;
        width: 40px;
        height: 40px;
        left: 15px;
        top: 15px;
    }
}

/* 11. Privacy Policy Section */

.privacy-policy-section,
.about-us-section,
.contact-us-section {
    padding: 25px 0;
}

.privacy-policy-section h1 {
    font-size: 40px;
    font-weight: 500;
    color: white;
    font-family: 'Rubik', sans-serif;
}

.privacy-policy-section h3,
.about-us-section h3,
.contact-us-section h3 {
    font-size: 32px;
    font-weight: 500;
    color: white;
    margin: 25px 0 10px 0;
}

.privacy-policy-section p,
.privacy-policy-section ul li,
.about-us-section p,
.contact-us-section p {
    font-size: 18px;
    font-weight: 500;
    color: #d7e3ed;
    font-family: 'Rubik', sans-serif;
}

.privacy-policy-section ul {
    padding-left: 30px;
}

.privacy-policy-section ul li {
    list-style: disc;
}

/* Media query */

@media (max-width:991px) {

    .privacy-policy-section,
    .about-us-section,
    .contact-us-section {
        padding: 12px 0;
    }

    .privacy-policy-section h1 {
        font-size: 30px;
    }

    .privacy-policy-section h3,
    .about-us-section h3,
    .contact-us-section h3 {
        font-size: 28px;
        margin: 15px 0 8px 0;
    }

    .privacy-policy-section p,
    .privacy-policy-section ul li,
    .about-us-section p,
    .contact-us-section p {
        font-size: 17px;
    }
}

@media (max-width:575px) {

    .privacy-policy-section,
    .about-us-section,
    .contact-us-section {
        padding: 6px 0;
    }

    .privacy-policy-section h1 {
        font-size: 22px;
    }

    .privacy-policy-section h3,
    .about-us-section h3,
    .contact-us-section h3 {
        font-size: 26px;
        margin: 10px 0 5px 0;
    }
}

/* =========================================
   12. Sticky Header
   ========================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #07090E;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.header.scrolled {
    background-color: rgba(7, 9, 14, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header .navbar-nav .nav-link.active,
.header .navbar-nav .nav-link:hover {
    color: #FF247E !important;
    transition: color 0.2s ease;
}

/* Mobile search button */
.mobile-search-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    padding: 6px 10px;
    cursor: pointer;
    display: none;
}

@media (max-width: 991px) {
    .mobile-search-btn {
        display: inline-flex;
        align-items: center;
    }
}

/* =========================================
   13. Game Card Hover Overlay
   ========================================= */

.popular_game_box {
    transition: transform 0.25s ease;
}

.popular_game_box:hover {
    transform: translateY(-4px);
}

.popular_game_box .image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.popular_game_box .image .popular-img,
.popular_game_box .image .search_game_img {
    transition: transform 0.35s ease, filter 0.35s ease;
    border-radius: 20px;
}

.popular_game_box:hover .image .popular-img,
.popular_game_box:hover .image .search_game_img {
    transform: scale(1.06);
    filter: brightness(0.55);
}

.popular_game_box .image .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.popular_game_box:hover .image .play-overlay {
    opacity: 1;
}

.popular_game_box .image .play-overlay .play-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(90deg, #FF247E 0%, #FF7033 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 0 20px rgba(255, 36, 126, 0.5);
    transform: scale(0.8);
    transition: transform 0.25s ease;
}

.popular_game_box:hover .image .play-overlay .play-icon {
    transform: scale(1);
}

/* =========================================
   14. Category Quick-Nav Tabs
   ========================================= */

.category-nav {
    padding: 12px 0 0 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.category-nav .cat-tabs {
    display: flex;
    gap: 10px;
    padding-bottom: 8px;
}

.category-nav .cat-tab {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0B0F19;
    color: #aaa;
    border: 1px solid #1e2333;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.category-nav .cat-tab:hover,
.category-nav .cat-tab.active {
    background: linear-gradient(90deg, #FF247E 0%, #FF7033 100%);
    color: #fff;
    border-color: transparent;
}

/* =========================================
   15. Section anchor offset for sticky header
   ========================================= */

.section-anchor {
    scroll-margin-top: 80px;
}

/* =========================================
   16. "See all" link per category
   ========================================= */

.top_text_area {
    justify-content: space-between;
}

.top_text_area .see-all-link {
    font-size: 13px;
    font-weight: 600;
    color: #FF247E;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.top_text_area .see-all-link:hover {
    opacity: 0.75;
}

/* =========================================
   17. Back-to-Top Button
   ========================================= */

.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 998;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF247E 0%, #FF7033 100%);
    color: #fff;
    border: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 36, 126, 0.45);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   18. Site Footer
   ========================================= */

.site-footer {
    background-color: #0B0F19;
    border-top: 1px solid #1e2333;
    padding: 48px 0 0 0;
    margin-top: 40px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.site-footer .footer-brand p {
    font-size: 14px;
    color: #8a94a8;
    margin-top: 14px;
    line-height: 1.6;
    max-width: 280px;
}

.site-footer .footer-links h6 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.site-footer .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer .footer-links ul li a {
    font-size: 14px;
    color: #8a94a8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer .footer-links ul li a:hover {
    color: #FF247E;
}

.site-footer .footer-bottom {
    border-top: 1px solid #1e2333;
    margin-top: 36px;
    padding: 18px 0;
    text-align: center;
}

.site-footer .footer-bottom p {
    font-size: 13px;
    color: #4a5568;
    margin: 0;
}

@media (max-width: 767px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding-top: 32px;
    }
}

/* =========================================
   19. Play Game button upgrade (game-detail)
   ========================================= */

.play-btn a,
.play-btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #FF247E 0%, #FF7033 100%);
    color: #fff !important;
    padding: 14px 44px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(255, 36, 126, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-btn a:hover,
.play-btn-pill:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 40px rgba(255, 36, 126, 0.6);
    color: #fff !important;
}

/* =========================================
   20. Breadcrumb
   ========================================= */

.game-breadcrumb {
    padding: 14px 0 0 0;
}

.game-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.game-breadcrumb .breadcrumb-item a {
    color: #8a94a8;
    text-decoration: none;
    transition: color 0.2s;
}

.game-breadcrumb .breadcrumb-item a:hover {
    color: #FF247E;
}

.game-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.game-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #4a5568;
}

/* =========================================
   21. Section heading upgrade
   ========================================= */

.popular_games_section .top_text_area h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

/* =========================================
   22. Privacy / info section links
   ========================================= */

.privacy-policy-section a,
.about-us-section a,
.contact-us-section a {
    color: #FF247E;
    text-decoration: underline;
}

.privacy-policy-section a:hover,
.about-us-section a:hover,
.contact-us-section a:hover {
    color: #FF7033;
}

/* =========================================
   23. Hero Banner (Home)
   ========================================= */

.hero-banner {
    padding: 60px 0 36px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,36,126,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,112,51,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-banner .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-pink);
    border: 1px solid rgba(255,36,126,0.3);
    background: rgba(255,36,126,0.07);
    border-radius: 30px;
    padding: 6px 14px;
    margin-bottom: 20px;
}

.hero-banner h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 18px;
}

.hero-banner h1 span {
    background: var(--clr-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-banner .hero-sub {
    font-size: 16px;
    color: var(--clr-muted);
    line-height: 1.65;
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-banner .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-banner .btn-primary-grad {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-grad);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(255,36,126,0.35);
    transition: transform var(--transition), box-shadow var(--transition);
}

.hero-banner .btn-primary-grad:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(255,36,126,0.5);
    color: #fff;
}

.hero-banner .btn-outline-light-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition);
}

.hero-banner .btn-outline-light-custom:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}

.hero-banner .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-banner .hero-stat .num {
    font-size: 28px;
    font-weight: 800;
    background: var(--clr-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-banner .hero-stat .lbl {
    font-size: 12px;
    color: var(--clr-muted);
    margin-top: 4px;
}

@media (max-width: 991px) {
    .hero-banner { padding: 40px 0 24px; }
    .hero-banner h1 { font-size: 38px; }
}

@media (max-width: 575px) {
    .hero-banner { padding: 28px 0 18px; }
    .hero-banner h1 { font-size: 28px; }
    .hero-banner .hero-sub { font-size: 14px; }
    .hero-banner .hero-stats { gap: 20px; }
}

/* =========================================
   24. About Us — Feature Cards
   ========================================= */

.about-hero {
    padding: 52px 0 20px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,36,126,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-pink);
    border: 1px solid rgba(255,36,126,0.3);
    background: rgba(255,36,126,0.07);
    border-radius: 30px;
    padding: 5px 14px;
    margin-bottom: 18px;
}

.about-hero h1 {
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}

.about-hero h1 span {
    background: var(--clr-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero .lead-text {
    font-size: 16px;
    color: var(--clr-muted);
    line-height: 1.65;
    max-width: 580px;
}

@media (max-width: 767px) {
    .about-hero h1 { font-size: 30px; }
    .about-hero { padding: 32px 0 12px; }
}

.feature-cards {
    padding: 32px 0 48px;
}

.feature-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    height: 100%;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    border-color: rgba(255,36,126,0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255,36,126,0.1);
}

.feature-card .fc-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(255,36,126,0.1);
    border: 1px solid rgba(255,36,126,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--clr-pink);
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--clr-muted);
    line-height: 1.6;
    margin: 0;
}

.about-content-block {
    padding: 0 0 48px;
}

.about-content-block .info-panel {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.about-content-block .info-panel h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.about-content-block .info-panel p {
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-content-block .info-panel p:last-child { margin-bottom: 0; }

/* =========================================
   25. Contact Us — Styled Cards
   ========================================= */

.contact-hero {
    padding: 52px 0 20px;
    position: relative;
}

.contact-hero h1 {
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
}

.contact-hero h1 span {
    background: var(--clr-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero .lead-text {
    font-size: 16px;
    color: var(--clr-muted);
    line-height: 1.6;
    max-width: 520px;
}

@media (max-width: 767px) {
    .contact-hero h1 { font-size: 30px; }
    .contact-hero { padding: 32px 0 12px; }
}

.contact-cards {
    padding: 28px 0 48px;
}

.contact-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
}

.contact-card .cc-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(255,36,126,0.1);
    border: 1px solid rgba(255,36,126,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--clr-pink);
    margin-bottom: 18px;
}

.contact-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--clr-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.contact-card .email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-pink);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: color var(--transition);
}

.contact-card .email-link:hover { color: var(--clr-orange); }

.dmca-panel {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 48px;
}

.dmca-panel h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.dmca-panel .dmca-desc {
    font-size: 14px;
    color: var(--clr-muted);
    margin-bottom: 24px;
}

.dmca-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.dmca-steps li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.dmca-steps li .step-num {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--clr-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    margin-top: 2px;
}

.dmca-steps li .step-text {
    font-size: 14px;
    color: var(--clr-muted);
    line-height: 1.6;
}

.dmca-panel .dmca-note {
    font-size: 14px;
    color: var(--clr-muted);
    margin: 0;
}

.dmca-panel .dmca-note a {
    color: var(--clr-pink);
    text-decoration: none;
    font-weight: 700;
}

.dmca-panel .dmca-note a:hover { color: var(--clr-orange); }

/* =========================================
   26. Privacy Policy — Section Cards
   ========================================= */

.policy-hero {
    padding: 52px 0 20px;
}

.policy-hero h1 {
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.policy-hero h1 span {
    background: var(--clr-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-hero .eff-date {
    font-size: 13px;
    color: var(--clr-muted-2);
}

@media (max-width: 767px) {
    .policy-hero h1 { font-size: 28px; }
    .policy-hero { padding: 32px 0 12px; }
}

.policy-sections {
    padding: 24px 0 52px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.policy-block {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    transition: border-color var(--transition);
}

.policy-block:hover {
    border-color: rgba(255,36,126,0.25);
}

.policy-block h3 {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-block h3 .pb-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255,36,126,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--clr-pink);
    flex-shrink: 0;
}

.policy-block p,
.policy-block li {
    font-size: 14px;
    color: var(--clr-muted);
    line-height: 1.7;
    margin: 0;
}

.policy-block ul {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
}

.policy-block ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.policy-block ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-pink);
    flex-shrink: 0;
    margin-top: 7px;
}

.policy-block a {
    color: var(--clr-pink);
    text-decoration: none;
    font-weight: 600;
}

.policy-block a:hover { color: var(--clr-orange); }

/* =========================================
   27. Search Page — Enhanced
   ========================================= */

.search-hero-bar {
    padding: 40px 0 20px;
}

.search-hero-bar h1 {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
}

.search-hero-bar h1 span {
    background: var(--clr-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-hero-bar .search-sub {
    font-size: 14px;
    color: var(--clr-muted);
    margin-bottom: 24px;
}

.search-form-wrap {
    position: relative;
    max-width: 600px;
}

.search-form-wrap .search-icon-left {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-muted);
    font-size: 16px;
    pointer-events: none;
}

.search-form-wrap input[type="text"] {
    width: 100%;
    height: 54px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: 50px;
    padding: 0 130px 0 48px;
    font-size: 15px;
    color: #fff;
    outline: none;
    transition: border-color var(--transition);
}

.search-form-wrap input[type="text"]::placeholder {
    color: var(--clr-muted-2);
}

.search-form-wrap input[type="text"]:focus {
    border-color: var(--clr-pink);
}

.search-form-wrap .search-submit {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--clr-grad);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity var(--transition);
}

.search-form-wrap .search-submit:hover { opacity: 0.88; }

/* Empty state */
.search-empty {
    text-align: center;
    padding: 60px 20px;
}

.search-empty .empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,36,126,0.08);
    border: 1px solid rgba(255,36,126,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--clr-muted-2);
    margin: 0 auto 20px;
}

.search-empty h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.search-empty p {
    font-size: 14px;
    color: var(--clr-muted);
    margin: 0;
}

.search-empty p a {
    color: var(--clr-pink);
    text-decoration: none;
    font-weight: 600;
}

.search-results-count {
    font-size: 13px;
    color: var(--clr-muted);
    margin-bottom: 20px;
}

.search-results-count strong {
    color: #fff;
}

/* =========================================
   28. Section divider line
   ========================================= */

.popular_games_section .container + .container {
    padding-top: 12px;
}

/* =========================================
   29. Game name gradient on hover
   ========================================= */

.popular_game_box:hover .game-name p {
    background: var(--clr-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.2s ease;
}

/* =========================================
   30. Home Content Section (Why ThopGames)
   ========================================= */

.home-content-section {
    padding: 52px 0;
    border-top: 1px solid var(--clr-border);
}

.hcs-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.hcs-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.hcs-text p {
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.hcs-text p:last-child { margin-bottom: 0; }

.hcs-text a {
    color: var(--clr-pink);
    text-decoration: none;
    font-weight: 600;
}

.hcs-text a:hover { color: var(--clr-orange); }

.hcs-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hcs-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    transition: border-color var(--transition);
}

.hcs-card:hover { border-color: rgba(255,36,126,0.3); }

.hcs-card i {
    font-size: 20px;
    color: var(--clr-pink);
    flex-shrink: 0;
    margin-top: 2px;
}

.hcs-card div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hcs-card strong {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.hcs-card span {
    font-size: 13px;
    color: var(--clr-muted);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .hcs-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 575px) {
    .home-content-section { padding: 36px 0; }
    .hcs-text h2 { font-size: 22px; }
}

/* =========================================
   31. Home FAQ Section
   ========================================= */

.home-faq-section {
    padding: 52px 0;
    border-top: 1px solid var(--clr-border);
}

.hfaq-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.faq-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    transition: border-color var(--transition);
}

.faq-item:hover { border-color: rgba(255,36,126,0.25); }

.faq-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.35;
}

.faq-item p {
    font-size: 14px;
    color: var(--clr-muted);
    line-height: 1.7;
    margin: 0;
}

.faq-item a {
    color: var(--clr-pink);
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover { color: var(--clr-orange); }

@media (max-width: 767px) {
    .faq-grid { grid-template-columns: 1fr; }
    .home-faq-section { padding: 36px 0; }
    .hfaq-title { font-size: 22px; }
}

/* =========================================
   32. Footer disclaimer & extra links
   ========================================= */

.site-footer .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

.footer-disclaimer {
    font-size: 12px !important;
    color: var(--clr-muted-2) !important;
    margin-top: 6px !important;
}

.footer-disclaimer a {
    color: var(--clr-pink);
    text-decoration: none;
}

.site-footer .footer-bottom a {
    color: var(--clr-muted-2);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer .footer-bottom a:hover { color: var(--clr-pink); }

@media (max-width: 991px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .site-footer .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   COMPREHENSIVE MOBILE RESPONSIVE SYSTEM
   Covers: 320px · 360px · 400px · 480px · 575px · 767px · 991px
   ================================================================= */

/* ── 1. Global base ─────────────────────────────────────────────── */

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

img {
    max-width: 100%;
}

/* ── 2. Navbar / Header ─────────────────────────────────────────── */

/* Remove Bootstrap's default toggler border and outline */
.navbar-toggler {
    border: none !important;
    padding: 4px 6px;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/* Logo */
.site-logo {
    width: 200px;
    display: block;
}

@media (max-width: 991px) {
    .site-logo { width: 170px; }
}

@media (max-width: 400px) {
    .site-logo { width: 140px; }
    .header { padding: 10px 0; }
}

/* Offcanvas body scrollable for many nav links */
.header .offcanvas .offcanvas-body {
    overflow-y: auto;
}

/* Offcanvas nav item font — slightly smaller so all items fit */
@media (max-width: 400px) {
    .header .offcanvas .navbar-nav .nav-item .nav-link {
        font-size: 17px;
        padding: 8px 18px;
    }
}

/* ── 3. Hero Banner (Home) ──────────────────────────────────────── */

@media (max-width: 480px) {
    .hero-banner h1 { font-size: 26px; }
    .hero-banner .hero-eyebrow { font-size: 11px; }
    .hero-banner .hero-sub { font-size: 13px; margin-bottom: 22px; }
}

@media (max-width: 400px) {
    .hero-banner { padding: 22px 0 14px; }
    .hero-banner h1 { font-size: 22px; }
    .hero-banner .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-banner .btn-primary-grad,
    .hero-banner .btn-outline-light-custom {
        justify-content: center;
        text-align: center;
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    .hero-banner .hero-stats { gap: 14px; flex-wrap: wrap; }
    .hero-banner .hero-stat .num { font-size: 22px; }
}

/* ── 4. Category Quick-Nav ──────────────────────────────────────── */

@media (max-width: 400px) {
    .category-nav .cat-tab {
        font-size: 12px;
        padding: 6px 12px;
        gap: 4px;
    }
}

/* ── 5. Section headings ────────────────────────────────────────── */

@media (max-width: 400px) {
    .popular_games_section .top_text_area h2 { font-size: 17px; }
    .top_text_area .see-all-link { font-size: 11px; }
}

/* ── 6. Game Cards ──────────────────────────────────────────────── */

/* Always show a subtle play badge on touch devices */
@media (hover: none) {
    .popular_game_box .image .play-overlay {
        opacity: 1;
    }
    .popular_game_box .image .play-overlay .play-icon {
        width: 38px;
        height: 38px;
        font-size: 13px;
        transform: scale(1);
        background: rgba(255, 36, 126, 0.85);
        box-shadow: 0 0 10px rgba(255, 36, 126, 0.4);
    }
    /* Keep image dark only on tap (active), not permanent */
    .popular_game_box:active .image .popular-img,
    .popular_game_box:active .image .search_game_img {
        filter: brightness(0.55);
    }
    .popular_game_box .image .popular-img,
    .popular_game_box .image .search_game_img {
        filter: brightness(0.75);
    }
}

/* Game name: prevent overflow, keep single line */
.popular_game_box .game-name p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 4px;
}

@media (max-width: 400px) {
    .popular_games_section .popular_games_area .popular_game_box .image .popular-img {
        height: 120px;
    }
    .popular_games_section .popular_games_area .popular_game_box .game-name p {
        font-size: 13px;
    }
    .popular_game_box .image .play-overlay .play-icon {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
}

/* ── 7. Game Detail Thumbnail ───────────────────────────────────── */

@media (max-width: 400px) {
    .game_thumbnail_section .thumbnail_img { height: 200px; }
    .game_thumbnail_section .top_text h1 { font-size: 18px; }
    .play-btn a,
    .play-btn-pill {
        font-size: 15px;
        padding: 10px 22px;
        gap: 6px;
    }
}

/* ── 8. About Hero ──────────────────────────────────────────────── */

@media (max-width: 575px) {
    .about-hero h1 { font-size: 26px; }
    .about-hero .lead-text { font-size: 14px; }
    .about-hero { padding: 28px 0 10px; }
}

@media (max-width: 400px) {
    .about-hero h1 { font-size: 22px; }
    .about-hero { padding: 20px 0 8px; }
}

/* Feature cards: reduce padding on mobile */
@media (max-width: 575px) {
    .feature-card { padding: 20px 18px; border-radius: var(--radius-md); }
    .feature-card .fc-icon { width: 44px; height: 44px; font-size: 18px; margin-bottom: 14px; }
    .feature-card h3 { font-size: 15px; }
    .feature-card p { font-size: 13px; }
}

/* About content info panels */
@media (max-width: 575px) {
    .about-content-block .info-panel { padding: 20px 18px; border-radius: var(--radius-md); }
    .about-content-block .info-panel h2 { font-size: 18px; }
    .about-content-block .info-panel p { font-size: 13px; }
    .about-content-block { padding: 0 0 28px; }
    .feature-cards { padding: 20px 0 28px; }
}

/* ── 9. Contact Hero ────────────────────────────────────────────── */

@media (max-width: 575px) {
    .contact-hero h1 { font-size: 26px; }
    .contact-hero .lead-text { font-size: 14px; }
    .contact-hero { padding: 28px 0 10px; }
}

@media (max-width: 400px) {
    .contact-hero h1 { font-size: 22px; }
    .contact-hero { padding: 20px 0 8px; }
}

/* Contact cards */
@media (max-width: 575px) {
    .contact-card { padding: 20px 18px; border-radius: var(--radius-md); }
    .contact-card .cc-icon { width: 44px; height: 44px; font-size: 18px; margin-bottom: 14px; }
    .contact-card h3 { font-size: 15px; }
    .contact-card p { font-size: 13px; }
    .contact-cards { padding: 20px 0 28px; }
}

/* DMCA panel */
@media (max-width: 575px) {
    .dmca-panel { padding: 20px 18px; border-radius: var(--radius-md); }
    .dmca-panel h2 { font-size: 18px; }
    .dmca-panel .dmca-desc { font-size: 13px; }
    .dmca-steps li { gap: 10px; }
    .dmca-steps li .step-num { width: 26px; height: 26px; font-size: 11px; }
    .dmca-steps li .step-text { font-size: 13px; }
    .dmca-panel .dmca-note { font-size: 13px; }
}

/* ── 10. Privacy Policy Hero ────────────────────────────────────── */

@media (max-width: 575px) {
    .policy-hero h1 { font-size: 26px; }
    .policy-hero { padding: 28px 0 12px; }
    .policy-hero .eff-date { font-size: 12px; }
}

@media (max-width: 400px) {
    .policy-hero h1 { font-size: 22px; }
    .policy-hero { padding: 20px 0 8px; }
}

/* Policy blocks */
@media (max-width: 575px) {
    .policy-block { padding: 16px 16px; border-radius: var(--radius-sm); }
    .policy-block h3 { font-size: 14px; gap: 8px; }
    .policy-block h3 .pb-icon { width: 24px; height: 24px; font-size: 11px; }
    .policy-block p,
    .policy-block li { font-size: 13px; }
    .policy-sections { gap: 10px; padding: 16px 0 36px; }
}

/* ── 11. Search Page ────────────────────────────────────────────── */

@media (max-width: 575px) {
    .search-hero-bar { padding: 24px 0 14px; }
    .search-hero-bar h1 { font-size: 24px; margin-bottom: 4px; }
    .search-hero-bar .search-sub { font-size: 13px; margin-bottom: 16px; }
    .search-form-wrap { max-width: 100%; }
    .search-form-wrap input[type="text"] {
        height: 48px;
        font-size: 14px;
        padding: 0 96px 0 40px;
    }
    .search-form-wrap .search-icon-left { font-size: 14px; left: 14px; }
    .search-form-wrap .search-submit {
        padding: 8px 14px;
        font-size: 13px;
        right: 4px;
    }
}

@media (max-width: 400px) {
    .search-hero-bar h1 { font-size: 20px; }
    .search-form-wrap input[type="text"] { height: 44px; font-size: 13px; }
}

/* Search empty state */
@media (max-width: 575px) {
    .search-empty { padding: 40px 16px; }
    .search-empty .empty-icon { width: 64px; height: 64px; font-size: 24px; margin-bottom: 14px; }
    .search-empty h3 { font-size: 17px; }
    .search-empty p { font-size: 13px; }
}

/* ── 12. Home Content Section ───────────────────────────────────── */

@media (max-width: 575px) {
    .home-content-section { padding: 32px 0; }
    .hcs-text h2 { font-size: 20px; }
    .hcs-text p { font-size: 14px; }
    .hcs-card { padding: 14px 16px; border-radius: var(--radius-sm); }
    .hcs-card i { font-size: 17px; }
    .hcs-card strong { font-size: 13px; }
    .hcs-card span { font-size: 12px; }
}

/* ── 13. Home FAQ Section ───────────────────────────────────────── */

@media (max-width: 575px) {
    .home-faq-section { padding: 32px 0; }
    .hfaq-title { font-size: 20px; margin-bottom: 18px; }
    .faq-item { padding: 16px 18px; border-radius: var(--radius-sm); }
    .faq-item h3 { font-size: 14px; }
    .faq-item p { font-size: 13px; }
}

@media (max-width: 400px) {
    .faq-item { padding: 14px 14px; }
    .faq-item h3 { font-size: 13px; }
}

/* ── 14. Footer ─────────────────────────────────────────────────── */

@media (max-width: 991px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .site-footer .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .site-footer { padding-top: 28px; margin-top: 24px; }
    .site-footer .footer-brand p,
    .footer-disclaimer { font-size: 13px !important; }
}

@media (max-width: 480px) {
    .site-footer .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
    .site-footer .footer-links h6 { font-size: 12px; }
    .site-footer .footer-links ul li a { font-size: 13px; }
    .site-footer .footer-bottom p { font-size: 11px; }
}

/* ── 15. Back to top button — clear of mobile ad bars ──────────── */

@media (max-width: 575px) {
    .back-to-top {
        bottom: 20px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* ── 16. Privacy / info text sections ──────────────────────────── */

@media (max-width: 575px) {
    .privacy-policy-section h1,
    .about-us-section h1,
    .contact-us-section h1 { font-size: 22px; }

    .privacy-policy-section h3,
    .about-us-section h3,
    .contact-us-section h3 { font-size: 18px; }

    .privacy-policy-section p,
    .privacy-policy-section ul li,
    .about-us-section p,
    .contact-us-section p { font-size: 14px; }
}

/* ── 17. Breadcrumb ─────────────────────────────────────────────── */

@media (max-width: 575px) {
    .game-breadcrumb { padding: 10px 0 0; }
    .game-breadcrumb .breadcrumb { font-size: 12px; }
}

/* ── 18. Game description section ──────────────────────────────── */

@media (max-width: 575px) {
    .game_description .right_side_area .description_text h2 { font-size: 18px; }
    .game_description .right_side_area .text_area p { font-size: 15px; padding-left: 12px; }
}

/* ── 19. Moregame / all-games page heading ──────────────────────── */

@media (max-width: 575px) {
    .moregame-hero h1 { font-size: 24px; }
}

/* ── 20. General container padding on tiny screens ──────────────── */

@media (max-width: 360px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .hero-banner h1 { font-size: 20px; }
    .hero-banner .hero-actions { gap: 6px; }
}