/* Import Alfa Slab One font */
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');
/* Import Work Sans font */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
    --primary-color: rgb(255 207 110);
    --secondary-color: #1A1A1A;
    --text-color: #FFFFFF;
    --sidebar-width: 240px;
    --background-color: #040302;
}

/* Base font styles */
p, span, a {
    font-family: 'Work Sans', sans-serif;
}

/* Add font-family for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Alfa Slab One', serif;
    color: #d8c8bb;
}

/* Add font-family for buttons */
.btn-login, 
.btn-register,
.btn-join,
.btn-battle {
    font-family: 'Alfa Slab One', serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

body.sidebar-open {
    overflow: hidden;
}

/* Header Styles */
.main-header {
    background-color: var(--background-color);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
    transition: transform 0.3s ease;
}

.header-hidden {
    transform: translateY(-100%);
}

.navbar {
    padding: 0;
}

.container-fluid {
    padding: 0;
}

.logo {
    height: 50px;
}

.logo-mobile {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.search-box input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #423e3e;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    width: 300px;
    border-radius: 8px;
    line-height: 0.5;
}

/* Placeholder styles for different browsers */
.search-box input::placeholder {
    color: rgb(171 137 107);
}

.search-box input::-webkit-input-placeholder {
    color: rgb(171 137 107);
}

.search-box input::-moz-placeholder {
    color: rgb(171 137 107);
}

.search-box input:-ms-input-placeholder {
    color: rgb(171 137 107);
}

.search-box input:-moz-placeholder {
    color: rgb(171 137 107);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn-login, .btn-register {
    font-family: 'Alfa Slab One', serif;
    border: none;
    font-size: 13px;
    line-height: 40px;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    height: 50px;
    min-width: 140px;
}

.btn-login {
    background-image: url('../images/btn-default.webp');
}

.btn-register {
    background-image: url('../images/btn-primary-register.webp');
}

.btn-login:hover, 
.btn-register:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-join {
    background-image: url('../images/btn-primary-register.webp');
    background-size: cover;
    border: none;
    color: #ffcf6e;
    padding: 1rem 4rem;
    font-size: 18px;
    line-height: 45px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-join:hover {
    transform: translateY(-2px);
}

.navbar-toggler {
    display: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    background: transparent;
}

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

.navbar-toggler-icon {
    background: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {
    width: 100%;
    height: 2px;
    background-color: #B8860B;
    display: block;
    position: absolute;
    border-radius: 2px;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    content: '';
    top: -8px;
}

.navbar-toggler-icon::after {
    content: '';
    bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Sidebar Styles */
.sidebar {
    background-color: var(--background-color);
    width: var(--sidebar-width);
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    padding-top: 80px;
    z-index: 999;
    border-right: 1px solid rgba(171, 137, 107, 0.1);
    transition: transform 0.3s ease-in-out;
}

.sidebar.show {
    transform: translateX(0);
}

.sidebar-nav {
    padding: 0;
}

.sidebar-nav .nav-item {
    border-bottom: 1px solid rgba(171, 137, 107, 0.05);
    margin: 4px 0;
}

.sidebar-nav .nav-link {
    color: rgb(171, 137, 107);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Work Sans', sans-serif;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-nav .nav-link:hover {
    background-color: rgba(171, 137, 107, 0.1);
    color: rgb(255, 207, 110);
}

.sidebar-nav .nav-link.active {
    background-color: rgba(171, 137, 107, 0.15);
    color: rgb(255, 207, 110);
}

.sidebar-nav .nav-link i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: inherit;
    transition: all 0.3s ease;
}

.sidebar-nav .nav-link:hover i {
    color: rgb(255, 207, 110);
    transform: scale(1.1);
}

.sidebar-nav .nav-link.active i {
    color: rgb(255, 207, 110);
}

/* Main Content Styles */
.main-container {
    margin-left: var(--sidebar-width);
    padding-top: 80px;
    transition: margin-left 0.3s ease-in-out;
}

.main-container.sidebar-visible {
    margin-left: var(--sidebar-width);
}

.main-container.sidebar-hidden {
    margin-left: 0;
}

/* Bottom language and help section */
.sidebar-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-bottom a {
    flex: 1;
    padding: 1rem;
    color: var(--text-color);
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sidebar-bottom a:last-child {
    border-right: none;
}

/* Hero Section */
.hero-section {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
    background: url('../images/bg-image.jpg') no-repeat center center;
    background-size: cover;
}

.hero-video-background {
    display: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 11%), rgb(4 3 2 / 78%));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 60px;
    text-align: left;
}

.hero-content h2 {
    color: rgb(204 204 204);
    font-size: 14px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
}

.hero-logo {
    max-width: 300px;
    margin-bottom: 2rem;
}

.bonus-text {
    font-family: 'Alfa Slab One', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    color: rgb(251 241 232);
    text-shadow: 0 2px 0 rgb(141 91 32);
    padding: 10px 0 20px 0;
}


.btn-join {
    border: none;
    color: #ffcf6e;
    padding: 1rem 2rem;
    font-size: 16px;
    line-height: 50px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border-radius: 4px;
    background-color: transparent;
}

.btn-join:hover {
    transform: translateY(-2px);
}

/* Casino Section */
.casino-section {
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 20px;
}

.section-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: #d8c8bb;
}
.casino-section-2{
    padding: 30px;
}
.casino-section-2 h2 {
    font-size: 20px;
    color: #d8c8bb;
    margin-bottom: 20px;
}
.section-header .see-all {
    color: rgb(171, 137, 107);
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-right: auto;
    margin-left: 2rem;
}

.casino-slider {
    margin: 0;
    position: relative;
    visibility: hidden;
    padding: 0;
}

.casino-slider.slick-initialized {
    visibility: visible;
}

.game-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #040302;
    border: 1px solid rgba(171, 137, 107, 0.1);
    border-radius: 12px;
    margin: 0 8px;
    aspect-ratio: 1/1.4;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(171, 137, 107, 0.2);
    border-radius: 12px;
    pointer-events: none;
    z-index: 2;
}

.game-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all 0.3s ease;
    transform: scale(1);
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-number {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: rgba(171, 137, 107, 0.2);
    border: 1px solid rgba(171, 137, 107, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(171, 137, 107);
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    z-index: 3;
}

.game-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background: rgba(171, 137, 107, 0.2);
    border: 1px solid rgba(171, 137, 107, 0.3);
    border-radius: 6px;
    color: rgb(171, 137, 107);
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 3;
}

/* Slick Slider Custom Styles */
.slider-nav {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
    position: absolute;
    right: 50px;
    top: 10%;
    transform: translateY(-50%);
    flex-direction: row;
    z-index: 10;
}
.slick-next:before ,
.slick-prev:before{
    display: none
}
.slick-prev,
.slick-next {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #040302;
    border: 1px solid rgba(171, 137, 107, 0.3);
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    margin: 5px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.slick-prev:hover,
.slick-next:hover {
    background-color: rgba(171, 137, 107, 0.1);
    border-color: rgba(171, 137, 107, 0.5);
}

.slick-prev i,
.slick-next i {
    color: rgb(171, 137, 107);
    font-size: 16px;
    transition: color 0.3s ease;
}

.slick-prev:hover i,
.slick-next:hover i {
    color: rgb(255, 207, 110);
}

@media (max-width: 768px) {
    .casino-section {
        padding: 1rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .game-card {
        margin: 0 5px;
    }

    .game-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .game-tag {
        padding: 4px 8px;
        font-size: 10px;
    }
}

.live-casino-section {
    margin-top: 4rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .search-box input {
        width: 200px;
    }
}

@media (max-width: 992px) {
    .sidebar {
        width: var(--sidebar-width);
    }
    
    .main-container {
        margin-left: var(--sidebar-width);
    }
    
    .main-container.sidebar-hidden {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 0.25rem 1rem;
        background-color: rgb(13, 12, 12);
        height: 100px;
    }

    .navbar > .container-fluid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        height: 100%;
    }

    .navbar-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        margin: 0;
    }

    .navbar-brand .logo {
        display: block;
        height: 32px;
    }

    .navbar-brand .logo-mobile {
        display: none;
    }

    .navbar-toggler {
        position: relative;
        z-index: 1;
        display: block;
        padding: 0;
        border: none;
        background: transparent;
    }

    .header-right {
        order: 3;
        gap: 0.5rem;
        margin-top: auto;
        width: 100%;
        justify-content: center;
    }

    .header-right .search-box {
        display: none;
    }

    .auth-buttons {
        display: flex;
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
    }

    .btn-login, .btn-register {
        min-width: 120px;
        font-size: 12px;
        width: 40%;
    }

    /* Sidebar mobile styles */
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background-color: rgb(13, 12, 12);
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .sidebar.show {
        transform: translateX(0);
    }

    body.sidebar-open {
        overflow: hidden;
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .sidebar-overlay.show {
        display: block;
    }

    .main-container {
        padding-top: 100px;
    }

    .hero-section {
        height: 280px;
    }
    
    .hero-content{
        margin-top: 70px;
        padding: 0 20px;
    }
    .bonus-text {
        font-size: 25px;
    }
    .btn-join {
        border: none;
        color: #ffcf6e;
        padding: 16px 30px;
    }
}

@media (max-width: 576px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .main-container {
        margin-left: 0;
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    .sidebar-nav .nav-link {
        padding: 1rem 1.5rem;
    }
}

/* Battle Banner Section */
.battle-banner {
    padding: 0 2rem;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.battle-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/das.avif') no-repeat center center;
    background-size: cover;
    filter: brightness(0.7);
    z-index: 1;
}

.battle-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.battle-text {
    padding: 60px 0;
    display: flex;
        flex-direction: column;
        align-items: baseline;
        justify-content: center;
        justify-items: center;
        flex-wrap: wrap;
}

.clash-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 1rem;
}

.prize-text {
    font-family: 'Alfa Slab One', serif;
    font-size: 18px;
    line-height: 60px;
    color: rgb(204, 204, 204);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.prize-amount {
    font-family: 'Alfa Slab One', serif;
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(to bottom, #ffd700, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 0.5rem 0;
}

.btn-battle {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    background-image: url(../images/button.png);
    background-size: cover;
    color: #ffffff;
    background-color: transparent;
    border: none;
    margin-top: 20px;
}

.btn-battle:hover {
    transform: translateY(-2px);
}

/* Content Section */
.content-section {
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
    background-color: rgb(13 12 12);
}

.content-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-color);
}

.content-title {
    font-family: 'Alfa Slab One', serif;
    font-size: 2.5rem;
    color: #d8c8bb;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-subtitle {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: rgb(204, 204, 204);
    margin-bottom: 2rem;
    text-align: center;
}

.content-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgb(204, 204, 204);
    margin-bottom: 1.5rem;
}

.content-features {
    margin-top: 2rem;
}

.feature-title {
    font-family: 'Alfa Slab One', serif;
    font-size: 15px;
    color: #d8c8bb;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: rgb(204, 204, 204);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .content-title {
        font-size: 18px;
    }
    
    .content-section {
        padding: 3rem 1.5rem;
    }
}

