/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #e7e7e7;
    color: #000;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --primary: #51055c;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.fw-bold {
    font-weight: 700;
    font-size: 25px;
}

/* Header */
.heder-desktop {
    background-color: var(--primary);
    color: white;
    padding: 5px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.heder-mobile {
    background-color: #fff;
    color: #000;
    padding: 5px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 0px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.teligram-btn a {
    font-size: 18px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    padding: 5px 3px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.mobile ul li a {
    font-size: 17px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 50px 0;
    text-align: center;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 25px;
}

.search-bar {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.search-bar button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.search-bar button:hover {
    background-color: #c0392b;
}

/* Games Section */
.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #2c3e50;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.game-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.game-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.mt-5 {
    margin-top: 20px;
}

.game-info {
    padding: 15px;
    text-align: center;
}

.game-info h3 {
    font-size: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-info p {
    color: #012218;
    font-size: 16px;
}

.download-btn {
    display: block;
    background-color: #27ae60;
    color: white;
    text-align: center;
    padding: 8px 0;
    border-radius: 4px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #219653;
}

/* Categories */
.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.category-btn {
    background-color: #ecf0f1;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background-color: #3498db;
    color: white;
}

/* Footer */
/* footer {
    background-color: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #3498db;
}

.copyright {
    font-size: 0.9rem;
    color: #bdc3c7;
} */

/* Mobile Responsiveness */
@media (max-width: 768px) {
    nav ul {
        justify-content: center;
    }

    nav ul li {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(176px, 1fr));
    }

    .search-bar {
        flex-direction: column;
    }

    .search-bar input {
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .search-bar button {
        border-radius: 4px;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(166px, 1fr));
        gap: 15px;
    }

    .game-card img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Highlight Section */
.highlight-section {
    padding: 20px;
    background-color: white;
    border-bottom: 1px solid #eee;
}

.highlight-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.highlight-title h2 {
    font-size: 18px;
    font-weight: 600;
    color: #c10000;
}

.highlight-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0b6f31, #eeb30d);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.highlight-icon i {
    color: white;
    font-size: 14px;
}

.highlight-content {
    background-color: #b9a3161c;
    border-radius: 12px;
    padding: 15px;
    border-left: 4px solid #698b22;
}

.highlight-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Download Button */
.download-btn {
    display: block;
    background: linear-gradient(135deg, #710074, #303030);
    color: white;
    text-align: center;
    padding: 7px;
    border-radius: 12px;
    font-weight: 600;
    margin: 10px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgb(138 183 155 / 87%);
}

.welcome {
    background-color: #fff;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.welcome-text {
    font-size: 45px;
    font-weight: bold;
    color: #000;
}

.task-in {
    color: #fff;
}

.continue-btn {
    margin-top: 10px;
    background-color: #FEC64F;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}


.notice-container {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-image: url(assets/images/homepage/banner.webp);
}

.notice-header {
    color: red;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
}

.notice-tags {
    text-align: center;
    margin-bottom: 12px;
}

.tag {
    display: inline-block;
    background: linear-gradient(135deg, #0b6f31, #eeb30d);
    color: white;
    font-size: 13px;
    border-radius: 20px;
    padding: 6px 12px;
    margin: 4px;
    font-weight: 500;
}

.notice-text {
    color: #d00000;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 15px;
    border-left: 4px solid;
    border-right: 4px solid;
    border-radius: 15px;
    padding: 15px;
    background-color: #f7f5e5;
}

.restricted-states {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px 15px;
    text-align: center;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .notice-container {
        margin: 10px;
        padding: 15px;
    }

    .notice-text,
    .restricted-states {
        font-size: 13px;
    }

    .tag {
        font-size: 12px;
        padding: 5px 10px;
    }
}




.card {
    /* display: flex; */
    align-items: center;
    background: #ffffff;
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    flex-wrap: wrap;
}

.card:hover {
    transform: translateY(-2px);
}

.card-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.card img {
    width: 95px;
    height: 95px;
    border-radius: 23px;
    object-fit: cover;
}

.card-details {
    flex: 1;
    margin-left: 15px;
}

.title-main {
    font-size: 33px;
    font-weight: bold;
}
.title {
    font-size: 23px;
    font-weight: bold;
}
.bonus {
    font-size: 19px;
    color: #000;
}

.min-withdraw {
    font-size: 19px;
    color: #000;
}

.download-btn {
    background-color: #0aad60;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-left: 15px;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.download-btn i {
    margin-right: 8px;
}

/* ✅ Mobile only: rearrange layout for stacking */
@media (max-width: 500px) {
    .card {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-details {
        margin-left: 0;
        width: 100%;
        margin-left: 9px;
    }

    .download-btn {
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }

    .card img {
        width: 60px;
        height: 60px;
    }

    .fw-bold {
        font-size: 16px !important;
        margin-right: 5px !important;
    }

    .card {
        padding: 5px;
    }
}



/******************Slider***********************/
/* Mobile container */
.mobile-slider-container {

    background-color: white;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

/* Slider container */
.slider {
    width: 100%;
    height: auto;
    /* Adjust height as needed */
    position: relative;
    overflow: hidden;
}

/* Slides container */
.slides {
    display: flex;
    width: 400%;
    /* 4 slides */
    height: 100%;
    animation: slide 16s infinite;
    /* 4 slides * 4s each */
}

/* Individual slide */
.slide {
    width: 25%;
    /* Each slide takes 25% of container */
    height: auto;
    position: relative;
}

/* Slide images */
.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Slide content overlay */
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 20px;
}

.slide-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.slide-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* Animation keyframes */
@keyframes slide {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(0);
    }

    /* Show first slide */
    25% {
        transform: translateX(-25%);
    }

    45% {
        transform: translateX(-25%);
    }

    /* Show second slide */
}

/* App content below slider */
.app-content {
    padding: 20px;
}

.app-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.app-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 400px) {
    .mobile-slider-container {
        border-radius: 10px;
        /* height: 100vh; */
        width: 100%;
    }
}

/* slider */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.slide {
    min-width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.slider-button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgb(134 22 122);
    border: none;
    color: #fff;
    padding: 5px;
    font-size: 16px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    line-height: 10px;
}

.slider-button.left {
    left: 10px;
}

.slider-button.right {
    right: 10px;
}



.marquee_Slider {
    font-family: Sofia, sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    background-color: var(--primary);
    padding-top: .1rem;
    font-variant: small-caps;
    margin-bottom: .1rem;
    border-radius: 10px;
}

:host {
    display: inline-block;
    overflow: hidden;
    text-align: initial;
    white-space: nowrap;
}




/* footer */
.mobile-footer {
    background: #fff;
    color: #fff;
    padding: 25px 15px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 19px;
}

.footer-line {
    height: 1px;
    background: #000;
    margin-bottom: 15px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: #000;
    font-size: 18px;
    line-height: 1.4;
}

.footer-bottom span {
    color: var(--primary);
    font-weight: 600;
}

/* notic */
.import-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* new box 3 */
.app-promo {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    flex-direction: column;
}

.app-promo1 {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    max-width: 800px;
    gap: 30px;
}

.d-btn {
    width: 100%;
}

.app-promo1 img {
    /* max-width: 100px; */
    height: auto;
    border-radius: 22px;
}


/* box responsive */


/* Responsive adjustments */
@media (max-width: 450px) {
    .footer-nav a {
        font-size: 16px;
    }

    .footer-bottom p {
        font-size: 16px;
    }

    .download-btn {
        font-size: 12px;
    }

    .game-info h3 {
        font-size: 20px;
    }

    .welcome-text {
        font-size: 25px;
        line-height: 27px;
    }

    .mx-0 {
        margin-left: 0;
    }

}

/* about us banner start */

.banner-container {
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #51055c, #00381a);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 10px;
}

.banner-title {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.highlight-box {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
    width: 100%;
    max-width: 400px;
}

.bonus-text {
    color: #e91e63;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.withdrawal-text {
    color: #2196f3;
    font-size: 16px;
    font-weight: 600;
}

.apps-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.app-badge {
    background-color: #fff;
    color: #000;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.left-image,
.right-image {
    position: absolute;
    height: 75%;
    opacity: 1.7;
    z-index: 1;
}

.left-image {
    left: 0;
    top: 23%;
}

.right-image {
    right: 0;
    top: 23%;
}

.cta-button {
    background-color: #4b44ff;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    margin-top: 15px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #388e3c;
    transform: translateY(-2px);
}

@media (max-width: 500px) {
    .banner-title {
        font-size: 18px;
    }

    .banner-subtitle {
        font-size: 14px;
    }

    .bonus-text {
        font-size: 16px;
    }

    .withdrawal-text {
        font-size: 14px;
    }

    .app-badge {
        font-size: 12px;
        padding: 6px 10px;
    }

    .left-image {
        left: 0;
        top: 70%;
    }

    .right-image {
        top: 70%;
    }

    .left-image,
    .right-image {
        position: absolute;
        height: 30%;
        opacity: 1.7;
        z-index: 1;
    }
}


/* listing game start */

.header {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.header h1 {
    color: #000;
    font-size: 28px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.header p {
    color: #000;
    font-size: 16px;
}

.games-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 0 auto;
}

.game-card1 {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.game-card1:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.game-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9c27b0, #083321);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.game-name {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #4caf50;
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: bold;
}

.popular {
    background-color: #ff5722;
}

.new {
    background-color: #2196f3;
}

.vip {
    background-color: #9c27b0;
}

.search-container {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.search-input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    background: white url('data:image/svg+xml;utf8,<svg fill="%23999" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>') no-repeat 95% center;
    background-size: 20px;
    padding-right: 40px;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tab {
    padding: 8px 15px;
    background: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
}

.category-tab.active,
.category-tab:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 480px) {
    .games-container {
        grid-template-columns: 1fr;
    }

    .header h1 {
        font-size: 24px;
    }
}

/* about notice css */

.disclaimer-container {
    margin: 0 auto;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary);
    margin-top: 20px;
}

.disclaimer-title {
    color: #ff0000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.disclaimer-text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.hindi-text {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Arial Unicode MS', 'Nirmala UI', sans-serif;
}

.warning-box {
    background-color: #fff2f2;
    border-left: 4px solid #ff0000;
    padding: 12px;
    border-radius: 0 8px 8px 0;
    margin: 15px 0;
}

.warning-title i {
    margin-right: 5px;
}

.warning-title {
    color: #ff0000;
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.warning-title svg {
    margin-right: 8px;
}

.help-section {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.help-title {
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.contact-email {
    display: inline-block;
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 5px;
}

@media (max-width: 480px) {
    .disclaimer-title {
        font-size: 18px;
    }

    .disclaimer-text,
    .hindi-text {
        font-size: 14px;
    }
}

.ml-0 {
    margin-left: 0;
}

/* contact Us start */

.contact-header {
    text-align: center;
    margin-bottom: 32px;
}

.contact-header h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-header p {
    color: #666;
    font-size: 16px;
}

.contact-boxes {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-box {
    flex: 1;
    min-width: 240px;
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 8px double rgb(219 219 219);
}

.contact-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: white;
    font-size: 20px;
}

.email-icon {
    background: linear-gradient(135deg, #51055c, #000000);
}

.telegram-icon {
    background: linear-gradient(135deg, #51055c, #000000);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info label {
    font-size: 20px;
    color: #000;
    margin-bottom: 0px;
    font-weight: 600;
}

.contact-info span {
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

.contact-form {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 8px double rgb(219 219 219);
}

.contact-form h3 {
    margin-bottom: 24px;
    font-size: 24px;
    color: #000;
    font-weight: 600;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a60ff;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(74, 96, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #4a60ff, #6a5acd);
    color: #fff;
    padding: 16px;
    width: 100%;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(74, 96, 255, 0.2);
}

.m-lrb {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 640px) {
    .contact-boxes {
        flex-direction: column;
    }

    .contact-box {
        min-width: 100%;
    }

    .contact-header h2 {
        font-size: 24px;
    }

    .contact-form {
        padding: 24px;
    }
}

.mt-20 {
    margin-top: 20px;
}

/* download page */
.header-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.main-heading {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #000;
}

.sub-heading {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #000;
    padding: 0 10px;
}

.buttons1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.social-media {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding: 10px 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 22px;
    height: 22px;
}

@media (min-width: 768px) {
    .header-image {
        max-height: 400px;
        margin-bottom: 20px;
    }

    .main-heading {
        font-size: 2.5rem;
        margin-bottom: 0px;
    }

    .sub-heading {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .buttons1 {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        margin-bottom: 10px;
    }

    .d-content {
        padding: 15px;
    }

    .sub-heading {
        margin-bottom: 10px;
    }

    .buttons1 {
        margin-bottom: 0px;
    }
}

.d-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.social-media {
    position: fixed;
    top: 80%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    align-items: flex-end;
}

.social-icon {
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@media (max-width: 480px) {
    .social-icon {
        width: 42px;
        height: 42px;
    }

    .social-icon img {
        width: 20px;
        height: 20px;
    }
}


/* about us sec */
.about-section {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    margin-top: 20px;
}

.image-container {
    width: 50%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.content-container {
    width: 50%;
    padding: 20px 15px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.content-text {
    font-size: 14px;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.5;
}

@media (max-width: 480px) {

    .image-container,
    .content-container {
        width: 100%;
        padding: 15px;
    }

    .image-container {
        padding-bottom: 0;
    }

    .content-container {
        padding-top: 10px;
    }

    .content-title {
        font-size: 16px;
    }

    .content-text {
        font-size: 13px;
    }

    .image-container {
        width: 100%
    }

    .content-container {
        width: 100%;
        padding: 20px 15px 20px 15px;
    }

    .about-section {
        display: flex;
        flex-direction: column;
    }

}

.fw-bold {
    font-weight: 700;
    font-size: 30px;
    margin-right: 10px;
    color: #4a4a4a;
}

.teligram-btn {
    margin-top: 0;
    line-height: 0;
}

.cta-button1 {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 5px 10px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;

}

.privacy-container h2 {
    color: var(--primary);
    margin-top: 5px;
}

@media (max-width: 767px) {
    .welcome-text {
        font-size: 39px;
        font-weight: bold;
        color: #000;
        line-height: normal;
        margin-left: 19px;
    }

}

@media (max-width: 400px) {
    .welcome-text {
        font-size: 25px;
        font-weight: bold;
        color: #000;
        line-height: normal;
        margin-left: 0;
    }


}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

@media (max-width: 576px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }
}

@media (max-width: 525px) {
    .title {
        font-size: 14px;
        font-weight: bold;
    }

    .bonus {
        font-size: 12px;
        color: #000;
    }

    .min-withdraw {
        font-size: 12px;
        color: #000;
    }

    .app-image {
        border-radius: 27px !important;
        margin-bottom: 0px !important;
    }
}


.app-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 20px auto;
    gap: 12px;
    flex-wrap: nowrap;
}

.app-card {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
}

.app-image {
    width: 100%;
    height: auto;
    border-radius: 46px;
    margin-bottom: 12px;
}

.app-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #222;
}

.app-card p {
    font-size: 0.9rem;
    color: #555;
    margin: 4px 0;
}

.download-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #5d1162;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
}

.download-btn:hover {
    background: #8c1a91;
}

/* ✅ Responsive Scaling - font/image adjusts but keeps all 3 in a row */
@media (max-width: 600px) {
    .app-card {
        padding: 10px;
    }

    .app-card h3 {
        font-size: 1rem;
    }

    .app-card p,
    .download-btn {
        font-size: 0.75rem;
    }

    .download-btn {
        padding: 6px 12px;
    }
    .title-main {
    font-size: 25px;
    font-weight: bold;
}
}

@media (max-width: 400px) {
    .app-card {
        padding: 3px;
    }

    .app-card h3 {
        font-size: 12px;
    }

    .app-card p,
    .download-btn {
        font-size: 10px;
    }

    .download-btn {
        display: inline-block;
        margin-top: 3px;
    }
}

@media (max-width: 525px) {
    .card img {
        border-radius: 15px;
    }

}

.alert.alert-success {
    font-size: 25px;
    background: #630e60;
    color: #fff;
    width: 100%;
    padding: 9px 15px;
    border-radius: 15px;
}

/* download detail content page */
a.download-btn.mmm-0 {
    width: 100%;
}
.header-title {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #5d1162;
    font-size: 24px;
    margin-bottom: 10px;
}

.post-meta {
    color: #000;
    font-size: 16px;
    margin-bottom: 15px;
}

.content-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #5d1162;
    font-size: 20px;
    margin: 15px 0 10px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.game-item {
    background-color: #f0e6f2;
    padding: 8px 8px 8px 15px;
    border-radius: 5px;
    text-align: left;
    font-size: 16px;
}

.highlight {
    background-color: #f0e6f2;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    border-left: 4px solid #5d1162;
}

.game-item::before {
    counter-increment: game-counter;
    content: counter(game-counter) ". ";
    font-weight: bold;
    color: var(--primary);
}

.game-grid {
    counter-reset: game-counter;
}

@media (max-width: 500px) {
    .game-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 15px;
    }
    .app-promo1 {
    display: flex;
    align-items: normal;
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    max-width: 800px;
    gap: 15px;
    flex-direction: column;
}
.card-details.ml-0 {
    text-align: center;
}
.mmm-0 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 0;
}
}

.social-icon {
    border-radius: 50%;
    box-shadow: 0px 0px 7px 3px #bfbfbf;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    background: #ffffff;
}
 
.social-icon img {
    width: 30px;
    height: 30px;
}
 .content-box h3 {
    margin-top: 12px;
}
.dis-none{
    display: none;
}