* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00a850;
    --secondary-color: #0054a8;
    --accent-color: #ffd700;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.brand-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 70px 1rem 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #008040;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #003366;
    transform: translateY(-2px);
}

.live-matches {
    padding: 80px 0 40px;
    background: var(--background-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 100%;
    padding: 0 1rem;
}

.matches-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.match-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    width: 100%;
    margin: 0 auto;
}

.teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.score {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    flex: 1;
    text-align: center;
}

.match-time {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.match-status {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.match-status.live {
    background: #dc3545;
    color: var(--white);
}

.match-status.upcoming {
    background: var(--accent-color);
    color: var(--text-dark);
}

.news {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1.2rem;
}

.news-content h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more:hover {
    text-decoration: underline;
}

.analytics {
    padding: 80px 0;
    background: var(--background-light);
}

.prediction-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: 100%;
    margin: 0 auto;
}

.prediction-card h3 {
    margin-bottom: 1.2rem;
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.team-prediction {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.odds {
    font-weight: 700;
    color: var(--primary-color);
}

.prediction-analysis {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 2px solid var(--accent-color);
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

.translation {
    padding: 80px 0;
}

.channels-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.channel-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.channel-card:hover {
    transform: translateY(-3px);
}

.channel-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.channel-card h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.channel-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.reviews {
    padding: 80px 0;
    background: #f8f9fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.reviews-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.reviews-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.reviews-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #212529;
}

.reviews-card p {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.5;
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-note {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #555;
    font-size: 0.9rem;
    color: #aaa;
}

.matches {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.match-header {
    text-align: center;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f3f4;
}

.teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.team {
    font-weight: 700;
    font-size: 1.1rem;
}

.team.home {
    color: var(--primary-color);
}

.team.away {
    color: var(--secondary-color);
}

.vs {
    color: var(--text-light);
    font-weight: 500;
}

.match-tournament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.match-tournament i {
    color: var(--accent-color);
}

.match-details {
    margin-bottom: 1.2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
}

.detail-item span {
    flex: 1;
    text-align: center;
}

.detail-item i {
    color: var(--primary-color);
    width: 16px;
}

.match-preview {
    margin-bottom: 1.2rem;
}

.match-preview h4 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.match-preview p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.match-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-reminder, .btn-prediction {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.btn-reminder {
    background: var(--primary-color);
    color: var(--white);
}

.btn-reminder:hover {
    background: #008040;
    transform: translateY(-2px);
}

.btn-prediction {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-prediction:hover {
    background: #003366;
    transform: translateY(-2px);
}

.match-card--wide,
.match-card.double,
.match-card-full {
    grid-column: 1;
}

@media (min-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .brand-text {
        display: inline;
    }
    
    .news-grid,
    .channels-grid,
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (min-width: 768px) {
    .nav {
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .matches-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .match-card--wide,
    .match-card.double {
        grid-column: span 2;
    }
    
    .match-card-full {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .matches-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .teams {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .match-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .nav {
        padding: 0.8rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .match-card,
    .news-card,
    .channel-card,
    .reviews-card {
        padding: 1.2rem;
    }
    
    .btn-reminder, .btn-prediction {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}