/* ========================================================= */
/* BASE STYLES AND VARIABLES */
/* ========================================================= */
:root {
    --nav-bg-dark: transparent;
    --navbar-light-overlay: rgba(255, 255, 255, 0.05);
    --sunz-accent: #ccff33;
    --sunz-accent-rgb: 204, 255, 0;
    --body-bg: #1d1d1d;
    --link-color: rgba(255, 255, 255, 0.9);
    --bs-gray-700: #b0b0b0;
    --bs-search-bg: #424242;
    --white: #ffffff;
    --footer-light-overlay: rgba(255, 255, 255, 0.05);
}

body {
    background: url('./../../images/BG.png') no-repeat center center/cover !important;
    font-family: 'Codec Pro', sans-serif !important;

}

body.overlay-page::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./../../images/overlay-image.png') no-repeat center center/contain;
    opacity: 0.8;
    z-index: 0;
}

.main-container {
    width: 90%;
    max-width: 1440px
}

/* 1. Navbar Container Styling */
.sunz-navbar {
    background-color: transparent !important;
    padding-top: 16px;
    padding-bottom: 16px;
    border-radius: 0 0 60px 60px !important;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.sunz-navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--navbar-light-overlay);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-radius: inherit;
    z-index: -1;
}

/* Gradient Divider/Stroke Line (No changes needed) */
.sunz-navbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
            to right,
            var(--body-bg) 0%,
            var(--sunz-accent) 50%,
            var(--body-bg) 100%
    );
    left: 0;
    right: 0;
    border-radius: 0;
    z-index: 1000;
}

.sunz-logo {
    color: var(--sunz-accent) !important;
    font-size: 35px;
    font-weight: 600;
    font-weight: bolder;
    letter-spacing: -2%;
}

.sunz-nav-link {
    color: var(--link-color) !important;
    font-weight: 500;
    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 {
    color: var(--sunz-accent) !important;
    opacity: 1;
}

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

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

/* 4. Search Form Styling */
.sunz-search-form {
    width: 300px;
    flex-shrink: 0;
    min-width: 250px;
}

.sunz-search-input {
    border: none !important;
    color: #777777 !important;
    height: 50px;
    border-radius: 50px !important;
    padding-right: 1.5rem;
    padding-left: 3rem;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
}

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

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

/* ========================================================= */
/* MEDIA QUERIES FOR RESPONSIVENESS */
/* ========================================================= */

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

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

}

@media (max-width: 991.98px) {
    /* Makes the navbar square */
    .sunz-navbar {
        border-radius: 0 !important;
    }

    /* Search form full width in collapsed menu */
    .sunz-search-form {
        width: 100%;
        margin-top: 1rem;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Nav links should stack normally on collapse */
    .navbar-expand-lg .navbar-nav {
        flex-wrap: wrap;
    }

    .sunz-nav-link {
        padding: 0.5rem 1rem !important;
        margin: 0;
    }

    /* Gradient Divider full width on mobile */
    .sunz-navbar::after {
        left: 0;
        right: 0;
    }

    #sunzNavContent {
        padding: 10px 0;
    }
}

/* Large Desktop Styling (Min-width: 1200px) */
@media (min-width: 1200px) {
    .sunz-hero-section .container-fluid {
        max-width: 1440px;
        padding-left: 50px;
        padding-right: 50px;
    }
}

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

.sunz-hero-section {
    padding-top: 5rem !important;
    padding-bottom: 1rem !important;
}

/* Heading & Subtext styles remain the same... */
.sunz-hero-heading {
    color: #fff;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 50px;
}

.text-accent-glow {
    color: var(--sunz-accent);
}

.sunz-hero-subtext {
    color: var(--bs-gray-700);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    text-transform: capitalize;
    padding-right: 30px !important;
    text-align: justify;
}

.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);
}

/* Image Style (Filters for Cinematic Fusion) - ENHANCED CLARITY MATCHING SPIDER MAN 2 */
.sunz-card-image {
    height: 500px;
    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: var(--sunz-accent);
    padding: 1.5rem 2rem;
    font-size: 23px;
    font-weight: 400 !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: 30px;
}

