/* Header */
@media (min-width:1400px){
    #mainNav .container{
        max-width: 90%;
    }
}

.navbar-brand img{
    width: 90px;
}

.top-nav{
    background-color: #1A1F1B !important;
}

.nav-link:hover{
    background-color: #306150;
    border-radius: 5px;
}

ul.user-links {
    z-index: 12;
}
/* Header End */

/*Content*/
.site-container{
    max-width: 100%;
    padding: 0;
}
.site-content {
    background-color: #111;
}

.single-icon{
    background-color: #2c2b2e;
}

.tag-item{
    background-color: #2c2b2e;
}
.cat-link{
    background-color: #2c2b2e;
}
textarea.tpl-comment-input{
    background-color: #2c2b2e;
}
.comment-form-wrapper{
    background-color: #2c2b2e;
}
/*Content End*/

/* Footer */
.footer {
    background-color: #1A1F1B;
}

.copyright {
    background-color: #00281D !important;
    color: #ffffff
}

.footer-img{
    padding: 10px 20px;
}

.footer-img img{
    width: 200px;
}


.footer-para{
    text-align: justify;
    margin-top: 10px;
    padding: 0 5px;
    color:#ffffff;
}

/* Privacy Policy and Email Styling */
.footer-content-1{
    padding-right: 20px;
}

.footer-img-1 img{
    padding:10px 20px 15px 0px;
    width: 150px;
}

.privacy-policy,
.email {
    margin: 10px 0;
    font-size: 14px;
    color: #ffffff;
}

/* Social Icons Container */
.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px; /* 图标间距 */
}

/* Social Icon Styling */
.social-icons .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid #ccc; /* 图标边框 */
    border-radius: 5px; /* 圆角 */
    color: #ccc;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons .icon:hover {
    border-color: white; /* 悬停时边框颜色 */
    color: white; /* 悬停时字体颜色 */
}
/* Footer End */

/* Home */
/* Main Section Styling */
.main-container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000; /* Fallback for background image */
}

.main-section {
    background-image: url('/content/themes/dark-grid/images/content/bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
    position: relative;
}

/* Content Styling */
.content {
    text-align: left;
    color: white;
    z-index: 2; /* Ensures content is above background */
    margin-right: 5%;
}

.headline {
    font-size: 80px;
    font-family: sans-serif;
    font-weight: 800;
    background: linear-gradient(0deg, rgba(1,195,142,1) 0%, rgba(67,57,55,1) 100%);
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px #F0E285;
}

.second-headline{
    font-size: 80px;
    font-weight: 800;
    font-family: sans-serif;
    margin-bottom: 40px;
    background: linear-gradient(180deg, rgba(1,195,142,1) 0%, rgba(67,57,55,1) 100%);
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px #F0E285;
}

/* Features Grid */
.features {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.feature {
    background: linear-gradient(180deg, rgba(70,62,56,1) 0%, rgba(31,29,27,1) 100%);
    border-radius: 10px;
    padding: 20px;
    width: 150px;
    text-align: center;
    color: white;
    box-shadow: 0px 0px 10px #4dbc78;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(255, 255, 255, 0.2);
}

/* Icon Styling */
.feature .icon {
    margin-bottom: 20px;
}

.feature .icon img {
    width: 60px;
    height: 60px;
}

/* Text Styling */
.feature .text .title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.feature .text .subtitle {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Overlay for Effects */
.main-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0); /* Dark overlay */
    z-index: 1;
}

/* Grid Section */
/*.section-grid-layout{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    grid-gap: 0px;
    grid-auto-rows: minmax(140px, auto);
    grid-auto-flow: dense;
}*/

.section-grid-item{
    margin-bottom: 0px;
}
.infinite-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.infinite-slider {
    display: flex; /* 水平布局 */
    width: max-content; /* 确保容器宽度可以容纳所有内容 */
    animation: slide-infinite 20s linear infinite; /* 无限滚动动画 */
}

.section-grid-item {
    flex: 0 0 150px; /* 固定每个项目的宽度 */
    margin-right: 10px; /* 图片间距 */
}

.section-grid-item img {
    width: 100%;
    height: auto;
    object-fit: cover; /* 图片填充但不变形 */
}

/* 无限滚动动画 */
@keyframes slide-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Grid Section End */

/* Game Section */
.slick-slider{
    display: none;
}
.scrolling-container {
  position: relative;
  overflow: hidden;
  /* 使用 CSS mask 在左右边缘渐隐，左侧50px区域和右侧50px区域逐渐透明 */
  -webkit-mask-image: linear-gradient(to right, transparent 0px, black 50px, black calc(100% - 50px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0px, black 50px, black calc(100% - 50px), transparent 100%);
}

.scrolling-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;  /* 遮罩不干扰鼠标操作 */
    background: rgba(0, 0, 0, 0.4); /* 黑色遮罩，透明度可根据需求调整 */
    z-index: 10; /* 确保在内容之上 */
}

/* 内层滚动包装器，使用 flex 布局并添加动画 */
.scrolling-wrapper {
    display: flex;
    animation: scrollLeft 20s linear infinite;
}

    /* 图片网格，3 行 10 列的布局 */
.image-grid {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-auto-rows: 170px;
    width: calc(10 * 150px + 9 * 10px + 20px);
    box-sizing: border-box;
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
    
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@media (min-width:1900px) {
    .game-section-features-grid{
        justify-content: space-around !important;
    }
    
    .game-section-feature{
        max-width: 250px !important;
    }
    
    .game-section{
        justify-content: space-evenly !important;
    }

}

@media (min-width:1400px) and (max-width:1899px){
    .game-section-features-grid{
        justify-content: space-around !important;
    }
    
    .game-section-feature{
        max-width: 200px !important;
    }
    
    .game-section{
        justify-content: space-evenly !important;
    }

}

.game-section {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: #1A1F1B; /* 背景颜色 */
    color: white;
    padding: 50px 30px;
}

.game-section-inner{
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    width: 100%;
    margin-top: 30px;
}
.game-section-content-container {
    max-width: 50%;
}

.game-section-header {
    margin-bottom: 40px;
}

.game-section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.game-section-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 40px;
}

.game-section-features-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    justify-content: space-evenly;
}

