/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0d131c;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(13, 19, 28, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 36, 0, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #ff2400;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff2400;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ff2400;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff2400, #ff4d33);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 36, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 36, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #04cfaa;
    border: 2px solid #04cfaa;
}

.btn-secondary:hover {
    background: #04cfaa;
    color: #0d131c;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #0d131c;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0d131c 0%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 36, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #ff2400;
    background: linear-gradient(135deg, #ff2400, #ff4d33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #04cfaa;
    font-weight: 500;
}

.feature img {
    width: 24px;
    height: 24px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-girl {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 36, 0, 0.3));
}

/* Section Styles */
.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-description {
    text-align: center;
    color: #cccccc;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Casino Games Section */
.casino-games {
    padding: 80px 0;
    background: #0d131c;
}

.games-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    color: #cccccc;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: #ff2400;
    border-color: #ff2400;
    color: #ffffff;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.game-card {
    background: linear-gradient(135deg, #1a2332, #2a3441);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 36, 0, 0.1);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 36, 0, 0.2);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-content {
    padding: 25px;
}

.game-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.game-content p {
    color: #cccccc;
    margin-bottom: 20px;
}

/* Live Dealers Section */
.live-dealers {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332, #0d131c);
}

.live-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.live-game {
    background: linear-gradient(135deg, #1a2332, #2a3441);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(4, 207, 170, 0.1);
    transition: transform 0.3s ease;
}

.live-game:hover {
    transform: translateY(-5px);
}

.live-preview {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.live-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff2400;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.viewers {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.live-game h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.live-game p {
    padding: 0 20px 20px;
    color: #cccccc;
    font-size: 14px;
}

/* Crash Games Section */
.crash-games {
    padding: 80px 0;
    background: #0d131c;
}

.crash-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.crash-game {
    background: linear-gradient(135deg, #1a2332, #2a3441);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 36, 0, 0.1);
    transition: transform 0.3s ease;
}

.crash-game:hover {
    transform: translateY(-5px);
}

.crash-preview {
    position: relative;
    margin-bottom: 20px;
}

.crash-preview img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.crash-multiplier {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #04cfaa;
    color: #0d131c;
    padding: 4px 8px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
}

.crash-game h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.crash-game p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 14px;
}

/* TV Games Section */
.tv-games {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332, #0d131c);
}

.tv-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tv-game {
    background: linear-gradient(135deg, #1a2332, #2a3441);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(4, 207, 170, 0.1);
    transition: transform 0.3s ease;
}

.tv-game:hover {
    transform: translateY(-5px);
}

.tv-game img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.tv-game h3 {
    padding: 20px 20px 10px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.tv-game p {
    padding: 0 20px 20px;
    color: #cccccc;
    font-size: 14px;
}

/* Sports Betting Section */
.sports-betting {
    padding: 80px 0;
    background: #0d131c;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sport-category {
    background: linear-gradient(135deg, #1a2332, #2a3441);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 36, 0, 0.1);
    transition: transform 0.3s ease;
}

.sport-category:hover {
    transform: translateY(-5px);
}

.sport-category img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.sport-category h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.sport-category p {
    color: #cccccc;
    font-size: 14px;
}

/* Promotions Section */
.promotions {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332, #0d131c);
}

.promo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.promo-card {
    background: linear-gradient(135deg, #1a2332, #2a3441);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 36, 0, 0.1);
    transition: transform 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
}

.promo-card.featured {
    border: 2px solid #ff2400;
}

.promo-image {
    height: 200px;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content {
    padding: 25px;
}

.promo-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.promo-content p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 14px;
}

.promo-features {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.bonus-amount {
    font-size: 24px;
    font-weight: 800;
    color: #ff2400;
}

.bonus-text {
    color: #cccccc;
    font-size: 14px;
}

/* Mobile App Section */
.mobile-app {
    padding: 80px 0;
    background: #0d131c;
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    gap: 20px;
}

.download-btn {
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.05);
}

.download-btn img {
    height: 60px;
    width: auto;
}

.mobile-image img {
    max-width: 100%;
    height: auto;
}

/* Payment Section */
.payment {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332, #0d131c);
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
}

/* Footer */
.footer {
    background: #0a0f16;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 36, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff2400;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff2400;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff2400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .games-grid,
    .live-games,
    .crash-games-grid,
    .tv-games-grid,
    .sports-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .payment-methods {
        gap: 20px;
    }
    
    .games-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.games-grid,
.live-games,
.crash-games-grid,
.tv-games-grid,
.sports-grid,
.promo-grid {
    animation: fadeInUp 0.8s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0d131c;
}

::-webkit-scrollbar-thumb {
    background: #ff2400;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff4d33;
}