/* Section Heading */
.common-heading {
    font-size: 25px;
    font-weight: 600;
    color: white;
    margin-top: 30px !important;
    margin-bottom: 15px;
    padding-left: 15px;
    position: relative;
}

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

/* Image + Overlay Container */
.common-img-block {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s, transform 0.3s;
}


/* Dark Overlay */
.common-img-block::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    border-radius: 12px;
}

/* Image Filters & Dimensions */
.common-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    /*filter: grayscale(100%) brightness(0.7) contrast(1.1);*/
    transition: filter 0.3s;
}

/* Title Overlay */
.common-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: rgba(var(--sunz-accent-rgb), 0.5);
    font-size: 19px;
    font-weight: 500;
    padding: 15px 15px 20px 15px;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0) 100%
    );
    transition: color 0.3s ease;
    z-index: 2;
}

.blog:hover .common-title-overlay {
    color: var(--sunz-accent);
}

/* Author Info */
.common-author-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: 10px !important;
    padding: 0 5px;
}

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

.common-author-name {
    color: #777777;
    font-weight: 500;
    margin-right: 5px;
}

.common-time {
    color: #52611f;
    font-weight: 400;
}

.common-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    border: 2px solid var(--sunz-accent);
}

/* Bottom Title */
.common-title-bottom {
    font-size: 18px;
    font-weight: 200;
    color: white;
    line-height: 1.4;
    display: block;
    text-decoration: none;
    padding: 0 5px;
}


/* Styling for the card container */
.game-card {
    background-color: #2c2c2c;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin: 10px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: block;
    height: 203px;
    border: 1px solid rgba(203, 254, 28, 0.15);
}

/* Hover effect for the card */
.game-card:hover {
    background-color: #3d3d3d;
}

/* Text styling */
.game-label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding-top: 30px;
}

.text-subtext,
#Text-section,
#Text-section p,
#Text-section div,
#Text-section li,
Text-section a,
#Text-section span {
    color: #777 !important;
    font-size: 20px;
    line-height: 1.5 !important;
    font-weight: 400 !important;
    text-align: justify !important;
    text-transform: capitalize !important;
    margin-bottom: 25px !important;
    /*list-style-position: inside !important;*/
}

.text-heading,
#Text-section h1,
#Text-section h2,
#Text-section h3,
#Text-section h4,
#Text-section h5,
#Text-section h6 {
    font-size: 25px !important;
    font-weight: 600 !important;
    color: white !important;
    margin-bottom: 20px !important;
    padding-left: 15px !important;
    position: relative !important;
    line-height: 125% !important;
}

#Text-section li::marker {
    color: #CBFE1C;
}

/* Vertical Line Accent */
.text-heading::before, #Text-section h2::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 5px !important;
    height: 70% !important;
    background-color: var(--sunz-accent) !important;
    border-radius: 5px !important;
}

.text-subtexts {
    color: #777;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    text-align: justify;
    text-transform: capitalize;
    margin-bottom: 20px;
    list-style: disc;
    padding-left: 1.8em;

}

.text-subtexts li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 0.5em;
    text-indent: 0px;
    text-align: justify;
    text-transform: capitalize;
}

.text-subtexts li::marker {
    color: #cbfe1c;
    font-size: 20px;
}

/*  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;
    }
}

.app-footer {
    background: #121212;
    padding-top: 50px;
    padding-bottom: 20px;
}


.footer-background-wrapper {

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(60px);
    padding-top: 40px;
    padding-bottom: 40px;
}

.color-green {
    color: #cbfe1c;
}

.color-grey {
    color: #777777;
}

.color-white {
    color: #ffffff;
}

.sunz-footer {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    padding-top: 50px;
    padding-bottom: 20px;
}

.sunz-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--footer-light-overlay);
    z-index: -1;
}

/* 3. Footer Divider/Stroke Line */
.footer-divider {
    height: 1px;
    background: linear-gradient(
            to right,
            transparent 0%,
            var(--sunz-accent) 45%,
            var(--sunz-accent) 55%,
            transparent 100%
    );
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 0;
}


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

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

}

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

.sunz-col-title {
    font-size: 25px;
    font-weight: 500 !important;
    color: var(--white) !important;
    margin-bottom: 40px;
}

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

.sunz-footer-link {
    font-size: 17px;
    font-weight: 400;
    color: var(--bs-gray-700) !important;
    text-decoration: none;
}

