/*
Theme Name: May88 Theme
Theme URI: https://may88.io
Author: May88 Team
Author URI: https://may88.io
Description: May88 Nhà Cái Bóng Đá Đẳng Cấp Châu Á
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: may88
*/

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.site-title span {
    color: #e94560;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-size: 14px;
}

.nav-menu a:hover {
    background-color: #e94560;
    color: #fff;
}

.nav-menu .current-menu-item a {
    background-color: #e94560;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #e94560;
    color: #fff;
}

.btn-primary:hover {
    background-color: #c73e54;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #e94560;
}

.btn-secondary:hover {
    background-color: #e94560;
    color: #fff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/hero-bg.png') center/cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 3px;
}

.hero-title span {
    color: #e94560;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-buttons .btn {
    padding: 15px 40px;
    font-size: 16px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a2e;
    text-transform: capitalize;
}

.section-title span {
    color: #e94560;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 48px;
    color: #e94560;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.feature-desc {
    color: #666;
    line-height: 1.8;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.game-content {
    padding: 25px;
}

.game-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.game-desc {
    color: #666;
    margin-bottom: 15px;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background-color: #fff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a2e;
    text-transform: capitalize;
    text-align: center;
}

.content-wrapper h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1a1a2e;
    text-transform: capitalize;
}

.content-wrapper h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #16213e;
    text-transform: capitalize;
}

.content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-wrapper li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #444;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e94560 0%, #c73e54 100%);
    text-align: center;
    color: #fff;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.cta-desc {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn {
    background-color: #fff;
    color: #e94560;
    padding: 15px 40px;
    font-size: 16px;
}

.cta-section .btn:hover {
    background-color: #1a1a2e;
    color: #fff;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a1a2e;
}

.faq-answer {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.footer-brand h3 span {
    color: #e94560;
}

.footer-brand p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: #e94560;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e94560;
}

.footer-seo {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 30px;
}

.footer-seo p {
    color: #888;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #1a1a2e;
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s ease;
    }
    
    .main-navigation.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px;
        text-align: center;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .content-wrapper h1 {
        font-size: 28px;
    }
    
    .content-wrapper h2 {
        font-size: 24px;
    }
}
