* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --header-bg: #0A0E1A;
    --primary-text: #ffffff;
    --secondary-text: rgba(255, 255, 255, 0.7);
    --accent-color: #22C55E;
    --hover-bg: rgba(255, 255, 255, 0.1);
    --header-height: 64px;
}
html,body{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}
body {
    font-family: Arial, sans-serif;
    background-color: #0D1117;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background-color: #0D1117;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Left side */
.free-money-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #FFD700;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.free-money-btn:hover {
    background-color: #FFC800;
}

/* Right side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.promotions {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.promo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #8A2BE2;
    border-radius: 8px;
}

.user-profile {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.user-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}

.language-selector:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.flag-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #1F2937;
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    min-width: 150px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.language-dropdown.active {
    display: block;
}

.language-dropdown a {
    display: block;
    padding: 8px 16px;
    color: white;
    text-decoration: none;
}

.language-dropdown a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 16px;
    }

    .promotions span {
        display: none;
    }

    .nav-right {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 12px;
    }

    .free-money-btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    .nav-right {
        gap: 12px;
    }

    .promo-icon {
        width: 28px;
        height: 28px;
    }

    .user-profile {
        width: 28px;
        height: 28px;
    }
}





/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #18181b;
    color: white;
}

/* Header styles */
.header {
    background-color: #09090b;
    border-bottom: 1px solid #27272a;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo styles */
.nav-logo {
    display: flex;
    align-items: center;
}

.logo {
    height: 6rem;
    width: 170px;
}

/* Navigation menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0 1rem;
    flex: 1;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #a1a1aa;
}

/* Badge styles */
.badge {
    background-color: #22c55e;
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Button styles */
.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-login {
    background-color: transparent;
    color: white;
    border: none;
}

.btn-login:hover {
    background-color: #27272a;
}

.btn-register {
    background-color: #22c55e;
    color: white;
    border: none;
}

.btn-register:hover {
    background-color: #16a34a;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Mobile menu active state */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Media queries */
@media (max-width: 1024px) {
   
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 3.5rem;
        left: 0;
        width: 100%;
        height: calc(100vh - 3.5rem);
        background-color: #09090b;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 0 1rem;
    }
}



/* Hero section */
.hero {
    width: 100%;
    padding: 2rem;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

/* Slider styles */

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider navigation */
.slider-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.prev-btn,
.next-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background: white;
}

/* Promo cards */
.promo-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.promo-card {
    flex: 1;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.cashback {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.bonus {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.card-content {
    position: relative;
    z-index: 1;
}

.promo-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.btn-casino,
.btn-registration {
    background: white;
    color: #1a1a1a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-casino:hover,
.btn-registration:hover {
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .promo-cards {
        flex-direction: row;
    }

    .promo-card {
        flex: 1;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 1rem;
    }

    .promo-cards {
        flex-direction: column;
    }

    .promo-card h2 {
        font-size: 1.5rem;
    }
}



.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.timer-item {
    text-align: center;
}

.timer-value {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.timer-label {
    font-size: 14px;
    opacity: 0.8;
}
.countdown-container {
    background: linear-gradient(135deg, #4a0011 0%, #ff0844 100%);
    padding: 20px;
    border-radius: 12px;
    color: white;
}

.header12 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo {
    width: 80px;
    height: auto;
}

.title {
    font-size: 24px;
    font-weight: bold;
    color: #ff0844;
}




.separator {
    color: #ff0844;
    font-size: 48px;
    margin-top: -10px;
}

.sports-container {
    background-color: #0A0B1A;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* ডেস্কটপ ভিউ - গ্রিড লেআউট */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

/* মোবাইল ভিউ - স্লাইডার লেআউট */
@media (max-width: 768px) {
    .sports-slider {
        position: relative;
        overflow: hidden;
    }
    
    .sports-grid {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        padding-bottom: 10px;
    }
    
    .sports-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    
    .sport-item {
        min-width: 120px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    .slider-nav {
        display: flex;
        justify-content: center;
        margin-top: 15px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .slider-dot.active {
        background-color: white;
    }
}

.sport-item {
    background-color: #1A1B2E;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sport-item:hover {
    background-color: #2A2B3E;
}

.sport-icon {
    font-size: 24px;
    color: #60A5FA;
    margin-bottom: 8px;
}

.sport-name {
    color: #60A5FA;
    font-size: 14px;
}

@media (max-width: 480px) {
    .sports-container {
        padding: 15px;
    }
    
    .sport-item {
        min-width: 100px;
        padding: 12px 15px;
    }
    
    .sport-icon {
        font-size: 20px;
    }
    
    .sport-name {
        font-size: 12px;
    }
}
.sport-name {
    color: #60A5FA;
    font-size: 14px;
}

@media (max-width: 768px) {
    .timer {
        flex-wrap: wrap;
    }

    .timer-value {
        font-size: 36px;
    }

    .separator {
        font-size: 36px;
    }

    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sports-grid {
        grid-template-columns: 1fr;
    }
}



.games-section {
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 15px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.game-count {
    color: #666;
    font-size: 14px;
}

.view-all {
    color: #007BFF;
    text-decoration: none;
    font-size: 14px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 1/1.3; /* Height will be 1.3 times the width */
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient overlay for game cards */
.game-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        aspect-ratio: 1/1.5;
    }
}
.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    padding: 10px 0;
}

.game-card {
    min-width: 240px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}



.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

@media (max-width: 768px) {
    .game-card {
        min-width: 150px;
    }

    .game-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .game-card {
        min-width: 130px;
    }

    .game-image {
        height: 180px;
    }

    .nav-button {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: -1;
}

.games-section {
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 15px;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}


.game-count {
    color: #666;
    font-size: 14px;
}

.view-all {
    color: #007BFF;
    text-decoration: none;
    font-size: 14px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
}

.game-image {
    width: 100%;
    height: 157px;
    object-fit: cover;
}

/* Gradient overlay for game cards */
.game-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    pointer-events: none;
}

@media (max-width: 1400px) {
    .games-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
}
}

@media (max-width: 1200px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
}
}

@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .games-section {
        padding: 15px;
    }
}
.games-section {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-count {
    color: #666;
    font-size: 14px;
}

.view-all {
    color: #007BFF;
    text-decoration: none;
    font-size: 14px;
}

.slider-container {
    position: relative;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
}





/* Footer styles */
.footer {
    background-color: brown;
    color: white;
    padding: 24px 4px;
    min-height: 10vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: -98;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

/* Newsletter section */
.newsletter-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
}

.newsletter-form {
    margin-bottom: 32px;
}

.input-group {
    position: relative;
}

.input-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid white;
    padding: 8px 48px 8px 0;
    color: white;
    font-size: 1rem;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-group input:focus {
    outline: none;
}

.submit-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.submit-btn svg {
    width: 20px;
    height: 20px;
    color: #00008B;
}

/* Social links */
.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    background: white;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: #00008B;
}

/* Navigation links */
.nav-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-column a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.nav-column a:hover {
    opacity: 0.8;
}

/* Footer bottom */
.footer-bottom {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.7;
}

.country-select {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
}

.country-select option {
    background: #00008B;
}

/* Responsive design */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 5fr 7fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}