.game-section-feature {
    text-align: center;
    max-width: 150px;
}

.game-section-feature .game-section-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.game-section-feature-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.game-section-feature-description {
    font-size: 14px;
    line-height: 1.5;
    color: #aaa;
}

/* Learn More 按钮样式 */
.game-section-cta {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.game-section-learn-more-btn {
    background-color: #E4BA00; /* 按钮颜色 */
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.game-section-learn-more-btn:hover {
    background-color: #e0a000;
    color: #000000;
}

/* 图片部分 */
.game-section-image-container {
    max-width: 45%;
    display: flex;
    justify-content: flex-end;
}

.game-section-image-container img {
    width: 100%;
    max-width: 500px;
}
/* Game Section End*/

/*Tools Section*/
/* 工具功能区 */
.tools-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #111; /* 背景颜色 */
    color: white;
    padding: 50px;
}

.content-container {
    max-width: 55%;
}

.header {
    margin-bottom: 40px;
}

.title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 16px;
    line-height: 1.5;
}

.tools-grid {
    display: flex;
    gap: 30px;
}

.tool {
    text-align: center;
    max-width: 30%;
}

.tool .icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.tool-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.tool-description {
    font-size: 14px;
    line-height: 1.5;
    color: #aaa;
}

/* 按钮样式 */
.cta {
    margin-top: 20px;
}

.learn-more-btn {
    background-color: #E4BA00; /* 按钮颜色 */
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #e0a000;
    color: #000000;
}

/* 手机展示部分 */
.phones-display {
    display: flex;
    gap: 15px;
    justify-content: center;
    max-width: 50%;
}

.phones-display img {
    width: 300px; /* 调整手机图片大小 */
    border-radius: 10px;
}
/*Tools Section End*/

/* Back Office Section */
@media (min-width:1900px) {
    .back-office-features-grid{
        justify-content: space-around !important;
    }
    
    .back-office-feature{
        max-width: 250px !important;
    }
    
    .back-office-section{
        justify-content: space-evenly !important;
    }

}

@media (min-width:1400px) and (max-width:1899px){
    .back-office-features-grid{
        justify-content: space-around !important;
    }
    
    .back-office-feature{
        max-width: 200px !important;
    }
    
    .back-office-section{
        justify-content: space-evenly !important;
    }

}

