* {
    margin: 0;
    padding: 0;
    color: #fff;
    max-width: 100%;
}
 
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    overflow-x: hidden;
}

body,
textarea {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img,
video {
    width: 100%;
    height: auto;
    display: block;
}

.textarea a {
    color: #FFC985;
    text-decoration: underline;
}

mark {
    background-color: #F04DFF;
    color: #000;
    padding: 3px 5px;
}

mark strong,
.textarea mark a {
    color: #000;
}

.yoyo-cat strong {
    color: #ff9100;
}

.yoyo-cat li {
    margin-bottom: 10px;
}

@font-face {
    font-family: 'FontAwesome';
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-phone:before {
    content: "\f095";
}

.fa-whatsapp:before {
    content: "\f232";
}

.fa-telegram:before {
    content: "\f2c6";
}

header {
    background-color: antiquewhite;
    overflow: hidden;
    position: relative;
}

header img {
    width: 100%;
    height: auto;
    max-height: 50vh;
    object-fit: cover;
}

nav {
    background-color: #282828;
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-brand h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin: 0;
    background: linear-gradient(45deg, #ff9100, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 992px) {
    nav .navbar-collapse {
        justify-content: flex-end;
    }
}

.navbar-nav a {
    margin: 5px;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 10px;
}

section {
    width: 100%;
}

footer {
    background-color: #282828;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-box {
    margin: 15px 0;
    padding: 20px 15px;
    flex: 1;
    min-width: 250px;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-box {
        width: 100%;
        margin: 20px 0;
        padding: 20px 10px;
    }
}

.footer-box li {
    overflow: hidden;
    list-style: none;
    padding: 2px 0 2px 22px;
    margin: 0 0 4px 0;
    background: url(../images/right.svg) 0 6px no-repeat;
    background-size: 14px 14px;
}

.footer p {
    text-align: justify;
}

.footer h5 {
    font-size: 24px;
    color: #fff;
    padding: 5px 0;
    margin-bottom: 10px;
}

.footer-bar {
    border-top-style: solid;
    border-top-width: 1px;
    text-align: center;
}

.footer-bar>.container {
    padding-top: 15px;
    padding-bottom: 15px;
    letter-spacing: .5px;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}

/* Mobile First Approach */
@media (min-width: 320px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .area-list li {
        width: 100%;
        margin-bottom: 10px;
    }

    .tsml {
        margin-bottom: 15px;
    }
    
    .profile-box {
        width: 100%;
        margin: 10px 0;
    }
    
    .footer-box {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
        padding: 10px 20px;
    }
    
    .card-body {
        text-align: center;
    }
    
    .col-2, .col-md-2 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .col-10, .col-md-10 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .profile-box {
        width: calc(50% - 20px);
        margin: 10px;
    }
    
    .area-list li {
        width: calc(50% - 10px);
    }
    
    .accordion,
    .panel {
        width: 100%;
    }
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    .profile-box {
        width: calc(50% - 20px);
    }
    
    .col-2, .col-md-2 {
        flex: 0 0 25%;
        max-width: 25%;
        margin-bottom: 0;
    }
    
    .col-10, .col-md-10 {
        flex: 0 0 75%;
        max-width: 75%;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }

    .footer-box {
        width: calc(33.33% - 20px);
        margin: 10px;
        text-align: left;
    }

    .profile-box {
        width: calc(33.33% - 20px);
    }

    .area-list li {
        width: calc(33.33% - 10px);
    }

    .content-left,
    .content-right {
        width: 65.7%;
    }

    .content-left {
        padding-right: 30px;
    }

    .content-right {
        float: right;
        padding-left: 30px;
    }

    .img-left,
    .img-right {
        width: 30%;
    }

    .col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .card-body {
        text-align: left;
    }

    .tsml-box {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
        padding: 0 25px;
    }

    .area-list li {
        width: calc(25% - 10px);
    }

    .content-left,
    .content-right {
        width: 66.8%;
    }
    
    .profile-box {
        width: calc(25% - 20px);
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
        padding: 0 30px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.container-fluid {
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto
}

footer>.container {
    padding-top: 30px;
    padding-bottom: 30px;
}

main>section>.container {
    padding-top: clamp(20px, 5vw, 40px);
    padding-bottom: clamp(20px, 5vw, 40px);
}

section {
    padding: clamp(20px, 4vw, 30px) 0;
}

section.bg_offwhite {
    background: linear-gradient(135deg, #edefeb 0%, #f8f9fa 100%);
}

.bg_offwhite .container {
    text-align: -webkit-center;
}

.bg_offwhite strong {
    color: #ff9100;
}

.textarea h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ff9100;
    margin-bottom: 10px;
}

.textarea p {
    text-align: justify;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.textarea>p,
.textarea ul {
    margin-top: 15px;
    margin-bottom: 20px;
}

.textarea ul {
    padding-left: 20px;
}

.textarea li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.navbar>.container {
    width: 100%;
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    text-decoration: none;
}

.collapse:not(.show) {
    display: none;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }

    .profile-box {
        width: 22%;
    }
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .55);
    border-color: #ffffff;
}

.navbar-toggler:hover {
    text-decoration: none;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: box-shadow .15s ease-in-out;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-toggler-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.navbar-toggler {
    border: 2px solid #ff9100;
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 145, 0, 0.3);
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.m-auto {
    margin: auto !important;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: #fff !important;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.bg_offwhite {
    background-color: #edefeb;
}

.bg_offwhite h3,
.bg_offwhite h4 {
    color: #ff9100;
    font-size: 2rem;
}

.text-center {
    text-align: center;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.profile-box {
    margin: 10px;
    border: 2px solid #333;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    overflow: hidden;
}

.profile-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 145, 0, 0.3);
    border-color: #ff9100;
}

.profile-box img {
    border-radius: 20px 20px 0 0;
    transition: transform 0.3s ease;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.profile-box:hover img {
    transform: scale(1.05);
}

.pro-detail {
    text-align: center;
    background: linear-gradient(145deg, #000, #1a1a1a);
    padding: 15px 10px;
    border-radius: 0 0 17px 17px;
}

.pro-detail span {
    display: block;
    margin-bottom: 8px;
}

.pro-detail span:first-child {
    font-weight: bold;
    color: #ff9100;
    font-size: 1.1rem;
}

.pro-detail hr {
    border-color: #ff9100;
    margin: 10px 0;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.area-list li {
    list-style: none;
    text-align: center;
    background-color: #9e2828;
    border: 3px solid #000;
    margin: 5px;
    padding: 5px;
}

.content-left p,
.content-right p {
    text-align: justify;
    font-weight: 700;
}

.nowcalling {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
}

.lcol,
.rcol,
.mcol {
    float: left;
    width: 33.333%;
}

.lcol {
    background-color: #B7008D;
}

.mcol {
    background-color: #1157A7;
}

.rcol {
    background-color: #066547;
}

.lcol a,
.rcol a,
.mcol a {
    display: block;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
}

.accordion {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    color: #fff;
    cursor: pointer;
    padding: 20px;
    border: 1px solid #444;
    text-align: left;
    outline: none;
    font-size: clamp(16px, 2.5vw, 18px);
    transition: all 0.3s ease;
    margin: 10px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    display: block;
}

.accordion:hover {
    background: linear-gradient(145deg, #333, #222);
    border-color: #ff9100;
    transform: translateY(-2px);
}

.accordion.active {
    background: linear-gradient(145deg, #ff9100, #e68200);
    color: #000;
}

.accordion:after {
    content: '\002B';
    color: #fff;
    font-weight: 700;
    float: right;
    margin-left: 10px;
    font-size: 20px;
    background: #ff9100;
    border-radius: 50%;
    padding: 5px 10px;
    transition: all 0.3s ease;
    line-height: 1;
}

.accordion.active:after {
    content: '\2212';
    background: #000;
    color: #ff9100;
    transform: rotate(180deg);
}

.panel {
    padding: 0 20px;
    background: linear-gradient(145deg, #333, #222);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 12px 12px;
    border: 1px solid #444;
    border-top: none;
}

.panel p {
    padding: 20px 0;
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
}

.text {
    color: rgb(255 255 255) !important;
    font-family: Philosopher;
    line-height: 34px;
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
}

.bs-example {
    margin-bottom: 15px;
}

.card {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #ff9100;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background: linear-gradient(145deg, #fff, #f8f9fa);
    background-clip: border-box;
    transition: all 0.3s ease;
    overflow: hidden;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 145, 0, 0.3);
}

.card-img-top {
    border-radius: 20px 20px 0 0;
    object-fit: cover;
    transition: transform 0.3s ease;
    aspect-ratio: 16/9;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-body a {
    color: #334e6f;
    font-size: 22px;
    font-family: Philosopher;
    font-weight: 700;
    position: relative;
    bottom: 5px;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-text {
    color: #000;
    line-height: 28px;
    font-size: 17px;
    font-weight: 400;
    padding: 5px 20px 15px 0;
}

.btns {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-left: 10px;
}

.card-body a {
    color: #334e6f;
    font-size: 22px;
    font-family: Philosopher;
    font-weight: 700;
    position: relative;
    bottom: 5px;
}

.card-body a:hover {
    color: #f0f;
    text-decoration: none;
    transition: 1s;
}

a.profile-btn {
    background-color: transparent;
    background-color: #f0f;
    font-size: 18px;
    padding: 6px 12px;
    color: #fff;
    border-radius: 10px;
    margin: 0 25px;
    border: 2px solid transparent;
    visibility: hidden;
}

.social-btn i {
    background-color: #4aa803;
    color: #fff;
    padding: 10px 12px;
    border-radius: 2px;
    border: 2px solid #225510;
}

.social-btn i:hover {
    background-color: transparent;
    border: 2px solid #f0f;
    color: #f0f;
}

.theading,
.price-table th {
    color: #ff9100 !important;
}

.price-table {
    width: 100%;
    margin-bottom: 2.618em;
    border-collapse: collapse;
    border-spacing: 0;
}

.price-table th,
.price-table td {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px;
    font-weight: 700;
    text-align: left;
}

.tsml {
    border-radius: 25px;
    border: 1px solid #000;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1 / 4;
    padding: 10px;
}

.tsml-row {
    display: flex;
    flex-flow: wrap;
    align-items: center;
}

.tsml hr {
    margin: 10px 0;
}

.tsml span {
    font-size: 1.5rem;
}

.tsml-img {
    width: 20%;
    border-radius: 50px;
    height: fit-content;
}

.tsml-text {
    width: 80%;
}

.ts-1 {
    background-color: #06603D;
}

.ts-2 {
    background-color: #490072;
}

.ts-3 {
    background-color: #B7008D;
}

.textarea li {
    margin-left: 20px;
}

.mid-btn {
    text-align: center;
}

.mid-btn button {
    padding: 5px 10px;
    margin: 10px;
    font-size: 48px;
    border-radius: 15px;
    border: 1px solid #fff;
}

.telegram-btn {
    background-color: #3390ec;
}

.whatsapp-btn {
    background-color: #2b6349;
}

.book-now-btn {
    margin: 40px auto 15px;
    display: block;
    width: 50px;
    height: 50px;
}

.scroll-down:hover {
    background-color: #fbff0d;
}

@-moz-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.bounce {
    -moz-animation: bounce 3s infinite;
    -webkit-animation: bounce 3s infinite;
    animation: bounce 3s infinite;
    border-radius: 100%;
    padding: 2px;
    border: 3px solid #f0d80b;
    background: radial-gradient(#f4efef, #422e2e85);
    box-shadow: 0px 0px 6px 7px #e73110;
}

/* Additional Responsive Improvements */
.btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 5px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    font-size: clamp(14px, 2.5vw, 16px);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    min-width: 120px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-success {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.btn-success:hover {
    background: linear-gradient(45deg, #218838, #1abc9c);
}

.btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
}

.btn-warning {
    background: linear-gradient(45deg, #ffc107, #e0a800);
    color: #000;
}

.btn-warning:hover {
    background: linear-gradient(45deg, #e0a800, #d39e00);
}

/* Responsive Button Layout */
@media (max-width: 767px) {
    .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
        padding: 15px 20px;
    }
    
    .text-center .btn {
        margin: 10px auto;
        max-width: 300px;
    }
}

/* Responsive Text Alignment */
@media (max-width: 576px) {
    .textarea {
        text-align: left;
    }
    
    .textarea h1,
    .textarea h2,
    .textarea h3 {
        text-align: center;
    }
    
    .text-center {
        text-align: center !important;
    }
}

/* Improved Mobile Navigation */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(40, 40, 40, 0.95);
        border-radius: 10px;
        margin-top: 10px;
        padding: 20px;
    }
    
    .navbar-nav .nav-link {
        border: 2px solid transparent;
        margin: 5px 0;
        text-align: center;
        border-radius: 25px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        border-color: #ff9100;
        background: rgba(255, 145, 0, 0.1);
    }
}

/* Loading Animation for Images */
.lazyload {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazyloaded {
    opacity: 1;
}

/* Scroll Behavior */
html {
    scroll-padding-top: 80px;
}

/* Better Focus States for Accessibility */
.btn:focus,
.accordion:focus,
.nav-link:focus {
    outline: 3px solid #ff9100;
    outline-offset: 2px;
}

/* Utility Classes */
.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.g-0 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.justify-content-center {
    justify-content: center !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

/* Improved Visual Effects */
.profile-box {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.profile-box:hover {
    box-shadow: 0 8px 25px rgba(255, 145, 0, 0.4);
}

/* Loading States */
.lazyload {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Smooth Scrolling for Internal Links */
a[href^="#"] {
    scroll-behavior: smooth;
}

/* Enhanced Game Cards Section - High Specificity */
.bg_offwhite .container .row .col-lg-4,
.bg_offwhite .container .row .col-md-6,
.bg_offwhite .container .row .col-sm-12 {
    flex: 0 0 auto !important;
    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
}

@media (min-width: 992px) {
    .bg_offwhite .container .row .col-lg-4 {
        width: 33.33333333% !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .bg_offwhite .container .row .col-md-6 {
        width: 50% !important;
    }
    
    .bg_offwhite .container .row .col-lg-4 {
        width: 50% !important;
    }
}

@media (max-width: 767.98px) {
    .bg_offwhite .container .row .col-lg-4,
    .bg_offwhite .container .row .col-md-6,
    .bg_offwhite .container .row .col-sm-12 {
        width: 100% !important;
    }
}

.section-title {
    color: #ff9100;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #ff9100, #ffc107);
    margin: 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    color: #000000;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.g-4 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

/* Fix Bootstrap column widths and ensure proper display */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-md-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
}

/* New Game Card Design */
.game-card {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #ff9100;
    box-shadow: 0 15px 40px rgba(255, 145, 0, 0.4);
}

.game-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.play-btn {
    background: linear-gradient(45deg, #ff9100, #ffc107);
    color: #000;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 145, 0, 0.3);
}

.play-btn:hover {
    background: linear-gradient(45deg, #e68200, #d39e00);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 145, 0, 0.5);
}

.game-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.game-title {
    color: #ff9100;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.game-description {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.game-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.feature-tag {
    background: linear-gradient(45deg, #333, #444);
    color: #ff9100;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #555;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: linear-gradient(45deg, #ff9100, #ffc107);
    color: #000;
    transform: scale(1.05);
}

/* Responsive adjustments for game cards */
@media (min-width: 1200px) {
    .col-lg-4 {
        width: 33.33333333%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .col-lg-4 {
        width: 33.33333333%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .col-md-6 {
        width: 50%;
    }
    
    .col-lg-4 {
        width: 50%;
    }
}

@media (max-width: 767.98px) {
    .col-sm-12,
    .col-md-6,
    .col-lg-4 {
        width: 100% !important;
        margin-bottom: 1.5rem;
    }
    
    .g-4 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1.5rem;
    }
    
    .game-image {
        height: 180px;
    }
    
    .game-info {
        padding: 1.2rem;
    }
    
    .game-title {
        font-size: 1.2rem;
    }
    
    .game-description {
        font-size: 0.9rem;
    }
    
    .play-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .game-image {
        height: 160px;
    }
    
    .section-title::after {
        width: 60px;
        margin: 10px auto;
    }
    
    .game-card {
        margin-bottom: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .nowcalling,
    .btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .textarea p,
    .textarea h1,
    .textarea h2,
    .textarea h3 {
        color: black !important;
    }
}