/* ========================================================= */
/* BASE STYLES AND VARIABLES */
/* ========================================================= */
:root {
    --nav-bg-dark: transparent;
    --navbar-light-overlay: rgba(151, 71, 255, 0.05);
    --sunz-accent: #3AD533;
    --sunz-accent-rgb: #3AD533;
    --body-bg: #1d1d1d;
    --link-color: rgba(255, 255, 255, 0.9);
    --bs-gray-700: #e6e6e6;
    --bs-search-bg: rgba(184, 184, 184, 0.08);
    --white: #ffffff;
    --back: rgba(83, 83, 83, 0.1);
    --footer-light-overlay: rgba(0, 0, 0, 0.15);
    --link-commom: rgba(0, 0, 0, 0.15);
}

body {
    /* background: radial-gradient(51.95% 51.95% at 50% 48.05%, rgba(17, 16, 16, 1) 15.87%, #198754 100%) !important; */
    background: #27272F;
    font-family: 'FreeSans', sans-serif !important;
}

/* 1. Navbar Container Styling */
header {
    background: #1C1C22;
}

.sunz-navbar {
    padding-top: 16px;
    padding-bottom: 16px;
    box-shadow: none;
    top: 0;
    left: 0;
    width: calc(100% - 10px);
    margin: 0 auto;
    z-index: 1000;
}

@media (min-width: 1200px) {
    .sunz-navbar .container-fluid {
        max-width: 1440px;
    }

    .sunz-navbar::after {
        left: 50px;
        right: 50px;
    }
}

@media (min-width: 992px) {
    .navbar-brand.sunz-logo {
        display: block !important;
    }

    .navbar-collapse .sunz-logo {
        display: none !important;
    }
}

.sunz-logo img {
    height: 30px;
}

.sunz-nav-link {
    color: var(--link-color) !important;
    font-weight: 600;
    transition: color 0.3s, opacity 0.3s;
    font-size: 16px;
    opacity: 0.8;
    padding: 0.5rem 10px !important;
    margin: 0 4px;
    gap: 40px !important;
}

.sunz-nav-link.active,
.sunz-nav-link:hover {
    color: var(--sunz-accent) !important;
    opacity: 1;
}

.navbar-expand-lg .navbar-nav {
    flex-wrap: nowrap;
}

.sunz-search-form {
    width: 300px;
    flex-shrink: 0;
    min-width: 250px;
}

.sunz-search-input {
    background-color: var(--bs-search-bg) !important;
    border: none !important;
    color: #fff !important;
    height: 40px;
    border-radius: 50px !important;
    padding-right: 1.5rem;
    padding-left: 3rem;
    box-shadow: none;
}

.sunz-search-input::placeholder {
    color: var(--bs-gray-700);
    opacity: 1;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--bs-gray-700);
}

