html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #000000;
    color: white;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 0;
    height: 60px;
    position: absolute;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: black;
    transition: background 0.3s;
    box-sizing: border-box;
}

.navbar.sticky {
    position: fixed;
    background: white;
    background-color: #808781;
    background: #808781;
    color: black;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0;
    position: absolute;
    left: 0;
        user-select: none;
    -webkit-user-select: none; /* Safari support */
    -moz-user-select: none; /* Firefox support */
    -ms-user-select: none; /* IE/Edge support */
    pointer-events: auto; /* Keep clickability */
}

.logo-image {
    height: 60px;
    width: auto;
    margin: 0;
    padding: 0;
    object-fit: contain;
    display: block;
        user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0 32px 0 0;
    transition: right 0.3s ease;
    margin-left: auto;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.2s;
}

.nav-links li a:hover {
    color: red;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    z-index: 1;
}

.burger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.hero-section {
    width: 100%;
    height: 50vh;
    background-image: url('welcome.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: black;
    display: flex;
    align-items: flex-end; /* Changed from center to flex-end */
    justify-content: center;
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 40px; /* Add bottom padding for spacing */
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 200px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #00b764, #00a055);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 183, 100, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #00a055, #008f46);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 183, 100, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.secondary-link {
    text-decoration: none;
}

.hero-content a {
    text-decoration: none;
    display: inline-block;
}

.welcome-offers {
    padding: 100px 20px;
    background-color: black;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

.welcome-offers h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.offer-subtitle {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 30px;
}

.offers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    padding: 0;
    overflow: visible;
}

.offer-card {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden; /* Changed back to hidden for desktop */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    width: calc(33.33% - 20px); /* For 3 items in a row with gap */
    max-width: 500px;
}

.offer-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0);
}

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

.background-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    filter: brightness(0.6);
}

.safety-section {
    background-color: #ffffff;
    padding: 60px 20px;
    /* Reduced from 100px */
    text-align: center;
}

.safety-container {
    max-width: 1000px;
    /* Reduced from 1200px */
    margin: 0 auto;
}


.safety-section h2 {
    font-size: 2rem;
    /* Reduced from 2.5rem */
    font-weight: 300;
    color: #333;
    margin-bottom: 15px;
    /* Reduced from 20px */
    letter-spacing: -0.5px;
}

.safety-subtitle {
    font-size: 1rem;
    /* Reduced from 1.1rem */
    color: #666;
    margin-bottom: 50px;
    /* Reduced from 80px */
    max-width: 450px;
    /* Reduced from 500px */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.safety-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px 50px;
    /* Reduced from 40px 60px */
    margin-bottom: 50px;
    /* Reduced from 80px */
    max-width: 800px;
    /* Reduced from 1000px */
    margin-left: auto;
    margin-right: auto;
}

.feature {
    text-align: center;
    padding: 0 15px;
    /* Reduced from 20px */
}

.feature-icon {
    font-size: 2.8rem;
    /* Reduced from 3.5rem */
    margin-bottom: 12px;
    /* Reduced from 15px */
    display: block;
    line-height: 1;
}

.feature h3 {
    font-size: 1.1rem;
    /* Reduced from 1.3rem */
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    /* Reduced from 5px */
    line-height: 1.3;
}

.feature p {
    font-size: 0.85rem;
    /* Reduced from 0.95rem */
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.certification {
    margin-top: 40px;
    /* Reduced from 60px */
}

.cert-logo {
    max-width: 100px;
    /* Reduced from 120px */
    height: auto;
    opacity: 0.6;
}

.games-section {
    background-color: #f0f0f0;
    padding: 50px 0;
    /* Changed from 50px 20px to remove left/right padding */
    text-align: center;
    width: 100vw;
    /* Full viewport width */
    margin-left: calc(50% - 50vw);
    /* Break out of container */
    margin-right: calc(50% - 50vw);
    /* Break out of container */
}

.games-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Add padding here instead */
}

.games-section h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.games-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.4;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.game-card {
    text-align: center;
}