.back-office-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #1A1F1B; /* 背景颜色 */
    color: white;
    padding: 50px;
}

.back-office-content-container {
    max-width: 50%;
}

.back-office-header {
    margin-bottom: 40px;
}

.back-office-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.back-office-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #ccc;
    margin-bottom: 40px;
}

.back-office-features-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.back-office-feature {
    text-align: center;
    max-width: 150px;
}

.back-office-feature .back-office-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.back-office-feature-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.back-office-feature-description {
    font-size: 14px;
    line-height: 1.5;
    color: #aaa;
}

/* Learn More 按钮样式 */
.back-office-cta {
    margin-top: 20px;
}

.back-office-learn-more-btn {
    background-color: #E4BA00; /* 按钮颜色 */
    color: #000000;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.back-office-learn-more-btn:hover {
    background-color: #e0a000;
    color: #000000;
}

/* 图片部分 */
.back-office-image-container {
    max-width: 45%;
    display: flex;
    justify-content: flex-end;
}

.back-office-image-container img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}
/* Back Office Section End*/

/* Newsletter Section */
.newsletter-section {
    background-color: #005B42; /* 红色背景 */
    color: white;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* 支持响应式 */
}

.newsletter-text {
    flex: 1;
    margin-right: 20px;
    min-width: 300px;
}

.newsletter-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.newsletter-subtitle {
    font-size: 16px;
    color: #fff;
}

/* Form Styling */
.newsletter-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.input-group {
    display: flex;
    margin-bottom: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    outline: none;
}

.newsletter-btn {
    padding: 10px 20px;
    background-color: #f7b500; /* 黄色按钮 */
    border: none;
    border-radius: 0 5px 5px 0;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #e0a000;
}

/* Privacy Policy */
.newsletter-policy {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
}

.newsletter-policy input[type="checkbox"] {
    margin-right: 10px;
}

.privacy-link {
    color: #fff;
    text-decoration: underline;
}

.privacy-link:hover {
    color: #f7b500;
}
/* Newsletter End */
/* Home End*/

/* Game Content */
.slider-wrapper{
    position: relative;
}
.slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out; /* 平滑过渡效果 */
}

.slider-item {
    min-width: 100%; /* 每次显示一个幻灯片 */
    box-sizing: border-box;
}

.slider-item img {
    width: 100%;
    display: block;
    height: 600px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.slider-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.slider-controls button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Grid */
.grid-layout{
    grid-template-columns:repeat(auto-fill, minmax(20%, 1fr));
    grid-gap: 30px;
}

.grid-item{
    margin-bottom: 20px;
}

img.small-thumb{
    border-radius: 5px;
}
/* Grid End */

/* Tab Section */
.game-tab-section {
    background-color: #111;
    color: white;
    padding: 20px;
}

/* Tab Navigation */
.game-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin: 0 15px;
    padding: 10px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-button.active {
    color: #01C38E;
}

.tab-button.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: #01C38E;
}

/* Tab Content */
.tab-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab-panel {
    display: none;
    width: 100%;
    max-width: 1100px;
}

.tab-panel.active {
    display: block;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
}

.game-card {
    background: #222;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
}

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

.content-width{
    max-width: 1140px;
}

.btn-load-more-games{
    background-color: #E4BA00;
    color: #221D15;
    border: none;
    font-weight: 600;
}

.btn-load-more-games:hover{
    background-color: #e0a000;
    color: #221D15;
}
/* Game Content End */

/* single game page*/
.single-game-container{
    max-width: 96%;
}

.cat-link{
    background-color: #E4BA00;
    color: #000000;
}

.cat-link:hover{
    background-color: #e0a000;
    color: #000000;
}

.game-container{
    margin: 0;
}

/* single game page end*/

/* Categories Page */
h3.item-title {
    font-weight: bold;
    font-size: 1.3rem;
    margin: 20px 0;
    display: inline-block;
    background-color: #E4BA00;
    color: #000000;
    padding: 10px 20px;
    border-radius: 10px;
}

.page-item.disabled .page-link{
    color: #000000;
    background-color: #E4BA00 !important;
    border-color: #E4BA00;   
}
/* Categories Page End*/


/* About Us page*/
.about-section {
    padding: 50px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.about-first-para-section{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 800;
    color: #ceab48;
}

.about-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: left;
    color: #ffffff;
}