@media (max-width: 991.98px) {
    .sunz-navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1050;
        background-color: rgba(15, 15, 25, 0.95) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    body {
        padding-top: 70px;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(180deg, rgba(10, 10, 20, 0.98) 0%, rgba(15, 15, 25, 1) 100%);
        transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        padding: 100px 40px 50px 40px;
        box-shadow: -6px 0 25px rgba(0, 0, 0, 0.6);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-collapse.show .nav-item,
    .navbar-collapse.show .sunz-search-form,
    .navbar-collapse.show .sunz-logo {
        animation: fadeSlideIn 0.5s ease forwards;
    }

    @keyframes fadeSlideIn {
        0% {
            opacity: 0;
            transform: translateX(25px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .navbar-collapse .sunz-logo {
        display: block;
        color: var(--sunz-accent);
        margin-bottom: 40px;
    }

    .navbar-nav {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px;
        width: 100%;
    }

    .sunz-nav-link {
        display: block;
        width: 100%;
        font-size: 20px;
        text-align: left !important;
        padding: 15px 0 !important;
        color: #ddd !important;
        position: relative;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .sunz-nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 1px;
        width: 100%;
        background: rgba(255, 255, 255, 0.15);
        transition: background 0.3s ease;
    }

    .sunz-nav-link:hover {
        color: var(--sunz-accent) !important;
        transform: translateX(5px);
    }

    .sunz-nav-link:hover::after {
        background: var(--sunz-accent);
    }

    .sunz-search-form {
        width: 100%;
        margin-top: auto;
    }

    .navbar-toggler {
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 2001;
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse::before {
        content: "×";
        position: absolute;
        top: 25px;
        right: 30px;
        font-size: 38px;
        color: #fff;
        cursor: pointer;
        font-weight: 300;
        transition: 0.3s;
    }

    .navbar-collapse::before:hover {
        color: var(--sunz-accent);
    }
}

.main-container {
    width: 85%;
    max-width: 1440px;
    margin: auto;
}

/* 2. Welcome Hero-banner */
.welcome-hero-banner {
    padding-top: 3rem; /* reduced from 80px */
    padding-bottom: 3rem; /* added controlled bottom space */
    color: #ffffff;
    min-height: auto; /* remove fixed height */
    position: relative;
    overflow: hidden;
}

.welcome-kort-banner {
    /*padding-bottom: 40px; !* added controlled bottom space *!*/
    color: #ffffff;
    min-height: auto; /* remove fixed height */
    position: relative;
    overflow: hidden;
}

.hero-row {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 15px 40px;
    border-radius: 30px;
    margin-bottom: 0; /* ensure no extra bottom space */
}

.hero-row-kort {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 15px 40px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    margin-bottom: 0; /* ensure no extra bottom space */
    height: 430px;
    position: relative;
    z-index: 1;
}

.hero-row-kort::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* Text Section */
.hero-main-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtext {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

/* Image Section */
.hero-graphic-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kortspel-graphics img {
    /*width: 100%;*/
    height: 100%;
}

/* ---------------------------------------------------- */
/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-main-title {
        font-size: 36px;
        text-align: center;
        padding-top: 10px !important;
    }

    .hero-subtext {
        font-size: 15px;
        max-width: 90%;
        margin: 0 auto 20px auto; /* reduce gap below text */
        text-align: justify;
        padding-right: 0px !important;
    }

    .hero-text-content {
        width: 100%;
        text-align: center;
    }

    .hero-graphic-col {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-row {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 20px 10px 20px;
    }

    .hero-row-kort {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 20px 10px 20px;
    }

    .welcome-hero-banner {
        padding-top: 30px !important;
        padding-bottom: 20px;
        min-height: auto;
    }

    .welcome-kort-banner {
        padding-top: 0px !important;
        padding-bottom: 20px;
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 28px;
        padding-top: 10px !important;
    }

    .hero-subtext {
        font-size: 14px;
        padding-right: 0px !important;
        margin-bottom: 15px !important;
    }

    .hero-text-content {
        width: 100%;
        text-align: center;
    }

    .hero-graphic-col {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero-row {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
    }

    .hero-row-kort {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px;
    }

    .welcome-hero-banner {
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .welcome-kort-banner {
        padding-top: 30px;
        padding-bottom: 10px;
    }
}


/* ========================================================= */
/* HERO SECTION STYLES (CINEMATIC FUSION - HEAVY & CLEAR) */
/* ========================================================= */

.sunz-hero-section {
    padding-bottom: 3rem !important;
}

/* Heading & Subtext styles remain the same... */

.sunz-card-wrapper,
.carousel-item,
.carousel-inner {
    border-radius: 20px !important;
    overflow: hidden !important;
}

/* Smooth transition ke liye (optional) */
.carousel-item img {
    border-radius: 20px !important;
    transition: border-radius 0.3s ease;
}

/* Card Wrapper */
.sunz-card-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.sunz-card-wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Image Style (Filters for Cinematic Fusion) - ENHANCED CLARITY MATCHING SPIDER MAN 2 */
.sunz-card-image {
    height: 450px;
    object-fit: cover;

}

/* Caption (z-index is now 4 to be above both overlays) */
.sunz-card-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: white;
    padding: 1.5rem 2rem;
    font-size: 23px;
    font-weight: 700 !important;
    /*margin-bottom: 10px;*/
    /*letter-spacing: -2%;*/
    /* background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0) 100%
    ); */
    z-index: 4;
}

/* Carousel Indicators (remain the same) */
.sunz-custom-indicators {
    bottom: 15px !important;
    left: 50% !important;
    transform: translateX(-50%);
    margin: 0 !important;
    z-index: 10;
}

.sunz-custom-indicators [data-bs-target] {
    width: 5px;
    height: 5px;
    margin: 0 4px;
    border-radius: 50%;
    background-color: #aaa;
    border: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.sunz-custom-indicators .active {
    background-color: var(--sunz-accent);
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
    .sunz-card-image {
        height: 320px;
    }

    .sunz-hero-heading {
        font-size: 32px;
        text-align: center !important;
    }

    .sunz-hero-subtext {
        text-align: center !important;
    }

    .HBS {
        margin-bottom: 10px;
    }
}

/* ========================================================= */
/* COMMON SECTION STYLES (For: Patiens, Poker, Featured) */
/* ========================================================= */

.common-section {
    padding-bottom: 3rem;

}

.common-head {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--link-commom);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 10px 20px;
    margin: 0 auto 20px auto;
}

.common-heading {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    position: relative;
    margin: 0;
    padding-left: 15px;
}

.common-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: #3AD533;
    border-radius: 5px;
}

/* Main Card Wrapper */
.common-card {
    display: block;
    background: var(--link-commom);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 8px 12px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.common-card:hover {
    box-shadow: 0 0 20px var(--sunz-accent);
    transform: translateY(-5px);
}

.common-img-block {
    overflow: hidden;
    border-radius: 15px;
    /* margin-bottom: 20px; */
    position: relative;
    margin: 5px;
}

.common-img-block::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.common-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    transition: all 0.3s ease;
}

.common-card:hover .common-img {
    transform: scale(1.03);
    filter: brightness(0.9);
}

.common-author-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: var(--white);
    margin: 15px 5px;
    /*text-transform: capitalize;*/
}

.common-author-details {
    display: flex;
    align-items: center;
}

.common-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}

.common-author-name {
    color: var(--white);
    /*font-weight: 700;*/
    font-size: 14px;
}

.common-time {
    color: var(--white);
    /*font-weight: 400;*/
    font-size: 12px;
}

.common-title-bottom {
    font-size: 23px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.4;
    margin: 10px 5px 15px;
    transition: color 0.3s ease;
}

.common-desc {
    font-size: 16px;
    line-height: 125%;
    letter-spacing: -2%;
    font-weight: 400;
    color: white;
    margin: 5px 5px 5px;
}

.common-card:hover .common-title-bottom {
    color: var(--sunz-accent);
}

.common-img-block .common-title-bottom {
    position: absolute;
    bottom: 0;
    font-size: 18px;
    font-weight: 700;
    color: #3AD533;
}

/* Game Card Styles */
.game-card {
    display: flex;
    border: 1px solid white;
    border-radius: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    background: var(--back);
    transition: transform 0.3s ease;
    overflow: hidden;
    z-index: 0;
    margin-bottom: 30px;
    background: #5353531A;
}

/* Gradient Border Only */
.game-card:hover {
    box-shadow: 0 0 20px var(--sunz-accent);
    transform: translateY(-5px);
}

.icon-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    perspective: 600px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(151, 71, 255, 0.06);
    z-index: 0;
}

.icon-wrap img {
    /*width: 55px;*/
    /*height: 55px;*/
    /*object-fit: contain;*/
    position: relative;
    z-index: 1;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.game-card:hover .icon-wrap img {
    transform: rotateY(180deg);
}

.game-label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.game-card:hover .game-label {
    color: var(--sunz-accent-rgb);

}

/* Text Section  */
.text-heading {
    font-size: 22px;
    font-weight: 700;
    color: white;
    position: relative;
    margin: 0;
    padding-left: 15px;
}


.text-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: var(--sunz-accent);
    border-radius: 5px;
}

.text-subtext {
    color: #7C7C7C;
    font-size: 16px;
    line-height: 135%;
    font-weight: 400;
    text-align: justify;
    /*text-transform: capitalize;*/
    margin-bottom: 25px;
    list-style-position: inside;
}

.text-subtexts {
    color: #7C7C7C;
    font-size: 16px;
    line-height: 135%;
    font-weight: 400;
    text-align: justify;
    /*text-transform: capitalize;*/
    margin-bottom: 20px;
    list-style: none;
    padding-left: 0;
}

.text-subtexts li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.text-subtexts li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-image: url('./../../images/dot.png');
    background-size: contain;
    background-repeat: no-repeat;
}

/*  Responsive Fix for smaller screens */
@media (max-width: 992px) {
    .text-subtext,
    .text-subtexts {
        font-size: 16px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .text-subtexts {
        padding-left: 1.2em;
    }

    .full-col-image {
        width: 100%;
        height: auto;
        display: block;

    }

    .col-lg-9.content-column {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/*  Footer section */

.sunz-footer {
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background: #00000026;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.text-sunz-accent {
    font-size: 34.9px;
    font-weight: 600;
    color: var(--sunz-accent);
}

.text-sunz-accent2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--sunz-accent);

}

.sunz-dose-heading {
    font-size: 35px;
    font-weight: 700;
    color: var(--white);
}

.sunz-col-title {
    font-size: 25px;
    font-weight: 700 !important;
    color: #3AD533 !important;
    margin-bottom: 40px;
}

.sunz-list li {
    margin-bottom: 12px;
}

.sunz-footer-link {
    font-size: 17px;
    font-weight: 400;
    color: #7C7C7C !important;
    text-decoration: none;
}

.sunz-social-icon {
    font-size: 1.1rem;
    color: rgba(151, 71, 255, 1);
    opacity: 0.8;
    padding-top: 30px;
}

.sunz-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    padding-top: 30px !important;
    text-align: center;
}

.leading-normal {
    font-size: 16px;
    font-weight: 400;
    /*text-transform: capitalize;*/
    color: white;
}

.copright {
    font-size: 15px;
    font-weight: 400;
    /*text-transform: capitalize;*/
    color: #3AD533;
}

@media (max-width: 576px) {
    .sunz-col-title {
        margin-bottom: 10px;
    }
}

/* Breadcrumbs*/

/* Breadcrumbs */
.vip-kasino-breadcrumbs {
    font-size: 16px;
    color: var(--bs-gray-700);
    /* margin-bottom: 20px; */
    /*text-transform: capitalize;*/
    /* margin-top: 20px; */
}

.vip-kasino-breadcrumbs a {
    color: var(--bs-gray-700);
    text-decoration: none;
    margin-right: 10px;
}

.vip-kasino-breadcrumbs span {
    color: var(--sunz-accent);
    margin-left: 10px;
}

/* Right Column */
.vip-kasino-right-col {
    padding: 0;
    margin: 0;
}

/* Button Section*/
.bottons-section {
    padding: 30px 0;
}

.bottons-section .d-flex {
    flex-wrap: wrap;
    gap: 18px 20px;
    justify-content: start;
}

/* Base Button Style (using your theme variables) */
.custom-styled,
.dropdown-toggle {
    background: linear-gradient(145deg, rgba(83, 83, 83, 0.25), rgba(83, 83, 83, 0.08));
    border: 1px solid var(--footer-light-overlay);
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    padding: 12px 34px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Shiny gradient hover sweep (added) */
.custom-styled::before,
.dropdown-toggle::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0.12) 100%
    );
    transition: all 0.4s ease;
    z-index: 0;
}