.game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.game-card h3 {
    font-size: 0.85rem;
    font-weight: 500;
    color: #00b8d4;
    margin: 0;
    text-decoration: underline;
    cursor: pointer;
}

.game-card h3:hover {
    color: #0097a7;
}

.about-section {
    background-color: black;
    padding: 80px 20px;
    text-align: center;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.about-content {
    text-align: left;
}

.about-content p {
    font-size: 1.1rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.about-content p:nth-last-child(1) {
    text-align: center;
    font-weight: 500;
    font-size: 1.2rem;
}

.footer {
    background-color: #000000;
    color: white;
    width: 100%;
    padding: 60px 0 0 0;
    margin: 0;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    width: 100%;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-btn {
    background-color: #333333;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.footer-btn:hover {
    background-color: #00b764;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 183, 100, 0.3);
}

.social-icons {
    display: flex;
    flex-direction: row;
    align-items: left;
    justify-content: left;
    gap: 15px;
    margin-top: 15px;
}


.social-link {
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.social-link span {
    font-size: 1.1rem;
    font-weight: 500;
}

.copyright-container {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.copyright-line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 100%;
    margin-bottom: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #888;
}

.image-showcase {
    width: 100vw;
    height: 60vh;
    overflow: hidden;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.image-text-overlay {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 10;
    max-width: 600px;
    padding: 0 20px;
}

.image-text-overlay h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.image-text-overlay p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin: 0;
}

.image-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.showcase-btn {
    background-color: white;
    color: black;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.showcase-btn:hover {
    background-color: black;
    color: white;
    border-color: black;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {

    html,
    body {
        overflow-x: hidden;
    }
    
    .hero-section {
        height: 45vh;
    }

    .hero-content {
        flex-direction: column; /* Stack vertically on mobile */
        gap: 15px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 180px;
    }

    .navbar {
        position: fixed;
        width: 100vw;
        height: 60px;
        left: 0;
        top: 0;
        background: black;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 100vw;
        height: 100vh;
        background: black;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: right 0.3s;
        z-index: 999;
        padding: 0;
        margin: 0;
        display: flex;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        color: #fff;
        font-size: 1.5em;
        padding: 16px 0;
        width: 100vw;
        text-align: center;
        display: block;
    }

    .burger {
        position: absolute;
        right: 15px;
        top: 18px;
        z-index: 1001;
        display: flex;
    }

    .logo {
        position: absolute;
        z-index: 1002;
        font-size: 1.3em;
        background: transparent;
        padding: 10px;
        max-width: 70vw;
        white-space: nowrap;
        left: 0;
    }

    .cta-button {
        font-size: 1rem;
        padding: 12px 30px;
    }

    .welcome-offers h2 {
        font-size: 1.8rem;
    }

    .offer-subtitle {
        font-size: 1rem;
    }
     .welcome-offers {
        padding: 60px 0;
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .offers-container {
        width: 85%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding: 0;
    }
    
    .offer-card {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        box-sizing: border-box;
        overflow: hidden; /* Added to prevent content from spilling out */
    }
    
    .offer-image {
        width: 100%; /* Force full width */
        height: auto;
        max-width: none; /* Allow image to be cropped if needed */
        max-height: 100%;
        object-fit: cover; /* Use cover instead of scale-down */
        object-position: center; /* Ensure image is centered */
        display: block;
        margin: 0 auto;
    }

    .safety-section {
        padding: 35px 15px;
        /* Reduced */
    }

    .safety-section h2 {
        font-size: 1.7rem;
        /* Reduced */
    }

    .safety-subtitle {
        font-size: 0.9rem;
        /* Reduced */
        margin-bottom: 35px;
        /* Reduced */
    }

    .safety-features {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 30px;
        /* Reduced */
        max-width: 350px;
        /* Reduced */
    }

    .feature-icon {
        font-size: 2.5rem;
        /* Reduced */
        margin-bottom: 15px;
    }

    .feature h3 {
        font-size: 1rem;
        /* Reduced */
    }

    .feature p {
        font-size: 0.8rem;
        /* Reduced */
    }

    .games-section {
        padding: 40px 0;
        /* Changed from 40px 15px */
    }

    .games-container {
        padding: 0 15px;
        /* Add mobile padding here */
    }

    .games-subtitle {
        font-size: 0.8rem;
        margin-bottom: 30px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 280px;
    }

    .game-image {
        height: 160px;
    }

    .game-card h3 {
        font-size: 0.8rem;
    }

    .about-section {
        padding: 50px 15px;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .footer {
        padding: 30px 0 0 0;
        /* Removed bottom padding */
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }

    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .footer-buttons {
        gap: 12px;
    }

    .footer-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .social-link span {
        font-size: 1rem;
    }

    .image-showcase {
        height: 45vh;
        /* Slightly smaller on mobile */
    }

    .image-showcase {
        height: 45vh;
    }

    .image-text-overlay {
        top: 15px;
        max-width: 500px;
    }

    .image-text-overlay h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .image-text-overlay p {
        font-size: 1rem;
    }

    .image-overlay {
        bottom: 20px;
    }

    .showcase-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}




/* Here All CSS are for deposit and withdrawal screen */

.page-header {
    background: black;
    color: white;
    text-align: center;
    padding: 80px 20px 60px 20px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.header-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    color: #cccccc;
    margin: 0;
    line-height: 1.6;
}

.comparison-section {
    background-color: black;
    padding: 60px 20px;
}

.comparison-container {
    max-width: 800px;
    margin: 0 auto;
}

.payment-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.table-header div {
    padding: 20px;
    font-weight: 600;
    font-size: 1rem;
    color: #495057;
    text-align: center;
}

.method-header {
    text-align: left !important;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
    min-height: 70px;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background-color: #f8f9fa;
}

.method-cell {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
}

.payment-logo {
    width: 60px;
    height: 40px;
    object-fit: contain;
}

.method-name {
    font-size: 1rem;
    font-weight: 500;
    color: #00b8d4;
}

.status-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    font-size: 1.5rem;
    font-weight: bold;
}

.status-cell:not(.denied) {
    color: #28a745;
}

.status-cell.denied {
    color: #dc3545;
}

.security-features {
    background-color: black;
    padding: 80px 20px;
}

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

.security-features h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    text-align: center;
}

.feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.feature-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    color: red;
}

/* Red tint for safe-1.png */
img[src="safe-1.png"] {
    filter: brightness(1) sepia(1) hue-rotate(-50deg) saturate(5);
}

/* Red tint for safe-1.png */
img[src="safe-2.png"] {
    filter: brightness(1) sepia(1) hue-rotate(-50deg) saturate(5);
}

/* Red tint for safe-1.png */
img[src="safe-3.png"] {
    filter: brightness(1) sepia(1) hue-rotate(-50deg) saturate(5);
}

/* Red tint for safe-1.png */
img[src="safe-4.png"] {
    filter: brightness(1) sepia(1) hue-rotate(-50deg) saturate(5);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 0.95rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 10px;
}

.feature-link {
    color: red;
    text-decoration: none;
    font-weight: 500;
}

.feature-link:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .page-header {
        padding: 60px 20px 40px 20px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }

        .comparison-section {
        padding: 40px 10px;
    }
    
    .payment-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 2fr 1fr 1fr;
        min-width: 300px;
    }
    
    .table-header {
        display: grid;
    }
    
    .table-row {
        border-bottom: 1px solid #e9ecef;
        margin-bottom: 0;
        background: white;
        box-shadow: none;
        border-radius: 0;
    }
    
    .method-cell {
        border-bottom: none;
        background-color: transparent;
        font-weight: 500;
        justify-content: flex-start;
        padding: 15px 20px;
    }
    
    .status-cell {
        padding: 15px 20px;
        border-bottom: none;
        position: static;
    }
    
    .status-cell::before {
        display: none;
    }
    
    .payment-logo {
        width: 50px;
        height: 35px;
    }
    
    .method-name {
        font-size: 0.9rem;
    }

        .security-features {
        padding: 60px 15px;
    }
    
    .security-features h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 15px auto;
        display: flex;
        justify-content: center;
    }

        .feature-content {
        width: 100%;
    }
    
    .feature-img {
        max-width: 80px;
        height: auto;
    }
    
    .feature-content h3 {
        text-align: center;
        margin-top: 0;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }

    .security-container h2 {
        padding-bottom: 50px;
    }
}


/* Here All CSS are for the Home Of Online Poker screen */

.join-play-link {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.join-play-link:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.join-play-link p {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    position: relative;
}

.join-play-link p::after {
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.join-play-link:hover p::after {
    margin-left: 15px;
}

.poker-home-section {
    width: 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.poker-home-container {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.poker-home-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.poker-home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.poker-home-overlay h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.poker-home-overlay p {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
        .poker-home-overlay h2 {
        font-size: 2.2rem;
    }
    
    .poker-home-overlay p {
        font-size: 1.2rem;
    }
    
    .poker-home-image {
        max-height: 400px;
    }
}



/* Here All CSS are for the FAQ screen */

.faq-section {
    background-color: black;
    padding: 80px 20px;
}

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

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: red;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fafafa;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin: 0;
    padding-top: 20px;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .faq-section {
        padding: 60px 15px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p {
        padding-top: 15px;
        font-size: 0.9rem;
    }
}


/* Here All CSS are for the How To Play screen */

.how-to-play-image {
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 40px 20px;
}

@media (max-width: 900px) {
    .how-to-play-image {
        padding: 30px 15px;
        max-width: 100%;
    }
}


/* Here All CSS are for the How to join section */
.how-to-join-section {
    background-color: #000000;
    padding: 20px 20px;
    color: white;
}

.how-to-join-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.how-to-join-section h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.join-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 60px;
    font-weight: 300;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step-card {
    border-radius: 20px;
    padding: 45px 30px 35px;
    text-align: center;
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.step-card:nth-child(1),
.step-card:nth-child(2),
.step-card:nth-child(3) {
    background: linear-gradient(180deg, #111111, #990000);
    box-shadow: 0 10px 30px rgba(244, 67, 54, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(244, 67, 54, 0.3);
}

.step-card:hover .step-icon {
    transform: scale(1.05);
    opacity: 1;
}

.step-number {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.step-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-top: 0;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}

.step-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

.step-icon {
    width: 100%;
    max-width: 240px;
    height: 220px;
    margin: 20px auto 30px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    object-fit: contain;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.step-button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.app-store-badge {
    display: inline-block;
    width: 160px;
    height: 50px;
    margin: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    object-fit: contain;
    border-radius: 6px;
    padding: 0;
    background-color: transparent;
}

.app-store-badge.google-badge,
.app-store-badge.apple-badge {
    width: 200px;
    height: 70px;
    object-fit: cover;
    object-position: center;
}

.app-store-badge:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.app-store-badges a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
}

.app-store-badges {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin: 15px auto 0;
    padding: 5px;
    width: 100%;
    max-width: 350px;
}

/* Navigation buttons */
.steps-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.step-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.step-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .how-to-join-section {
        padding: 60px 15px;
    }
    
    .how-to-join-section h2 {
        font-size: 2.5rem;
    }
    
    .join-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .step-card {
        min-height: 350px;
        padding: 30px 20px 20px;
    }
    
    .step-number {
        font-size: 1.5rem;
    }
    
    .step-card h3 {
        font-size: 1.5rem;
    }
    
    .step-icon {
        height: 180px;
        margin: 15px auto 20px;
        max-width: 200px;
    }
    
    .step-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .steps-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .how-to-join-section {
        padding: 40px 10px;
    }
    
    .how-to-join-section h2 {
        font-size: 2rem;
    }
    
    .join-subtitle {
        font-size: 1rem;
    }
    
    .step-card {
        min-height: 300px;
    }
    
    .step-card h3 {
        font-size: 1.3rem;
    }
    
    .step-icon {
        height: 120px;
    }
    
    .app-store-badge,
    .app-store-badge.google-badge,
    .app-store-badge.apple-badge {
        width: 140px;
        height: 45px;
    }
    
    .app-store-badges {
        gap: 10px;
        padding: 5px;
        flex-direction: row;
        max-width: 300px;
    }

        .offers-container {
        padding: 0 5px;
    }
    
    .welcome-offers {
        padding: 50px 0;
    }
    
    .offers-container {
        width: 90%;
    }
    
    .offer-card {
        padding: 0;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    .offer-image {
        max-width: 100%;
        width: auto;
        height: auto;
    }
}

/* Our Clubs Section */
.our-clubs-section {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    padding: 20px 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.our-clubs-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, transparent 20%, #000000 70%);
    opacity: 0.7;
    z-index: 0;
}

.our-clubs-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.our-clubs-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
}

.clubs-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 70px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clubs-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}

.club-card {
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    height: auto;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    max-width: 600px;
        margin-left: auto;
    margin-right: auto;
}

.club-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(125deg, rgba(0, 183, 100, 0.15), rgba(0, 0, 0, 0));
    border-radius: 20px;
    z-index: 0;
}

.club-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(0, 183, 100, 0.2);
    border: 1px solid rgba(0, 183, 100, 0.3);
}

.club-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.club-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    transition: transform 0.8s ease;
    filter: brightness(0.8) contrast(1.1);
}

.club-card:hover .club-image {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(1) contrast(1.1);
}

.club-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    z-index: 1;
}

.club-content {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: center;
}

.club-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 15px;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.club-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #00b764, #00e676);
}

.club-details-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0;
}

.club-detail {
    padding: 6px 12px;
    border: 1px solid rgba(0, 183, 100, 0.3);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    background: rgba(0, 183, 100, 0.1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.club-detail:hover {
    background: rgba(0, 183, 100, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

.detail-label {
    font-weight: 600;
    color: rgba(0, 183, 100, 0.9);
    margin-right: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.detail-value {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.club-feature-list {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.club-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.club-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.2rem;
    color: red;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 183, 100, 0.1);
    border-radius: 50%;
    padding: 5px;
}

.feature-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
}

.club-description {
    margin: 15px 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    text-align: left;
}

.club-description::before {
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 3rem;
    color: rgba(0, 183, 100, 0.6);
    font-family: serif;
    line-height: 1;
}

.feature-description {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 5px 0;
    text-align: left;
    margin: 10px 0;
}

.club-button {
    margin-top: 10px;
    background: linear-gradient(135deg, #00b764, #00e676);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.4s ease;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 183, 100, 0.3);
    z-index: 2;
}

.club-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
    transition: all 0.6s ease;
    z-index: -1;
}

.club-button:hover {
    box-shadow: 0 10px 25px rgba(0, 183, 100, 0.4);
    transform: translateY(-3px);
}

.club-button:hover::before {
    left: 100%;
}

/* Mobile styles for Our Clubs Section */
@media (max-width: 900px) {
    .our-clubs-section {
        padding: 70px 15px;
    }
    
    .our-clubs-section h2 {
        font-size: 2.5rem;
    }
    
    .clubs-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .clubs-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .club-card {
        flex-direction: column;
        height: auto;
    }
    
    .club-content {
        padding: 20px 15px;
    }
    
    .club-content h3 {
        font-size: 1.8rem;
    }
    
    .club-image-container {
        width: 100%;
        height: 180px;
    }
    
    .club-detail {
        width: calc(50% - 10px);
        justify-content: center;
    }
    
    .club-details-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .club-feature {
        padding: 8px 12px;
    }
    
    .club-feature-list {
        margin: 15px 0;
        gap: 12px;
        flex-direction: column;
    }
    
    .club-feature {
        flex: 1 1 100%;
    }
    
    .feature-icon {
        width: 25px;
        height: 25px;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
    
    .club-description {
        font-size: 0.9rem;
        padding: 12px;
        margin: 20px 0;
    }
    
    .club-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .our-clubs-section h2 {
        font-size: 2rem;
    }
    
    .club-detail {
        width: 100%;
    }
    
    .club-content h3 {
        font-size: 1.6rem;
    }
}

/* Removed custom widescreen styles */