.about-first-para-section span{
    color: #ceab48;
    font-weight: 700;
}

.floating-cards {
    width: 40%;
}

.card {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: transparent;
}

/* About Us page End */

/* Contact Us page */
.contact-page-title{
    display: flex;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 30px;

}
.contact-form-container {
    max-width: 800px;
    margin: 30px auto 50px;
    padding: 40px 50px;
    /*background: linear-gradient(180deg, rgb(41 38 36) 0%, rgba(31, 29, 27, 1) 100%);*/
    background: linear-gradient(180deg, rgb(22 22 22) 0%, rgb(17 17 17) 100%);
    border-radius: 10px;
    box-shadow: 0px 0px 10px #4dbc78;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 50px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    color: #ffffff;
    margin-left: 10px;
}

.form-group input, .form-group textarea {
    padding: 10px;
    border: none; /* 移除边框 */
    border-bottom: 1px solid #fff; /* 添加底部边框 */
    border-radius: 0; /* 移除圆角 */
    background: none; /* 去除背景色 */
    outline: none;
    font-size: 14px;
    color: #ffffff; /* 设置文本颜色为白色 */
    transition: border-color 0.3s ease;
}

textarea {
    resize: none;
}

input:focus, textarea:focus {
    border-color: #E4BA00; /* 焦点状态时的边框颜色 */
    box-shadow: none;
}

::placeholder {
    color: #ffffff; /* 白色 */
    opacity: 1; /* 确保透明度为100% */
}

.consent-text {
    font-size: 12px;
    color: #ffffff;
    margin: 15px 0;
}

.consent-text a {
    color: #00796b;
    text-decoration: none;
}

.consent-text a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: #E4BA00;
    color: #000000;
    padding: 10px 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    transition: background 0.3s ease;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #e0a000;
}

/* Contact Us page End */



/*Mobile*/

@media (max-width:768px){

/* Header */
    .navbar-brand img {
        width: 65px;
    }
    #mainNav .container{
        padding: 5px 10px;
    }
    
    .navbar-toggler{
        border: none;
    }
    
    .navbar-toggler-icon{
        background-image: url('/content/themes/dark-grid/images/navbar.png');
    }
    
    a.nav-link {
        color: #ffffff !important;
    }
/* Header End*/