.custom-styled:hover::before,
.dropdown-toggle:hover::before {
    left: 100%;
}

/* Subtle gradient glow on hover */
.custom-styled:hover,
.dropdown-toggle:hover {
    background: linear-gradient(145deg, rgba(151, 71, 255, 0.25), rgba(83, 83, 83, 0.15));
    color: var(--sunz-accent-rgb);
    transform: translateY(-3px);
    box-shadow: 0 0 8px rgba(139, 89, 238, 0.4),
    0 0 18px rgba(139, 89, 238, 0.15) inset;
}

.custom-styled.active-page {
    background: #3AD533;
    font-weight: 700;
}

/* Keep dropdown same height as others */
.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background: rgba(29, 29, 29, 0.95);
    border: 1px solid var(--footer-light-overlay);
    border-radius: 12px;
    min-width: 190px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.6);
    /*margin-top: 10px;*/
    z-index: 10;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

/* Dropdown links */
.dropdown-menu a {
    color: var(--link-color);
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(139, 89, 238, 0.15);
    color: var(--sunz-accent-rgb);
}

/* Hover shows dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Fade animation for dropdown */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .bottons-section .d-flex {
        justify-content: center;
    }

    .custom-styled,
    .dropdown-toggle {
        font-size: 15px;
        padding: 10px 28px;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .bottons-section .d-flex {
        justify-content: center;
    }

    .custom-styled,
    .dropdown,
    .dropdown-toggle {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        margin-top: 5px;
        box-shadow: none;
        width: 100%;
    }

    .dropdown-menu a {
        text-align: center;
    }
}

