* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f4f7fa;
}

.section-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Navigation */
.navbar {
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
    padding: 18px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 6px;
}

.nav-menu a:hover,
.nav-menu a.nav-active {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}


/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%),
                url('https://tse-mm.bing.com/th?q=casino+gaming+background.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    min-height: 550px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    padding: 80px 25px;
}

.hero-content {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #ff6b6b;
    color: #fff;
    box-shadow: 0 6px 20px rgba(255,107,107,0.4);
}

.btn-primary:hover {
    background: #ee5a52;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,107,0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}


/* Features Section */
.features-section {
    padding: 80px 25px;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.feature-box {
    background: #f8f9fa;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102,126,234,0.2);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-box h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    color: #7f8c8d;
    font-size: 15px;
    line-height: 1.7;
}


/* Games Showcase */
.games-showcase {
    padding: 80px 25px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.games-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.game-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.game-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.game-thumbnail {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-item:hover .game-thumbnail img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-item:hover .game-overlay {
    opacity: 1;
}

.game-play-btn {
    padding: 12px 35px;
    background: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.game-play-btn:hover {
    background: #ee5a52;
    transform: scale(1.05);
}

.game-info {
    padding: 20px;
}

.game-info h4 {
    font-size: 19px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
}

.game-category {
    display: inline-block;
    padding: 4px 12px;
    background: #e8f4f8;
    color: #1e3c72;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}


/* Testimonials */
.testimonials-area {
    padding: 80px 25px;
    background: #fff;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(102,126,234,0.3);
    transition: transform 0.3s;
}

.testimonial-box:hover {
    transform: translateY(-8px);
}

.testimonial-rating {
    font-size: 24px;
    color: #ffd700;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.85;
}

/* Footer */
.site-footer {
    background: #1a1a2e;
    color: #fff;
    padding: 60px 25px 25px;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ff6b6b;
    font-weight: 700;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: #ff6b6b;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .brand {
        font-size: 24px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .features-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .games-carousel {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 20px;
    }
    
    .nav-menu a {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .feature-box {
        padding: 30px 20px;
    }
    
    .feature-box h3 {
        font-size: 19px;
    }
    
    .game-info h4 {
        font-size: 17px;
    }
    
    .testimonial-box {
        padding: 25px;
    }
}
