* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.navbar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

.lang-switch {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.lang-switch:hover {
    background: rgba(255,255,255,0.3);
}

/* Tagline */
.tagline {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 0.8rem 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tagline p {
    margin: 0;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Matches Grid */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.match-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.match-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.match-round {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
}

.match-date {
    color: #666;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.team {
    flex: 1;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.vs {
    font-weight: 800;
    color: #ff6b35;
    font-size: 1.2rem;
    padding: 0 1rem;
}

.match-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Match Detail */
.match-detail-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.match-detail-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.vs-text {
    color: #ff6b35;
    font-weight: 800;
}

.match-meta {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Article */
.match-article {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.match-article h2 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-content p {
    margin-bottom: 1.2rem;
}

.article-content .twitter-tweet {
    margin: 2rem auto !important;
    max-width: 550px;
}

/* Predictions */
.predictions-section {
    margin: 3rem 0;
}

.social-section {
    margin: 3rem 0;
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tweets-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.prediction-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 5px solid;
}

.prediction-card.gambler {
    border-left-color: #ff6b35;
}

.prediction-card.newbie {
    border-left-color: #00b4d8;
}

.prediction-card.expert {
    border-left-color: #06d6a0;
}

.prediction-header {
    margin-bottom: 1.5rem;
}

.predictor-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.predictor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.predictor-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.predictor-desc {
    color: #666;
    font-size: 0.95rem;
}

.prediction-title {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.prediction-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.prediction-content p {
    margin-bottom: 1.2rem;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.disclaimer {
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid #ff6b35;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.disclaimer p {
    margin: 0;
}

.copyright {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .match-detail-hero h1 {
        font-size: 1.8rem;
    }
    
    .matches-grid {
        grid-template-columns: 1fr;
    }
    
    .predictor-avatar {
        width: 60px;
        height: 60px;
    }
}