/*Content game section*/
.content-games-section {
    margin-bottom: 20px;
}

.game-card-group {
    background: #00000026;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 25px;
}

.game-group-heading {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.game-link-card {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 8px 0;
    margin-bottom: 5px;
    transition: all 0.3s ease;

}

.game-link-cards {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 8px 0;
    margin-bottom: 5px;
    transition: all 0.3s ease;

}

.game-link-cards img {
    width: 80px;
    height: 80px;

}

.game-link-card:last-child {
    border-bottom: none;
}

.game-thumbs {
    padding: 10px;
    margin-right: 15px;
    transition: filter 0.3s ease;

}

.game-thumb {
    width: 60px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 15px;
    transition: filter 0.3s ease;
}


.game-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.game-link-card:hover .game-title {
    color: var(--sunz-accent-rgb);
}

.game-link-card:hover .game-thumb {
    filter: brightness(1.2);
}

.game-link-cards:hover .game-title {
    color: var(--sunz-accent-rgb);
}

.game-link-cards:hover .game-thumb {
    filter: brightness(1.2);
}

.view-all-wrapper {
    text-align: center;
    margin-top: 10px;
}

.view-all-wrapper a {
    font-size: 12px;
    text-decoration: underline;
    font-weight: 400;
    color: #ffffff;
    /*text-transform: capitalize;*/
    transition: color 0.2s ease;
}

.vip-blog {
    padding-top: 110px;
    padding-bottom: 30px;
}

.blog-titles {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.4;
    /*text-transform: capitalize;*/
    /* margin-bottom: 30px; */
    color: var(--color-text-white);
    /* padding-top: 10px; */


}

.blog-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
    max-width: 80%;
    color: var(--bs-gray-700) !important;
    /*text-transform: capitalize;*/
    text-align: justify;
}