.sunz-social-icon {
    font-size: 1.1rem;
    color: var(--bs-gray-700) !important;
    opacity: 0.8;
}

.sunz-bottom-row {
    padding-top: 50px !important;
}

.leading-normal {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--bs-gray-700);
}

/* Kortspel page CSS  */
/* 1. Main Section Styling: Background Gradient aur Padding */

:root {
    --color-black: #000000;
    --color-dark-green: #1A3E1A;
    --color-text-white: #ffffff;
    --color-accent: #B0FF00;
}

/* ===== VIP HERO SECTION ===== */
#kortspel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 100%;
    height: 100%;
    background-image: url(./../../images/jackle.png);
    background-repeat: no-repeat;
    background-size: 24%;
}

.vip-hero {
    background: linear-gradient(to right,
    var(--color-black) 30%,
    var(--color-dark-green) 70%
    );
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--color-text-white);
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    padding-top: 40px;
    z-index: 1;
}

/*.vip-left-col {*/
/*    background-image: url('./../../images/jackle.png');*/
/*    background-repeat: no-repeat;*/
/*    min-height: 465px;*/
/*    border-radius: 12px;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    background-size: 280px;*/
/*}*/

.vip-breadcrumbs {
    font-size: 16px;
    color: #777777;
    margin-bottom: 30px;
    text-transform: capitalize;

}

.vip-breadcrumbs a {
    color: #777777;
    text-decoration: none;
}

.vip-breadcrumbs span {
    color: var(--color-accent);
}

.vip-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize;
    margin-bottom: 40px;
    color: var(--color-text-white);
    padding-top: 100px;
}

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

.vip-right-col {
    padding: 0;
    margin: 0;
    margin-top: -50px;
}

@media (max-width: 767px) {
    .vip-hero {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }

    .vip-right-col {
        display: none !important;
    }

    .vip-left-col {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        background-image: none !important;
    }

    .vip-breadcrumbs {
        margin-top: 5px !important;
        margin-bottom: 10px !important;
    }

    .vip-title {
        padding-top: 10px !important;
        margin-bottom: 10px !important;
        font-size: 30px !important;
    }

}

@media (min-width: 768px) and (max-width: 1023px) {
    .vip-hero {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 80px !important;
    }

    .vip-right-col {
        display: none !important;
    }

    .vip-right-col img {
        max-width: 70%;
    }

    .vip-left-col {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        background-image: none !important;
    }

    .vip-breadcrumbs {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .vip-title {
        padding-top: 20px !important;
        margin-bottom: 15px !important;
        font-size: 36px !important;
    }

}

@media (min-width: 1024px) and (max-width: 1200px) {
    .vip-hero {
        min-height: 470px;
    }

    .vip-right-col {
        margin-top: -20px !important;
    }

    .vip-breadcrumbs {
        margin-top: 30px !important;
        margin-bottom: 15px !important;
    }

    .vip-title {
        padding-top: 40px !important;
        margin-bottom: 20px !important;
    }

    .vip-left-col {
        min-height: 400px !important;
        background-size: 220px;
    }
}

/* ===== VIP HERO SECTION Poker===== */
.vip-poker {
    background: linear-gradient(to right,
    var(--color-black) 30%,
    var(--color-dark-green) 70%
    );
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--color-text-white);
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    padding-top: 40px;
    z-index: 1;
}