/* FAQ Accordion Section */
.faq-section {
    position: relative;
    padding: 4rem 2rem;
    background-color: var(--background-color);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title {
    font-family: 'Alfa Slab One', serif;
    font-size: 2.5rem;
    color: rgb(171, 137, 107);
    text-align: center;
    margin-bottom: 3rem;
}

.accordion-item {
    background-color: transparent;
    border: 1px solid rgba(171, 137, 107, 0.3);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    font-family: 'Alfa Slab One', serif;
    font-size: 1.1rem;
    color: rgb(171, 137, 107);
    background-color: #181615;
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(171, 137, 107, 0.10);
    color: rgb(255, 207, 110);
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    color: rgb(255, 207, 110);
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.5rem;
    color: rgb(171, 137, 107);
    line-height: 1.6;
    background-color: #181615;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 19px;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
}

/* Footer Styles */
.footer {
    background-color: rgb(17, 17, 17);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.payment-method {
    background-color: rgb(26, 26, 26);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method img {
    height: 20px;
    width: auto;
}

.age-restriction {
    width: 60px;
    height: 60px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    font-family: 'Alfa Slab One', serif;
    font-size: 1.5rem;
    color: white;
}

.footer-text {
    color: rgb(204, 204, 204);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Work Sans', sans-serif;
}

.footer-copyright {
    color: rgb(102, 102, 102);
    font-size: 0.8rem;
    margin-top: 2rem;
    font-family: 'Work Sans', sans-serif;
}

/* Game Categories Section */
.game-categories {
    padding: 2rem 20px;
    background-color: var(--background-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.5rem;
    margin: 0 auto;
    max-width: 1200px;
}

.category-card {
    background-color: #040302;
    border: 1px solid rgba(171, 137, 107, 0.1);
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    justify-items: center;
}

.category-card:hover {
    transform: translateY(-2px);
    border-color: rgba(171, 137, 107, 0.3);
    background-color: rgba(171, 137, 107, 0.05);
}

.category-icon {
    width: 90px;
    margin-bottom: 0.5rem;
}

.category-name {
    color: rgb(171, 137, 107);
    font-family: 'Work Sans';
    font-size: 12px;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 768px) {
    .game-categories {
        padding: 1rem;
        position: relative;
        overflow: hidden;
       
    }
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        padding: 0;
    }
    
    .category-card {
        padding: 10px 5px;
    }
    
    .category-icon {
        width: 48px;
        margin-bottom: 0.25rem;
    }
    
    .category-name {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Game Show Slider Section */
.game-show-section {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.game-show-slider {
    margin: 0;
    position: relative;
    visibility: hidden;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-show-slider.slick-initialized {
    visibility: visible;
}

.game-show-slider .slick-slide {
    margin: 0 0.5rem;
}

.game-show-slider .game-card {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
    border: none;
    border-radius: 12px;
    border-image: url('../images/border-gray.svg') 1 stretch;
    border-image-slice: 28%;
    border-image-width: 30px;
    margin: 0 0.5rem;
    width: 333px;
    height: 215px;
    padding: 5px;
    display: flex;
    flex-direction: column;
}

.game-show-slider .game-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.2s linear;
    transform: translateY(0) scale(1);
    margin-bottom: 15px;
}

.game-show-slider .game-card:hover img {
    transform: translateY(-5px) scale(1.05);
}

.game-show-slider .card-overlay {
    position: relative;
    padding: 0;
    color: var(--text-color);
    z-index: 2;
    background: none;
    margin-top: auto;
}

.game-show-slider .card-overlay h3 {
    font-family: 'Alfa Slab One', serif;
    font-size: 1rem;
    margin: 0;
    color: #d8c8bb;
    text-align: left;
    font-weight: 500;
}

.game-show-slider .slick-slide {
    margin: 0 0.5rem;
    width: 380 !important;
}

.game-show-slider .slick-slide > div {
    width: 380px;
}

@media (max-width: 768px) {
    .game-show-section {
        padding: 1.5rem 0.5rem;
    }

    .game-show-slider {
        padding: 0 20px;
    }

    .game-show-slider .game-card {
        width: 100%;
        max-width: 380px;
        height: auto;
        aspect-ratio: 333/259;
        margin: 0 auto;
    }

    .game-show-slider .slick-slide > div {
        max-width: 380px;
        margin: 0 auto;
        width: 100%;
        height: 100%;
    }
    .game-show-slider .game-card img{
        margin-bottom: 0;
    }
    .game-show-slider .card-overlay {
        position: absolute;
    }
    .game-show-slider .slick-track {
        margin-bottom: 25px;
    }
}

/* Sidebar Menu Styles */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}

.sidebar-overlay.show {
    display: block;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: rgb(40 45 67);
    z-index: 1050;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
}

.sidebar-menu.show {
    left: 0;
}

.sidebar-header {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
}

.close-sidebar {
    background: none;
    border: none;
    color: #ffcf6e;
    font-size: 24px;
    padding: 0;
}

.sidebar-content {
    padding: 0 20px 20px;
}

.sidebar-nav {
    margin-top: 20px;
}

.sidebar-nav .nav-link {
    color: rgb(171 137 107);
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-buttons {
    display: none;
}

@media (max-width: 767px) {
    .navbar-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 0;
    }

    .navbar-toggler {
        color: #ffcf6e;
        border: none;
        padding: 0;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffcf6e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
} 