.blog-listing-section {
    color: var(--bs-gray-700);
}

.blog-listing-section .row {
    --bs-gutter-x: 30px !important;
}

/* contact us section */

.contact-us-section {
    padding-bottom: 80px;
    color: #ffffff;
    padding-top: 20px;
}


.contact-form-col {

    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
    padding-left: 80px;
}


.contact-subheading {
    color: var(--white);
    font-size: 22px;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 50px;
}

.contact-main-heading {
    font-size: 54px;
    font-weight: 500;
    line-height: 125%;
    margin-bottom: 30px;
    letter-spacing: -2%;
}

.contact-main-heading .accent-color {
    color: var(--sunz-accent);
    text-shadow: 0 0 5px rgba(176, 255, 0, 0.5);
}

.join-us-info {
    margin-top: 40px;
}

.join-us-email-group {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.email-icon-wrapper {
    background-color: var(--footer-light-overlay);
    padding: 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-right: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.email-icon-wrapper .fas {
    font-size: 28px;
    color: var(--sunz-accent);
    text-shadow: 0 0 2px var(--sunz-accent);
}

.email-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.join-us-label {
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
}

.join-us-email-address {
    color: var(--bs-gray-700);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.join-us-email-group:hover .join-us-email-address {
    color: var(--sunz-accent);
}

.form-control-custom {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--footer-light-overlay);
    border: 1px solid #444444;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control-custom::placeholder {
    color: var(--bs-gray-700);
}

.form-control-custom:focus {
    border-color: var(--sunz-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(83, 83, 83, 0.1);
    background-color: #383838;
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 120px;
}

.btn-send-message {
    background-color: var(--sunz-accent-rgb);
    color: #111111;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 40% !important;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-send-message:hover {
    background-color: var(--sunz-accent);
    transform: translateY(-2px);
}

.contact-text-col {
    align-self: flex-start !important;
}

.contact-us-section .row {
    flex-wrap: wrap;
    overflow: hidden;
}

.contact-form-col form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-form-col input,
.contact-form-col textarea,
.btn-send-message {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .contact-text-col {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .contact-main-heading {
        font-size: 40px;
    }

    .contact-form-col {
        padding: 30px 20px;
        padding-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .contact-form-col {
        padding-right: 0 !important;
        width: 95%;
    }

    .btn-send-message {
        width: 100% !important;
    }
}

@media (max-width: 576px) {
    .contact-main-heading {
        font-size: 32px;
    }

    .contact-form-col {
        padding: 20px 15px;
        padding-right: 0 !important;
    }

    .btn-send-message {
        font-size: 16px;
        padding: 12px 25px;
        width: 100% !important;
    }
}

/* Profile Section*/

.author-profile-card {
    display: flex;
    margin-bottom: 40px;
    background-color: var(--footer-light-overlay);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

/* 2. Author Photo Styling */
.author-profile-photo {
    width: 300px;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 30px;
}

.author-text-content {
    flex-grow: 1;
}

.author-profile-name {
    color: #3AD533;
    font-size: 35px;
    font-weight: 500;
    letter-spacing: -2%;
    /*text-transform: capitalize;*/
    line-height: 125%;
}

.author-profile-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: -2%;
}

.author-bio {
    color: var(--bs-gray-700);
    font-size: 16px;
    line-height: 135%;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: justify;
    letter-spacing: -2%;
    /*text-transform: capitalize;*/
}

/* 4. Articles Count Styling (Bottom Right) */
.author-articles-count {
    font-size: 18px;
    color: var(--white);
    margin-top: 15px;
    /*text-transform: capitalize;*/
}

.count-label {
    font-weight: 400;
}

.count-number {
    color: #3AD533;
    font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .author-profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-profile-photo {
        width: 150px;
        height: 150px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .author-text-content {
        text-align: center;
    }

    .author-bio {
        text-align: justify !important;
    }

    .author-articles-count {
        text-align: center;
    }
}

.blog-section-box {
    background: #00000026;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px !important;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.blog-listing-section {
    color: var(--bs-gray-700);
}

.blog-listing-section .row {
    --bs-gutter-x: 30px !important;
}

.sidebar-col {
    background: transparent;
}

.blog-content-col {
    background: transparent;
}

.sidebar-box {
    border-radius: 30px;
    padding: 20px;
    margin-bottom: 20px !important;
    background: #00000026;
}

.g-c-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: #232323;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid color-mix(in srgb, var(--color-accent) 50%, transparent);
    margin-bottom: 20px;
    width: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.g-c-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 22px rgba(139, 89, 238, 0.25),
    0 0 20px rgba(139, 89, 238, 0.15) inset;
}

/* Image wrapper */
.g-c-image-wrap {
    width: 100%;
    position: relative;
}

/* Image styling */
.g-c-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.g-c-card:hover .g-c-thumb {
    transform: scale(1.08) rotate(0.5deg);
    filter: brightness(1.15);
}

/* Animated gradient overlay */
.g-c-image-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 80%);
    border-radius: 12px;
    pointer-events: none;
    transition: all 0.6s ease;
}

.g-c-card:hover .g-c-image-wrap::after {
    height: 80%;
    background: linear-gradient(to top, rgba(139, 89, 238, 0.25), rgba(0, 0, 0, 0.6) 60%, transparent 100%);
}

/* Title text (on image) */
.g-c-title {
    position: absolute;
    bottom: 15px;
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding: 0 10px;
    word-break: break-word;
    z-index: 2;
    transition: color 0.4s ease, text-shadow 0.4s ease, transform 0.4s ease;
}

.g-c-card:hover .g-c-title {
    color: var(--sunz-accent);
    text-shadow: 0 0 8px rgba(139, 89, 238, 0.8), 0 0 18px rgba(139, 89, 238, 0.4);
    /*transform: translate(-50%, -4px);*/
}

/* Optional subtle shimmer animation */
@keyframes shimmer {
    0% {
        opacity: 0.6;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(0%);
    }
    100% {
        opacity: 0.6;
        transform: translateX(100%);
    }
}

.g-c-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(139, 89, 238, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.g-c-card:hover::before {
    opacity: 1;
    animation: shimmer 1.6s ease-in-out;
}

@media (max-width: 576px) {
    .g-c-title {
        font-size: 18px;
    }
}


/* single blog page */

.blog-img img {
    height: 380px;
    object-fit: cover;
    object-position: center center;
    border-radius: 30px;
    display: block;
}

.blog-titles {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.4;
    /*text-transform: capitalize;*/
    /* margin-bottom: 30px; */
    color: var(--white);
    /* padding-top: 10px; */
}

.blog-meta-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.author-info {
    display: flex;
    align-items: center;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: cover;
    margin-right: 15px;

}

.author-name {
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    margin: 0;
    line-height: 125%;
    letter-spacing: -2%;
    line-height: 1.2;
}

.author-name-s {
    color: var(--sunz-accent);
    font-size: 25px;
    font-weight: 500;
    margin: 0;
    line-height: 125%;
    letter-spacing: -2%;
    line-height: 1.2;
}

.author-title {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: -2%;
    margin: 0;
    font-weight: 400px;
}

@media (max-width: 576px) {
    .blog-titles {
        font-size: 30px;
    }
}

/* 3. Date/Time Details (Bottom Left Alignment) */
.meta-details {
    font-size: 13px;
    line-height: 125%;
    /*text-transform: capitalize;*/
    letter-spacing: -2%;
    display: flex;
    gap: 50px;
    color: #ffffff;
}

.meta-date, .meta-time {
    margin: 0;
}

.accent-text {
    color: var(--sunz-accent-rgb);
    font-weight: 600;
}

/* 4. Share Button (Right Side) */
.share-button {
    background-color: var(--sunz-accent-rgb);
    color: #111111;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.share-button:hover {
    background-color: #90d800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-meta-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-info, .meta-details {
        margin-bottom: 15px;
    }

    .author-details {
        text-align: left;
    }
}

.blog-t {
    font-weight: 700;
    font-size: 45px;
    text-transform: uppercase;
    line-height: 125%;
    color: var(--white);
}

.tc {
    font-size: 16px;
    font-weight: 400;
    line-height: 135%;
    color: var(--bs-gray-700) !important;
    /*text-transform: capitalize;*/
    text-align: justify;
}

.contact-link {
    color: var(--sunz-accent-rgb);
    cursor: pointer;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--sunz-accent);
    text-decoration: underline;
}


.sunz-search-results {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border-radius: 12px;
    padding: 10px 0;
    border: 1px solid black;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
    overflow: hidden;
}

/* For No Result Text */
.sunz-search-results .no-result {
    padding: 12px 16px;
    color: var(--bs-gray-700);
    font-size: 14px;
    text-align: left;
    margin: 0;
}

/* Result Item Styles */
.search-result-item {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.25s ease;
}

.search-result-item:not(:last-child) {
    border-bottom: 1px solid black;
}

.search-result-item:hover {
    background: linear-gradient(90deg, rgba(139, 89, 238, 0.2), rgba(116, 239, 252, 0.1));
    transform: translateX(4px);
    box-shadow: inset 0 0 10px rgba(139, 89, 238, 0.3);
}

.result-title {
    font-size: 15px;
    font-weight: 500;
}

.result-subtitle {
    font-size: 13px;
    color: var(--bs-gray-700);
    margin-top: 2px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#text-section {
    color: var(--bs-gray-700) !important;
}

#text-section img {
    max-width: 100% !important;
}

/*#text-section h2 {*/
/*    display: inline-flex !important;*/
/*    align-items: center !important;*/
/*    justify-content: center !important;*/
/*    background: var(--link-commom) !important;*/
/*    border-radius: 50px !important;*/
/*    padding: 10px 20px !important;*/
/*    margin: 0 auto 20px auto !important;*/
/*}*/

#text-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF !important;
    position: relative;
    margin: 0;
    padding-left: 15px;
    margin-bottom: 20px;
    margin-left: 15px;
    width: fit-content;
    padding-right: 15px;
}