.vip-poker-left-col {
    background-repeat: no-repeat;
    min-height: 465px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.vip-poker-breadcrumbs {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    text-transform: capitalize;
    margin-top: 30px;

}

.vip-poker-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.vip-poker-breadcrumbs span {
    color: var(--color-accent);
}

.vip-poker-title {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: capitalize;
    margin-bottom: 40px;
    color: var(--color-text-white);
    padding-top: 100px;
}

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

.vip-poker-right-col {
    padding: 0;
    margin: 0;
    margin-top: -50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 767px) {
    .vip-poker {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }

    .vip-poker-right-col {
        display: none !important;
    }

    .vip-poker-left-col {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
    }

    .vip-poker-breadcrumbs {
        margin-top: 5px !important;
        margin-bottom: 10px !important;
    }

    .vip-poker-title {
        padding-top: 10px !important;
        margin-bottom: 10px !important;
        font-size: 30px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .vip-poker {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 80px !important;
    }

    .vip-poker-right-col {
        display: none !important;
    }

    .vip-poker-right-col img {
        max-width: 70%;
    }

    .vip-poker-left-col {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
    }

    .vip-poker-breadcrumbs {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .vip-poker-title {
        padding-top: 20px !important;
        margin-bottom: 15px !important;
        font-size: 36px !important;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .vip-poker {
        min-height: 470px;
        padding-top: 80px !important;
    }

    .vip-poker-right-col {
        margin-top: 0 !important;
    }

    .vip-poker-right-col img {
        width: 100%;
    }

    .vip-poker-breadcrumbs {
        margin-top: 20px !important;
        margin-bottom: 15px !important;
    }

    .vip-poker-title {
        padding-top: 40px !important;
        margin-bottom: 20px !important;
    }

    .vip-poker-left-col {
        min-height: 400px !important;
    }
}

/* ===== VIP HERO SECTION patience===== */
.vip-patience {
    background: linear-gradient(to right,
    var(--color-black) 30%,
    var(--color-dark-green) 70%
    );
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--color-text-white);
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    padding-top: 40px;
    z-index: 1;
}

.vip-patience-left-col {
    background-repeat: no-repeat;
    min-height: 465px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.vip-patience-breadcrumbs {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    text-transform: capitalize;
    margin-top: 30px;

}

.vip-patience-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.vip-patience-breadcrumbs span {
    color: var(--color-accent);
}

.vip-patience-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize;
    margin-bottom: 40px;
    color: var(--color-text-white);
    padding-top: 100px;
}

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

.vip-patience-right-col {
    padding: 0;
    margin: 0;
    margin-top: -50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 767px) {
    .vip-patience {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }

    .vip-patience-right-col {
        display: none !important;
    }

    .vip-patience-left-col {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
    }

    .vip-patience-breadcrumbs {
        margin-top: 5px !important;
        margin-bottom: 10px !important;
    }

    .vip-patience-title {
        padding-top: 10px !important;
        margin-bottom: 10px !important;
        font-size: 30px !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .vip-patience {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 80px !important;
    }

    .vip-patience-right-col {
        display: none !important;
    }

    .vip-patience-right-col img {
        max-width: 70%;
    }

    .vip-patience-left-col {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
    }

    .vip-patience-breadcrumbs {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .vip-patience-title {
        padding-top: 20px !important;
        margin-bottom: 15px !important;
        font-size: 36px !important;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .vip-patience {
        min-height: 470px;
    }

    .vip-patience-right-col {
        margin-top: -50px !important;
    }

    .vip-patience-breadcrumbs {
        margin-bottom: 15px !important;
    }

    .vip-patience-title {
        padding-top: 40px !important;
        margin-bottom: 20px !important;
    }

    .vip-patience-left-col {
        min-height: 470px !important;
    }
}

/*  MAIN DESKTOP STYLES */
.vip-harpan {
    background: linear-gradient(to right,
    var(--color-black) 30%,
    var(--color-dark-green) 70%
    );
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--color-text-white);
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    padding-top: 40px;
    z-index: 1;
}

.vip-harpan-left-col {
    background-repeat: no-repeat;
    min-height: 465px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.vip-harpan-breadcrumbs {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    text-transform: capitalize;
    margin-top: 30px;
}

.vip-harpan-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.vip-harpan-breadcrumbs span {
    color: var(--color-accent);
}

.vip-harpan-title {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: capitalize;
    margin-bottom: 40px;
    color: var(--color-text-white);
    padding-top: 100px;
}

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

.vip-harpan-right-col {
    padding: 0;
    margin: 0;
}

/*  MOBILE (max-width: 767px) */
@media (max-width: 767px) {
    .vip-harpan {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }

    .vip-harpan-right-col {
        display: none !important; /* 👈 hide image column */
    }

    .vip-harpan-left-col {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
    }

    .vip-harpan-breadcrumbs {
        margin-top: 5px !important;
        margin-bottom: 10px !important;
    }

    .vip-harpan-title {
        padding-top: 10px !important;
        margin-bottom: 10px !important;
        font-size: 30px !important;
    }
}

/* TABLET (768px – 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .vip-harpan {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 80px !important;
    }

    .vip-harpan-right-col {
        display: none !important; /* 👈 hide image column */
    }

    .vip-harpan-left-col {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
    }

    .vip-harpan-breadcrumbs {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .vip-harpan-title {
        padding-top: 20px !important;
        margin-bottom: 15px !important;
        font-size: 36px !important;
    }
}

/*  DESKTOP (1024px – 1200px) */
@media (min-width: 1024px) and (max-width: 1200px) {
    .vip-harpan {
        padding-top: 150px !important;
        padding-bottom: 100px !important;
    }

    .vip-harpan-right-col {
        display: block !important; /* 👈 visible again */
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .vip-harpan-breadcrumbs {
        margin-top: 20px !important;
        margin-bottom: 15px !important;
    }

    .vip-harpan-title {
        padding-top: 40px !important;
        margin-bottom: 20px !important;
    }

    .vip-harpan-left-col {
        min-height: 400px !important;
    }
}


/* ===== 🎰 VIP HERO SECTION - Kasino ===== */
.vip-kasino {
    background: linear-gradient(to right,
    var(--color-black) 30%,
    var(--color-dark-green) 70%
    );
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--color-text-white);
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    padding-top: 40px;
    z-index: 1;
}

.vip-kasino-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 916px;
    height: 542px;
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
}

.vip-kasino-left-col {
    background-repeat: no-repeat;
    min-height: 465px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.vip-content {
    position: relative;
    z-index: 3;
}

/* Breadcrumbs */
.vip-kasino-breadcrumbs {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    text-transform: capitalize;
    margin-top: 30px;
}

.vip-kasino-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.vip-kasino-breadcrumbs span {
    color: var(--color-accent);
}

/*  Title */
.vip-kasino-title {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: capitalize;
    margin-bottom: 40px;
    color: var(--color-text-white);
    padding-top: 100px;
}

/*  Description */
.vip-kasino-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 80%;
    color: var(--bs-gray-700);
}

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

@media (max-width: 767px) {

    .vip-kasino {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 20px !important;
    }

    .vip-kasino-right-col {
        display: none !important;
    }

    .vip-kasino-breadcrumbs {
        margin-top: 5px !important;
        margin-bottom: 10px !important;
    }

    .vip-kasino-title {
        padding-top: 10px !important;
        margin-bottom: 10px !important;
        font-size: 30px !important;

    }

    .vip-kasino-left-col {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
    }

    .vip-kasino-image {
        width: 100%;
        height: auto;
        opacity: 0.25;

    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .vip-kasino {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 80px !important;

    }

    .vip-kasino-right-col {
        display: none !important;
    }

    .vip-kasino-breadcrumbs {
        margin-top: 0px !important;
        margin-bottom: 10px !important;
    }

    .vip-kasino-title {
        padding-top: 20px !important;
        margin-bottom: 15px !important;
        font-size: 36px !important;
    }

    .vip-kasino-left-col {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-height: auto !important;

    }

    .vip-kasino-image {
        width: 90%;
        height: auto;
        opacity: 0.25;

    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .vip-kasino {
        padding-top: 70px !important;
        padding-bottom: 100px !important;

    }

    .vip-kasino-right-col {
        display: block !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .vip-kasino-breadcrumbs {
        margin-top: 20px !important;
        margin-bottom: 15px !important;
    }

    .vip-kasino-title {
        padding-top: 40px !important;
        margin-bottom: 20px !important;

    }

    .vip-kasino-left-col {
        min-height: 400px !important;
    }

    .vip-kasino-image {
        width: 80%;
        height: auto;
    }
}

/* ===== VIP HERO SECTION OCG ===== */
.vip-ocg {
    background: linear-gradient(to right,
    var(--color-black) 30%,
    var(--color-dark-green) 70%
    );
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--color-text-white);
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    padding-top: 40px;
    z-index: 1;
}

.vip-ocg-left-col {
    background-repeat: no-repeat;
    min-height: 465px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.vip-ocg-breadcrumbs {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    text-transform: capitalize;
    margin-top: 30px;
}

.vip-ocg-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.vip-ocg-breadcrumbs span {
    color: var(--color-accent);
}

.vip-ocg-title {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: var(--color-text-white);
    padding-top: 100px;
}

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

/* Right Column */
.vip-ocg-right-col {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    margin-bottom: -150px !important;
}

/* ===== Mobile View ===== */
@media (max-width: 767px) {
    .vip-ocg {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 60px !important;

    }

    .vip-ocg-right-col {
        display: none !important;
    }

    .vip-ocg-breadcrumbs {
        margin-top: 5px !important;
        margin-bottom: 10px !important;
    }

    .vip-ocg-title {
        padding-top: 10px !important;
        margin-bottom: 10px !important;
        font-size: 30px !important;
    }

    .vip-ocg-left-col {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
    }

}

/* ===== Tablet View ===== */
@media (min-width: 768px) and (max-width: 1023px) {
    .vip-ocg {
        min-height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 80px !important;
    }

    .vip-ocg-right-col {
        display: none !important;
    }

    .vip-ocg-right-col img {
        max-width: 70%;
    }

    .vip-ocg-breadcrumbs {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .vip-ocg-title {
        padding-top: 20px !important;
        margin-bottom: 15px !important;
        font-size: 36px !important;
    }

    .vip-ocg-left-col {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-height: auto !important;

    }
}

/* ===== Large Screens ===== */
@media (min-width: 1024px) and (max-width: 1200px) {
    .vip-ocg {
        padding-top: 60px !important;
        padding-bottom: 100px !important;
    }

    .vip-ocg-right-col {
        display: block !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .vip-ocg-breadcrumbs {
        margin-bottom: 15px !important;
    }

    .vip-ocg-title {
        padding-top: 40px !important;
        margin-bottom: 20px !important;
    }

    .vip-ocg-left-col {
        min-height: 400px !important;
    }
}


/* Kortspel page css */
/* Main Section Styling */
.bottons-section {
    padding: 20px 0;
}

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

/* Main button style */
.custom-styled {
    background: linear-gradient(to bottom, #555555, #333333);
    border: none;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    display: inline-block;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.custom-styled:hover,
.active-blog {
    background: #333333;
    color: var(--sunz-accent) !important;
}

.custom-styled.active-page {
    background: linear-gradient(180deg, #CBFE1C 0%, #405200 100%);
}

/* Dropdown wrapper behaves like other buttons */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: linear-gradient(to bottom, #555555, #333333);
    border: none;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    display: inline-block;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.dropdown-toggle:hover {
    background: #333333;
}

/* Dropdown menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2c2c2c;
    border-radius: 10px;
    min-width: 190px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    /*margin-top: 10px;*/
    z-index: 10;
    overflow: hidden;
}

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

.dropdown-menu a:hover {
    background: #3a3a3a;
    color: #b0ff00;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

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

    .custom-styled,
    .dropdown-toggle {
        font-size: 15px;
        padding: 10px 25px;
    }
}

@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;
    }
}


/* Game section styling*/
.text-white-placeholder {
    color: #ffffff;
}

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

.game-group-heading {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 15px;
    line-height: 1.2;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-group-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 35%;
    transform: translateY(-50%);
    height: 50%;
    border-left: 3px solid #B0FF00;
}

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

}

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

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

}

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


.game-title {
    color: #A9A9A9;
    font-size: 18px;
    font-weight: 400;
    flex-grow: 1;
    transition: color 0.3s ease;
    max-width: fit-content;
}

.game-link-card:hover .game-title,
.active-sidebar .game-title {
    color: var(--color-accent);
}

.game-link-card:hover .game-thumb,
.active-sidebar .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: 80px;
    padding-bottom: 30px;
}

.blog-titles {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: capitalize;
    margin-bottom: 20px;
    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;
}

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

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

/* 1. Common Headings and Accents */
.section-heading {
    font-size: 25px;
    font-weight: 500;
    color: white;
    margin-bottom: 40px;
    padding-left: 15px;
    position: relative;
}

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

/* 2. Blog Card Styling (Left Column) */
.blog-card {
    background-color: #252525; /* Dark card background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    height: 100%;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6), 0 0 10px rgba(176, 255, 0, 0.2);
}

.blog-thumb {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.blog-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    margin-bottom: 5px;
}

.blog-meta {
    font-size: 14px;
    color: #A9A9A9;
    padding: 0 15px 15px;
}

/* 3. Sidebar Styling (Right Column) */
.sidebar-col {
    background: transparent;
}

.blog-content-col {
    background: transparent;

}

.sidebar-box {
    background-color: var(--footer-light-overlay);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-section-box {
    background-color: var(--footer-light-overlay);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.sidebar-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-top: 5px solid #B0FF00;
    padding-top: 10px;
    line-height: 1.2;
}

/* Sidebar Link Items */
.sidebar-link-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #A9A9A9;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.sidebar-link-item:hover {
    color: #B0FF00;
}

.link-label {
    font-size: 16px;
    font-weight: 500;
}

.game-link-small {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.small-thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.small-game-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.game-link-small:hover .small-game-title {
    color: #B0FF00;
}


/* Minimal Game Link Styling */
.minimal-game-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #A9A9A9;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.minimal-game-link:hover {
    color: #ffffff;
}

.g-c-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #232323;
    padding: 15px;
    border-radius: 12px; /* Rounded corners */
    text-decoration: none;
    border: 1px solid color-mix(in srgb, var(--color-accent) 50%, transparent);
    margin-bottom: 20px;
    width: 100%;

}

.g-c-card:hover p {
    color: var(--color-accent);

}

/* 2. Image Wrapper */
.g-c-image-wrap {
    width: 100%;
}

/* 3. Image Styling */
.g-c-thumb {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* 4. Game Title Styling */
.g-c-title {
    /* White Text */
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 5px;
    word-break: break-word;
}

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

/* Image/Thumbnail Styling */
.minimal-thumb {
    width: 25px;
    height: 25px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 12px;
    opacity: 0.8;
}

/* Game Title Styling */
.minimal-title {
    font-size: 15px;
    font-weight: 400;
}

/* 1. Main Meta/Author Section Container */
.blog-meta-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* 2. Author Photo & Details (Left Side) */
.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(--color-accent);
    font-size: 25px;
    font-weight: 500;
    margin: 0;
    line-height: 125%;
    letter-spacing: -2%;
    line-height: 1.2;
}

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

/* 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: #777777;
}

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

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

/* 4. Share Button (Right Side) */
.share-button {
    background-color: var(--color-accent);
    color: #111111;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 25px;
    border: none;
    border-radius: 10px;
    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;
    }
}

.content-column .full-col-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 25px;
}


/* 1. Main Author Card Container */
.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: 12px;
    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: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 30px;

}

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

.author-profile-name {
    color: #ffffff;
    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: 18px;
    line-height: 125%;
    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: #B0FF00;
    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;
    }
}

/* Color Palette */
.contact-us-section {
    padding-bottom: 80px;
    color: #ffffff;
}

/* 1. Left Column: Text Content Styling */
.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(--color-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: #333333;
    padding: 15px;
    border-radius: 10px;
    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(--color-accent);
    text-shadow: 0 0 2px var(--color-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(--color-accent);
}

.form-control-custom {
    width: 100%;
    padding: 15px 20px;
    background-color: #333333;
    border: 1px solid #444444;
    border-radius: 8px;
    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(--color-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(176, 255, 0, 0.2);
    background-color: #383838;
}

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

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

.btn-send-message:hover {
    background-color: #90d800;
    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;
    }
}


.tc {
    font-size: 18px;
    font-weight: 400;
    line-height: 125%;
    margin-top: -25px;
    color: var(--bs-gray-700) !important;
    text-transform: capitalize;
    text-align: justify;
}

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

.contact-link:hover {
    color: #e6ff66;
    text-decoration: underline;
}

.sunz-search-results {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    background: black;
    color: var(--white);
    border-radius: 12px;
    padding: 10px 0;
    border: 1px solid var(--color-accent);
    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;
}

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

.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 var(--color-accent);
}

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

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

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

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

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

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

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

.author-name>span {
    color: #CBFE1C;
}

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

.writer-name {
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
}

.writer-role {
    color: #CBFE1C;
    font-size: 18px;
    font-weight: 200;
}

.writer-articles-count {
    font-size: 18px;
    color: var(--white);
}

.view-profile {
    background: linear-gradient(180deg, #CBFE1C 0%, #405200 100%);
    border-radius: 10px;
    width: 100%;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}