/*Home*/
    /* Main section */
    .main-container{
        height: 400px;    
    }
    
    .content {
        margin-right: 20px;
        width: 100%;
        align-items: flex-end;
        display: flex;
        flex-direction: column;
    }
    .headline {
        font-size: 42px;
    }
    
    .second-headline{
        font-size: 48px;
        text-align: left;
        width: 55%;
    }
    
    .features {
        display: flex;
        gap: 10px;
        justify-content: center;
    }
    .feature{
        width: 30%;
    }
    .feature .icon img {
        width: 40px;
        height: 40px;
    }
    .feature{
        width: fit-content;
        padding: 20px 20px 0px 20px;
    }
    .feature .text .title{
        font-size: 10px;
    }
    .feature .text .subtitle{
        font-size: 14px;
    }
    /* Main section End */
    /* Game section */
    .scrolling-container{
        display: none;
    }
    .slick-slider{
        display: block;
    }
    .slider-mobile {
      margin: 0 auto;
      width: 100%;
      max-width: 600px; /* 根据需要调整最大宽度 */
      position: relative;
      /* 如果需要整体有一点遮罩，可在外层再加一层伪元素（此处不作区分） */
    }
    /* 每个幻灯片 */
    .slider-mobile .slide {
      position: relative;
      overflow: hidden;
    }
    .slider-mobile .slide img {
      width: 100%;
      display: block;
      border-radius:10px;
    }
    /* 非活动幻灯片样式：默认较小、较暗 */
    .slick-slide {
      opacity: 0.5;
      transition: opacity 0.3s ease, transform 0.3s ease;
      transform: scale(0.8);
    }
    /* 中央幻灯片：突出显示 */
    .slick-center {
      opacity: 1;
      transform: scale(1);
      z-index: 1;
    }
    /* 使用伪元素增加 overlay 效果，非中心幻灯片的 overlay 较重 */
    .slick-slide::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3);
      z-index: 2;
      opacity: 1;
      transition: opacity 0.3s ease;
    }
    /* 中央幻灯片去掉 overlay */
    .slick-center::before {
      opacity: 0;
    }
    /* 可选：自定义左右箭头（z-index 确保在最上层） */
    .slick-prev, .slick-next {
      z-index: 3;
    }
    .game-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #2c2d2d;
        color: white;
        padding: 30px;
        flex-direction: column;
    }
    
    .game-section-inner{
        display:flex;
        flex-direction: column;
    }
    
    .game-section-image-container {
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    .game-section-content-container {
        max-width: 100%;
        margin-top: 20px;
    }
    .game-section-title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
        text-align: center;
    }
    .game-section-features-grid {
        display: flex;
        gap: 30px;
        margin-bottom: 40px;
        flex-direction: column;
    }
    
    .game-section-feature{
        max-width: 100%;
    }
    .game-section-cta{
        display: flex;
        justify-content: center;
    }
    
    .game-section-subtitle{
        text-align: center;
    }
    /* Game section End*/
    /* Tools section */
    .tools-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #111;
        color: white;
        padding: 50px;
        flex-direction: column-reverse;
    }
    .content-container {
        max-width: 100%;
        margin-top: 20px;
    }
    .phones-display {
        max-width: 100%;
        margin-right: 0px;
    }
    .tools-grid {
        display: flex;
        gap: 30px;
        flex-direction: column;
    }
    .tool{
        max-width: 100%;
    }
    .cta {
        margin-top: 20px;
        justify-content: center;
        display: flex;
    }
    .title{
        text-align: center;
        font-size: 24px;
    }
    /* Tools section End*/
    
    /* Back office section */
    .back-office-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #2c2d2d;
        color: white;
        padding: 50px;
        flex-direction: column;
    }
    .back-office-image-container {
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
    .back-office-content-container {
        max-width: 100%;
        margin-top: 20px;
    }
    .back-office-title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
        text-align: center;
    }
    .back-office-features-grid {
        display: flex;
        gap: 30px;
        margin-bottom: 40px;
        flex-direction: column;
    }
    
    .back-office-feature{
        max-width: 100%;
    }
    .back-office-cta{
        display: flex;
        justify-content: center;
    }
    
    .back-office-subtitle{
        text-align: center;
    }
    /* Back office section End*/
    
    /* Newsletter */
    .newsletter-title {
        font-size: 28px;
        text-align: center;
    }
    .newsletter-subtitle{
        font-size: 14px;
    }
    /* Newsletter End*/
/*Home End*/

/* Footer */
    .footer-img-1{
        justify-content: center;
        display: flex;
    }
    .footer-img-1 img {
        padding: 10px 20px 15px 20px;
        width: 200px;
    }
    .privacy-policy, .email {
        text-align: center;
    }
    .footer-2{
        margin-top: 30px;
    }
    .footer-img {
        display: flex;
        justify-content: center;
    }
    .footer-para {
        text-align: justify;
        margin-top: 10px;
        padding: 0 20px;
        font-size: 14px;
    }
    .copyright {
        font-size: 10px;
        
    }
    
/* Footer End */

/* Game */
    .slider-controls{
        top:50%;
    }
    
    .slider-controls button{
        padding:5px;
    }
    .grid-layout {
        grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
        margin: 20px 10px;
        grid-gap: 20px;
    }
    .tab-button {
        font-size: 14px;
        margin: 0px;
        padding: 0px;
    }
    .game-tabs {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .slider-item img{
        height: auto;
    }
/* Game End */  
    /* About Us page*/
    .about-section {
        flex-direction: column-reverse;
    }
    
    .about-first-para-section{
        width: 100%;
    }
    
    .about-section h1 {
        font-size: 28px;
    }
    
    .about-section p {
        font-size: 14px;
        text-align: center;
    }
    
    .floating-cards {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .card{
        width: 200px;
    }

/* About Us page End */

/* Contact Us page */
    .contact-form-container{
        margin: 20px 40px 50px;
        padding: 40px 30px;
    }
    .form-row{
        flex-direction: column;
        margin-bottom: 20px;
        gap: 20px;
    }
    .submit-btn{
        width: 50%;
        font-size:14px;
    }
    .form-group label{
        font-size: 14px;
    }
    
    .contact-page-title h1{
        font-size: 24px;
    }
/* Contact Us page End */
}

/* Mobile End */
