* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a472a;
    --secondary: #00d084;
    --dark: #0a1929;
    --light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark);
    color: #fff;
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    background: rgba(10, 25, 41, 0.95);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-right: 2rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--secondary);
}

.top-social a {
    margin: 0 0.5rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar-custom {
    background: rgba(10, 25, 41, 0.98);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn-login {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-login:hover {
    background: var(--secondary);
    color: #000;
}

.btn-register {
    padding: 0.5rem 1.5rem;
    background: var(--secondary);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-register:hover {
    background: #00b870;
    transform: translateY(-2px);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.9) 0%, rgba(26, 71, 42, 0.9) 100%),
                url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1920') center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--secondary);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #00b870;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 208, 132, 0.4);
}

.btn-secondary {
    padding: 1rem 2rem;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--secondary);
    color: #000;
}

.hero-featured {
    display: flex;
    justify-content: center;
}

.featured-card {
    background: rgba(19, 47, 76, 0.95);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: bold;
}

.live-indicator {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.team {
    text-align: center;
    flex: 1;
}

.team-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.team-odds {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: bold;
}

.vs {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0 1rem;
}

.btn-bet {
    width: 100%;
    padding: 0.75rem;
    background: var(--secondary);
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-bet:hover {
    background: #00b870;
    transform: translateY(-2px);
}

/* Quick Access */
.quick-access {
    padding: 2rem 0;
    background: rgba(19, 47, 76, 0.5);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(19, 47, 76, 0.8);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.quick-item:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    background: rgba(0, 208, 132, 0.1);
}

.quick-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Sports Section */
.sports-section {
    padding: 80px 0;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.sport-card {
    background: rgba(19, 47, 76, 0.8);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.sport-card:hover {
    border-color: var(--secondary);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.3);
}

.sport-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.sport-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.sport-card p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.sport-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: bold;
}

/* Casino Section */
.casino-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.casino-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.75rem 2rem;
    background: rgba(19, 47, 76, 0.8);
    border: 2px solid transparent;
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    border-color: var(--secondary);
    background: rgba(0, 208, 132, 0.1);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.game-tile {
    background: rgba(19, 47, 76, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.game-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.3);
}

.game-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-tile:hover .game-overlay {
    opacity: 1;
}

.btn-play {
    padding: 0.75rem 2rem;
    background: var(--secondary);
    color: #000;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}

.game-info {
    padding: 1rem;
}

.game-info h4 {
    margin-bottom: 0.25rem;
}

.game-provider {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Promotions Section */
.promotions-section {
    padding: 80px 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.promo-card {
    background: rgba(19, 47, 76, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.promo-card.featured {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.1) 0%, rgba(19, 47, 76, 0.8) 100%);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.3);
}

.promo-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff4444;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.promo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.promo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.promo-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.btn-claim {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--secondary);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-claim:hover {
    background: #00b870;
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
}

.feature-box i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.feature-box h4 {
    margin-bottom: 0.5rem;
}

/* Support Section */
.support-section {
    padding: 80px 0;
}

.support-wrapper {
    background: rgba(19, 47, 76, 0.8);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.support-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.support-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.support-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(0, 208, 132, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.support-method:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.support-method i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer-custom {
    background: rgba(10, 25, 41, 0.98);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-col h5 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-methods span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-methods {
        flex-direction: column;
    }
}