#text-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: #3AD533;
    border-radius: 5px;
}

#text-section h2::after {
    content: "";
    position: absolute;
    left: -17px;
    top: -9px;
    width: 113%;
    height: 165%;
    background: var(--link-commom);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 10px 20px;
    margin: 0 auto 20px auto;
    z-index: -1;
}

#text-section h3 {
    font-size: 1.5rem !important;
    color: white !important;
}

#text-section h4 {
    color: white !important;
}

@media (max-width: 576px) {
    #text-section h2 {
        font-size: 18px;
    }
}

.content-author-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid white;
}

.author-avatar {
    width: 65px;
    border-radius: 15px;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
}

.author-name > a {
    color: #3AD533;
    text-decoration: none;
}

.author-desc {
    color: #ffffff !important;
}

.writer-card {
    background: rgba(83, 83, 83, 0.1);
    border-radius: 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.writer-img-block {
    overflow: hidden;
    border-radius: 28px;
    margin-bottom: 20px;
    /*height: 250px;*/
}

.writer-img {
    width: 100%;
    /*height: 100%;*/
    /*object-fit: cover;*/
    border-radius: 28px;
    display: block;
}

.writer-name {
    color: #9747FF;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

.writer-description {
    color: #7C7C7C;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.view-profile-btn {
    background: #74EFFC;
    color: #000000;
    font-weight: 700;
    font-size: 16px;
    height: 47px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-profile-btn:hover {
    opacity: 0.7;
}

.articles-count-number {
    color: #74EFFC;
}

table td, table th {
    border: 1px solid;
    padding: 5px;
}

table {
    margin-bottom: 10px;
}

.carousel-control-next, .carousel-control-prev {
    width: 6% !important;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 1.5rem !important;
}