/* 
* BetTipsPro - Football Betting Tips Website
* Main Stylesheet
*/
/* @font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-variablefont_wdthwght-webfont.woff2') format('woff2'),
         url('../fonts/roboto/roboto-variablefont_wdthwght-webfont.woff') format('woff');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto-italic';
    src: url('../fonts/roboto/roboto-italic-variablefont_wdthwght-webfont.woff2') format('woff2'),
         url('../fonts/roboto/roboto-italic-variablefont_wdthwght-webfont.woff') format('woff');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
} */


/* ===== BASE STYLES ===== */
:root {
    --primary-color: #ff9800;
    --primary-dark: #e68a00;
    --secondary-color: #ff9800;
    --secondary-dark: #1976D2;

    --dark-color: #1e2a38;
    --dark-color-lighter: #2c3e50;
    --light-color: #f4f7f9;
    --light-bg: #f5f7fa;
    --white-color: #ffffff;

    --success-color: #4CAF50;
    --warning-color: #ff9800;
    --danger-color: #F44336;

    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
  }
main{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
body {
    font-family:'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn,
.read-more-btn,
.view-full-match,
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}


.btn:hover {
    background-color: #1565c0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ===== HEADER ===== */
header {
    background-color: var(--dark-color);
    color: white;
    padding: 6px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo span {
    color: var(--secondary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
}

nav ul li a:hover, nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://betprofe.com/wp-content/uploads/2025/04/betprode_img.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===== MAIN CONTENT ===== */
main {
    padding: 30px 0;
}

.content-wrapper {
    display: flex;
    gap: 30px;
}

.main-content {
    flex: 2;
}

.sidebar {
    flex: 1;
}

.main-content h2, .sidebar h3, .stats-section h2 {
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.main-content h2::after, .sidebar h3::after, .stats-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Match Cards */
.match-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
}

.match-header {
    background-color: var(--dark-color);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.league {
    font-weight: 600;
}

.league i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid var(--light-gray);
}

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

.team-name {
    font-weight: 700;
    font-size: 18px;
}

.vs {
    font-weight: 700;
    color: var(--gray-color);
    padding: 0 15px;
}

.prediction {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.prediction h3, .analysis h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.bet-tip, .odds, .confidence {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.tip-label, .odds-label, .confidence-label {
    font-weight: 600;
    margin-right: 5px;
}
.predition__tip{
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.confidence-text {
    margin-left: 10px;
    font-weight: 600;
    color: var(--dark-color);
}

.tip-value {
    font-weight: 700;
    color: var(--primary-color);
}

.odds-value {
    font-weight: 700;
    color: var(--secondary-color);
}

.confidence-meter {
    width: 150px;
    height: 10px;
    background-color: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background-color: var(--success-color);
}

.confidence-meter.low .meter-fill {
    width: 33%;
}

.confidence-meter.medium .meter-fill {
    width: 66%;
}

.confidence-meter.high .meter-fill {
    width: 85%;
}

.confidence-meter.very-high .meter-fill {
    width: 100%;
}

.analysis {
    padding: 20px;
}

.analysis p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* Sidebar Widgets */
.widget {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
}
.widget ul li {
    border-bottom: 1px solid var(--light-gray);
}

.widget ul li:last-child {
    border-bottom: none;
}

.match-info, .result-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.league-small {
    font-size: 12px;
    color: var(--gray-color);
}

.teams-small {
    font-weight: 600;
}

.date-small {
    font-size: 12px;
    color: var(--gray-color);
}

.tip-result {
    font-size: 12px;
    font-weight: 600;
}

.tip-result.success {
    color: var(--success-color);
}

.tip-result.fail {
    color: var(--danger-color);
}

.newsletter p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

.newsletter form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter input {
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
}

/* Stats Section */
.stats-section {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats-section h2 {
    color: white;
}

.stats-section h2::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    min-width: 200px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-contact h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.copyright {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .sidebar {
        order: -1;
    }
    
    .widget {
        margin-bottom: 20px;
    }
    
    .stats-container {
        gap: 15px;
    }
    
    .stat-box {
        min-width: 150px;
        padding: 20px;
    }
    
    .hero h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    header{
        padding: 6px 0;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0px;
    }
    body > section.hero > div > div > a{
        display: none;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero h2 {
        font-size: 18px;
    }
    
    .teams {
        flex-direction: column;
        gap: 10px;
    }
    
    .vs {
        margin: 10px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .match-card {
        margin-bottom: 20px;
    }
    
    .prediction, .analysis {
        padding: 15px;
    }
    
    .main-content h2, .sidebar h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .match-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .bet-tip, .odds, .confidence {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tip-label, .odds-label, .confidence-label {
        width: auto;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-box {
        width: 100%;
        max-width: 250px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero h2 {
        font-size: 18px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .main-content h2, .sidebar h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .analysis p {
        font-size: 14px;
    }
    
    .footer-logo h2 {
        font-size: 20px;
    }
    
    .footer-disclaimer p, .copyright {
        font-size: 11px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .hero h2 {
        font-size: 14px;
    }
    
    .match-header {
        padding: 10px;
    }
    
    .teams {
        padding: 15px 10px;
    }
    
    .team-name {
        font-size: 16px;
    }
    
    .prediction, .analysis {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .stat-box {
        padding: 20px 10px;
    }
    
    nav ul li a {
        padding: 6px 8px;
        font-size: 14px;
    }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color:white;;
}

.logo span {
    color: var(--primary-color);
    font-weight: 800;
}

nav ul {
    display: flex;
    gap: 5px;
}

nav ul li a {
    padding: 10px 15px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

nav ul li a:hover, 
nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Enhanced page headers */
.page-header {
    background: linear-gradient(to right, var(--dark-color-lighter), var(--dark-color));
    color: white;
    padding: 30px 0;
    margin-bottom: 30px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 800px;
}

/* Enhanced match cards */
.match-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 25px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

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

.league-icon {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 20px;
}

.league-name {
    font-weight: 600;
    color: var(--dark-color);
}

.match-date {
    font-size: 14px;
    color: var(--gray-color);
    display: flex;
    align-items: center;
}

.match-date i {
    margin-right: 5px;
}

.teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    background: linear-gradient(to bottom, white, #f9f9f9);
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
}

.team-logo {
    background: rgba(0, 0, 0, 0.03);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.team-name {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: var(--dark-color);
}

.vs {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-color);
    position: relative;
}

/* .vs::before, .vs::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 20px;
    background-color: var(--light-gray);
    top: 50%;
} */

.vs::before {
    right: 100%;
    margin-right: 10px;
}

.vs::after {
    left: 100%;
    margin-left: 10px;
}

/* Enhanced prediction section */
.prediction {
    padding: 20px;
    border-top: 1px solid var(--light-gray);
    background: linear-gradient(to bottom, #f9f9f9, white);
}

.prediction-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.prediction-header i {
    margin-right: 10px;
    color: var(--primary-color);
}

.prediction-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.label {
    font-weight: 500;
    color: var(--gray-color);
    margin-right: 5px;
}

.value {
    font-weight: 600;
}

.value.home-win {
    color: var(--success-color);
}

.value.away-win {
    color: var(--secondary-color);
}

.value.draw {
    color: var(--gray-color);
}

.value.btts {
    color: var(--primary-color);
}

.odds-value {
    font-weight: 700;
    color: var(--primary-color);
    background-color: rgba(255, 152, 0, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.confidence-meter {
    width: 150px;
    height: 10px;
    background-color: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
}

.confidence-level {
    height: 100%;
    background: linear-gradient(to right, var(--success-color), var(--primary-color));
    border-radius: 5px;
}

.confidence-text {
    margin-left: 10px;
    font-weight: 500;
    color: var(--dark-color);
}

/* Enhanced analysis section */
.analysis {
    padding: 0 20px 20px;
}

.analysis-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.analysis-header i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.analysis-preview {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.analysis-full {
    display: none;
    padding: 15px;
    background-color: rgba(33, 150, 243, 0.05);
    border-radius: var(--border-radius);
    margin-top: 15px;
    border-left: 3px solid var(--secondary-color);
}

.analysis-full.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.read-more-btn, .view-full-match {
    display: inline-block;
    padding: 8px 16px;
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
}

.read-more-btn:hover, .view-full-match:hover {
    background-color: var(--secondary-color);
    color: white;
}

.view-full-match {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.view-full-match i {
    font-size: 16px;
}

/* Enhanced filter section */
.filter-section {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    margin-bottom: 30px;
}

.filter-header {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group select, 
.form-group input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    background-color: white;
    font-size: 16px;
    transition: var(--transition);
}

.form-group select:focus, 
.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
    outline: none;
}

.filter-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    width: 100%;
    margin-top: 10px;
}

.filter-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Enhanced date tabs */
.date-tabs {
    display: flex;
    margin-bottom: 25px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-gray);
}

.date-tabs::-webkit-scrollbar {
    height: 6px;
}

.date-tabs::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 3px;
}

.date-tabs::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 3px;
}

.date-tab {
    padding: 10px 20px;
    background-color: white;
    border: 1px solid var(--light-gray);
    color: var(--gray-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.date-tab:first-child {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.date-tab:last-child {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.date-tab.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.date-tab:hover:not(.active) {
    background-color: var(--light-bg);
}

/* Enhanced league section */
.league-section {
    margin-bottom: 40px;
}

.league-header {
    display: flex;
    align-items: center;
    /* margin-bottom: 20px; */
    padding-bottom: 10px;
    /* border-bottom: 2px solid var(--light-gray); */
}

.league-icon-large {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    background: rgba(255, 152, 0, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.league-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}
.widget {
    margin-bottom: 30px;
}

.widget-header {
    background: linear-gradient(to right, var(--dark-color), var(--dark-color-lighter));
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.widget-header i {
    margin-right: 10px;
}

.widget-content {
    padding: 20px;
}

.success-rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.success-rate-item:last-child {
    border-bottom: none;
}

.rate-label {
    font-weight: 500;
    color: var(--dark-color);
}

.rate-value {
    font-weight: 700;
    color: var(--success-color);
}

.popular-match {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.popular-match:last-child {
    border-bottom: none;
}

.popular-match a {
    color: var(--dark-color);
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.popular-match a:hover {
    color: var(--primary-color);
}

.match-teams {
    font-weight: 600;
    margin-bottom: 5px;
}

.match-time {
    font-size: 14px;
    color: var(--gray-color);
}

.newsletter {
    padding: 25px 20px;
    border-radius: var(--border-radius);
    color: white;
}

.newsletter h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

.newsletter p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.match-header-large h1 {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 15px;
}

.match-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.meta-item i {
    color: var(--primary-color);
}
.team-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
}

.team-logo-large {
    font-size: 64px;
    color: white;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-name-large {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: white;
}

.vs-large {
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.vs-large::before, .vs-large::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    top: 50%;
}

.vs-large::before {
    right: 100%;
    margin-right: 15px;
}

.vs-large::after {
    left: 100%;
    margin-left: 15px;
}

.match-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.match-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.match-section {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.section-header {
    background: linear-gradient(to right, rgba(30, 42, 56, 0.05), rgba(30, 42, 56, 0.1));
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
}

.section-header i {
    margin-right: 10px;
    color: var(--primary-color);
}

.section-content {
    padding: 20px;
}

.prediction-section .section-header i {
    color: var(--success-color);
}

.analysis-section .section-header i {
    color: var(--secondary-color);
}

.stats-section .section-header i {
    color: var(--primary-color);
}

.prediction-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.prediction-item:last-child {
    border-bottom: none;
}

.prediction-label {
    width: 150px;
    font-weight: 500;
    color: var(--gray-color);
}

.prediction-value {
    font-weight: 600;
    color: var(--dark-color);
}

.confidence-meter-large {
    width: 200px;
    height: 12px;
    background-color: var(--light-gray);
    border-radius: 6px;
    overflow: hidden;
    margin-right: 15px;
}

.confidence-level-large {
    height: 100%;
    background: linear-gradient(to right, var(--success-color), var(--primary-color));
    border-radius: 6px;
}

.team-form {
    margin-top: 20px;
}

.form-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.form-matches {
    margin-bottom: 20px;
}

.form-match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}

.form-match-teams {
    font-weight: 500;
}

.form-match-result {
    font-weight: 600;
}

.result-win {
    color: var(--success-color);
}

.result-loss {
    color: var(--danger-color);
}

.result-draw {
    color: var(--gray-color);
}

.head-to-head {
    margin-top: 30px;
}

.h2h-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.key-players {
    margin-top: 30px;
}

.player-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.player-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.player-icon {
    font-size: 24px;
    color: var(--dark-color);
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.player-info {
    flex: 1;
}

.player-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.player-stat {
    font-size: 14px;
    color: var(--gray-color);
}

.match-stats {
    margin-top: 20px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stat-bars {
    display: flex;
    width: 60%;
    height: 20px;
    background-color: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.stat-bar {
    height: 100%;
    transition: width 1s ease-in-out;
}

.stat-bar.home {
    background-color: var(--primary-color);
}

.stat-bar.away {
    background-color: var(--secondary-color);
}

.stat-value {
    font-weight: 600;
    width: 15%;
    text-align: center;
}

.match-sidebar {
    display: flex;
    flex-direction: column;
}

.betting-odds {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.odds-header {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.odds-header i {
    margin-right: 10px;
}

.odds-content {
    padding: 20px;
}

.odds-table {
    width: 100%;
    border-collapse: collapse;
}

.odds-table th {
    text-align: left;
    padding: 10px 5px;
    font-weight: 500;
    color: var(--gray-color);
    border-bottom: 1px solid var(--light-gray);
}

.odds-table td {
    padding: 12px 5px;
    border-bottom: 1px solid var(--light-gray);
}

.odds-table tr:last-child td {
    border-bottom: none;
}

.odds-value-large {
    font-weight: 700;
    color: var(--primary-color);
    background-color: rgba(255, 152, 0, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

.related-matches {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.related-header {
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-dark));
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.related-header i {
    margin-right: 10px;
}

.related-content {
    padding: 20px;
}

.related-match {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.related-match:last-child {
    border-bottom: none;
}

.related-match a {
    color: var(--dark-color);
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.related-match a:hover {
    color: var(--secondary-color);
}

/* Enhanced About Us page */
.about-section {
    margin-bottom: 50px;
}

.about-content {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.about-image {
    width: 40%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    width: 60%;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.approach-section {
    margin-bottom: 50px;
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.approach-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    transition: var(--transition);
}

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

.approach-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.approach-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.approach-description {
    color: var(--gray-color);
    line-height: 1.6;
}

.team-section {
    margin-bottom: 50px;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 200px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image i {
    font-size: 64px;
    color: var(--gray-color);
}

.member-info {
    padding: 20px;
}

.member-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.success-section {
    margin-bottom: 50px;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.stat-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.stat-description {
    color: var(--gray-color);
    line-height: 1.6;
}

.testimonials-section {
    margin-bottom: 50px;
}

.testimonials {
    margin-top: 30px;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    margin-bottom: 25px;
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-size: 60px;
    color: rgba(255, 152, 0, 0.1);
    position: absolute;
    top: 10px;
    left: 15px;
    font-family: Georgia, serif;
}

.testimonial-content {
    font-style: italic;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 24px;
    color: var(--gray-color);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.author-title {
    font-size: 14px;
    color: var(--gray-color);
}

.contact-section {
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.contact-details {
    width: 40%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 3px;
}

.contact-text {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-value {
    color: var(--gray-color);
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    width: 60%;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.form-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.faq-section {
    margin-bottom: 50px;
}

.faqs {
    margin-top: 30px;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--light-bg);
}

.faq-question h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
}

.faq-question i {
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--gray-color);
    line-height: 1.8;
}

.faq-item.active .faq-question {
    background-color: var(--light-bg);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* Enhanced footer */


.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    width: 40%;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    width: 20%;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links ul li a i {
    margin-right: 10px;
    font-size: 12px;
}

.footer-contact {
    width: 30%;
}

.contact-item-footer {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-icon-footer {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    text-align: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.copyright a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Enhanced mobile menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Enhanced animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Enhanced hover effects */
.hover-lift {
    transition: var(--transition);
}

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

.hover-glow {
    transition: var(--transition);
}

.hover-glow:hover {
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.5);
}

/* Enhanced buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    border: none;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 15px;
    font-size: 14px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Enhanced badges */
.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.badge-primary {
    background-color: var(--primary-color);
    color: white;
}

.badge-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.badge-success {
    background-color: var(--success-color);
    color: white;
}

.badge-danger {
    background-color: var(--danger-color);
    color: white;
}

/* Enhanced tooltips */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--dark-color) transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Enhanced cards */
.card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

.card-header {
    padding: 20px;
    background: linear-gradient(to right, rgba(30, 42, 56, 0.05), rgba(30, 42, 56, 0.1));
    border-bottom: 1px solid var(--light-gray);
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--dark-color);
}

.card-body {
    padding: 20px;
}

.card-footer {
    padding: 15px 20px;
    background-color: var(--light-bg);
    border-top: 1px solid var(--light-gray);
}

/* Enhanced alerts */
.alert {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.alert i {
    margin-right: 15px;
    font-size: 20px;
}

.alert-primary {
    background-color: rgba(255, 152, 0, 0.1);
    color: var(--primary-dark);
    border-left: 4px solid var(--primary-color);
}

.alert-secondary {
    background-color: rgba(33, 150, 243, 0.1);
    color: var(--secondary-dark);
    border-left: 4px solid var(--secondary-color);
}

.alert-success {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--danger-color);
    border-left: 4px solid var(--danger-color);
}

/* Enhanced tables */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    text-align: left;
    padding: 12px 15px;
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 2px solid var(--light-gray);
}

.table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-gray);
}

.table tr:last-child td {
    border-bottom: none;
}

.table tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.table-striped tbody tr:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

.table-bordered {
    border: 1px solid var(--light-gray);
}

.table-bordered th,
.table-bordered td {
    border: 1px solid var(--light-gray);
}

/* Enhanced utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-success { color: var(--success-color); }
.text-danger { color: var(--danger-color); }

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-success { background-color: var(--success-color); }
.bg-danger { background-color: var(--danger-color); }
.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--dark-color); }

.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.ml-0 { margin-left: 0; }
.mr-0 { margin-right: 0; }

.m-1 { margin: 0.25rem; }
.mt-1 { margin-top: 0.25rem; }
.mb-1 { margin-bottom: 0.25rem; }
.ml-1 { margin-left: 0.25rem; }
.mr-1 { margin-right: 0.25rem; }

.m-2 { margin: 0.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }

.m-3 { margin: 1rem; }
.mt-3 { margin-top: 1rem; }
.mb-3 { margin-bottom: 1rem; }
.ml-3 { margin-left: 1rem; }
.mr-3 { margin-right: 1rem; }

.m-4 { margin: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.ml-4 { margin-left: 1.5rem; }
.mr-4 { margin-right: 1.5rem; }

.m-5 { margin: 3rem; }
.mt-5 { margin-top: 3rem; }
.mb-5 { margin-bottom: 3rem; }
.ml-5 { margin-left: 3rem; }
.mr-5 { margin-right: 3rem; }

.p-0 { padding: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.pl-0 { padding-left: 0; }
.pr-0 { padding-right: 0; }

.p-1 { padding: 0.25rem; }
.pt-1 { padding-top: 0.25rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pl-1 { padding-left: 0.25rem; }
.pr-1 { padding-right: 0.25rem; }

.p-2 { padding: 0.5rem; }
.pt-2 { padding-top: 0.5rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pl-2 { padding-left: 0.5rem; }
.pr-2 { padding-right: 0.5rem; }

.p-3 { padding: 1rem; }
.pt-3 { padding-top: 1rem; }
.pb-3 { padding-bottom: 1rem; }
.pl-3 { padding-left: 1rem; }
.pr-3 { padding-right: 1rem; }

.p-4 { padding: 1.5rem; }
.pt-4 { padding-top: 1.5rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pl-4 { padding-left: 1.5rem; }
.pr-4 { padding-right: 1.5rem; }

.p-5 { padding: 3rem; }
.pt-5 { padding-top: 3rem; }
.pb-5 { padding-bottom: 3rem; }
.pl-5 { padding-left: 3rem; }
.pr-5 { padding-right: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }

.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.justify-content-start { justify-content: flex-start; }
.justify-content-center { justify-content: center; }
.justify-content-end { justify-content: flex-end; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }
.align-items-start { align-items: flex-start; }
.align-items-center { align-items: center; }
.align-items-end { align-items: flex-end; }

.w-25 { width: 25%; }
.w-50 { width: 50%; }
.w-75 { width: 75%; }
.w-100 { width: 100%; }

.h-25 { height: 25%; }
.h-50 { height: 50%; }
.h-75 { height: 75%; }
.h-100 { height: 100%; }

.rounded { border-radius: var(--border-radius); }
.rounded-circle { border-radius: 50%; }

.shadow { box-shadow: var(--box-shadow); }
.shadow-sm { box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }

.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-100 { z-index: 100; }
.z-1000 { z-index: 1000; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.font-weight-normal { font-weight: 400; }
.font-weight-bold { font-weight: 700; }
.font-italic { font-style: italic; }

.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

.border { border: 1px solid var(--light-gray); }
.border-top { border-top: 1px solid var(--light-gray); }
.border-right { border-right: 1px solid var(--light-gray); }
.border-bottom { border-bottom: 1px solid var(--light-gray); }
.border-left { border-left: 1px solid var(--light-gray); }

.border-0 { border: 0; }
.border-top-0 { border-top: 0; }
.border-right-0 { border-right: 0; }
.border-bottom-0 { border-bottom: 0; }
.border-left-0 { border-left: 0; }

.border-primary { border-color: var(--primary-color); }
.border-secondary { border-color: var(--secondary-color); }
.border-success { border-color: var(--success-color); }
.border-danger { border-color: var(--danger-color); }

.visible { visibility: visible; }
.invisible { visibility: hidden; }

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

/* Enhanced responsive utilities */
@media (max-width: 1200px) {
    .d-xl-none { display: none !important; }
    .d-xl-block { display: block !important; }
    .d-xl-inline { display: inline !important; }
    .d-xl-inline-block { display: inline-block !important; }
    .d-xl-flex { display: flex !important; }
}

@media (max-width: 992px) {
    .d-lg-none { display: none !important; }
    .d-lg-block { display: block !important; }
    .d-lg-inline { display: inline !important; }
    .d-lg-inline-block { display: inline-block !important; }
    .d-lg-flex { display: flex !important; }
}

@media (max-width: 768px) {
    .d-md-none { display: none !important; }
    .d-md-block { display: block !important; }
    .d-md-inline { display: inline !important; }
    .d-md-inline-block { display: inline-block !important; }
    .d-md-flex { display: flex !important; }
}

@media (max-width: 576px) {
    .d-sm-none { display: none !important; }
    .d-sm-block { display: block !important; }
    .d-sm-inline { display: inline !important; }
    .d-sm-inline-block { display: inline-block !important; }
    .d-sm-flex { display: flex !important; }
}

.error-404 {
    background: linear-gradient(to bottom right, #1e2a38, #2c3e50);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .error-404 .container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  
  .error-404 h1 {
    font-size: 80px;
    color: var(--primary-color);
  }
  
  .error-404 h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .error-404 p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
  }
  .match-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Styles for the match template page */

.match-template {
    padding: 40px 0;
}

.breadcrumbs {
    margin-bottom: 20px;
    color: var(--gray-color);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--primary-color);
}

.breadcrumbs .current-page {
    font-weight: 600;
}

.match-header-large {
    margin-bottom: 30px;
}

.match-header-large h1 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.match-meta span i {
    margin-top: 4px;
    margin-right: 5px;
    color: var(--primary-color);
}

.teams-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark-color);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.team-logo {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.team-name-large {
    font-size: 24px;
    font-weight: 700;
}

.vs-large {
    font-size: 28px;
    font-weight: 700;
    padding: 0 20px;
    color: var(--secondary-color);
}

.match-content-wrapper {
    display: flex;
    gap: 30px;
}

.match-main-content {
    display: flex;
    flex: 2;
    flex-direction: column;
    gap: 30px;
}

.match-sidebar {
    flex: 1;
}

.prediction-section, .analysis-section, .stats-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.prediction-section h2, .analysis-section h2, .stats-section h2, .match-sidebar h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark-color);
}

.prediction-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.prediction-item {
    display: flex;
    align-items: center;
}

.prediction-label {
    font-weight: 600;
    width: 100px;
}

.prediction-value {
    font-weight: 700;
}

.tip-value {
    color: var(--primary-color);
}

.odds-value {
    color: var(--secondary-color);
}

.confidence-meter-large {
    width: 200px;
    height: 10px;
    background-color: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
    margin-right: 10px;
}

.confidence-meter-large .meter-fill {
    height: 100%;
    background-color: var(--success-color);
}

.confidence-meter-large.low .meter-fill {
    width: 33%;
}

.confidence-meter-large.medium .meter-fill {
    width: 66%;
}

.confidence-meter-large.high .meter-fill {
    width: 85%;
}

.confidence-meter-large.very-high .meter-fill {
    width: 100%;
}

.confidence-text {
    font-size: 14px;
    color: var(--gray-color);
}

.analysis-content {
    color: var(--gray-color);
    line-height: 1.7;
}

.analysis-content h3 {
    color: var(--dark-color);
    margin: 25px 0 15px;
    font-size: 20px;
}

.analysis-content h3:first-child {
    margin-top: 0;
}

.analysis-content p {
    margin-bottom: 15px;
}

.results-list {
    list-style: none;
    margin: 15px 0;
}

.results-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.result-win, .result-loss, .result-draw {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-weight: 700;
    font-size: 12px;
    margin-right: 10px;
}

.result-win {
    background-color: var(--success-color);
    color: white;
}

.result-loss {
    background-color: var(--danger-color);
    color: white;
}

.result-draw {
    background-color: var(--warning-color);
    color: white;
}

.key-players {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.key-player {
    flex: 1;
}

.key-player h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.key-player ul {
    list-style: disc;
    padding-left: 20px;
}

.key-player ul li {
    margin-bottom: 5px;
}

.stats-comparison {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-row {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-weight: 600;
    color: var(--dark-color);
}

.stat-bars {
    display: flex;
    height: 30px;
    gap: 2px;
}

.stat-bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.stat-bar.home {
    background-color: var(--primary-color);
    border-radius: 4px 0 0 4px;
}

.stat-bar.away {
    background-color: var(--secondary-color);
    border-radius: 0 4px 4px 0;
}

.betting-odds, .related-matches, .match-sidebar .newsletter {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
}

.odds-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.odds-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
}

.odds-row:last-child {
    border-bottom: none;
}

.odds-type {
    font-weight: 600;
}

.odds-value {
    font-weight: 700;
    color: var(--secondary-color);
}

.odds-disclaimer {
    font-size: 12px;
    color: var(--gray-color);
    margin-top: 15px;
    font-style: italic;
}

.related-matches ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-matches ul li {
    border-bottom: 1px solid var(--light-gray);
}

.related-matches ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-match {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.related-teams {
    font-weight: 600;
    color: var(--dark-color);
}

.related-league, .related-time {
    font-size: 12px;
    color: var(--gray-color);
}

/* Responsive styles for match template */
@media (max-width: 992px) {
    .match-content-wrapper {
        flex-direction: column;
    }
    
    .match-sidebar {
        order: -1;
    }
    
    .key-players {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .teams-large {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .vs-large {
        margin: 10px 0;
    }
    
    .match-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .prediction-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .prediction-label {
        width: auto;
    }
    
    .confidence-meter-large {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .match-header-large h1 {
        font-size: 21px;
    }
    
    .team-logo {
        font-size: 36px;
    }
    
    .team-name-large {
        font-size: 20px;
    }
    
    .prediction-section, .analysis-section, .stats-section, .betting-odds, .related-matches, .match-sidebar .newsletter {
        padding: 15px;
    }
    
    .analysis-content h3 {
        font-size: 18px;
    }
}
.date-large, .time-large, .venue-large{
    display: flex;
    font-weight: 600;
    color: var(--dark-color);
}
/* Archive Page Header */
.page-header {
    background: linear-gradient(to right, var(--dark-color-lighter), var(--dark-color));
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Match Archive Grid */
.match-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Match Card Styling */
.match-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

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

/* Header (League & Date) */
.match-card .match-header {
    background-color: var(--dark-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.match-card .league i,
.match-card .match-date i {
    margin-right: 5px;
    color: var(--secondary-color);
}

/* Teams */
.match-card .teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--light-gray);
}

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

.match-card .team-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
}

.match-card .vs {
    font-weight: 600;
    color: var(--gray-color);
    padding: 0 15px;
}

/* Prediction Section */
.match-card .prediction {
    padding: 20px;
    background: white;
    border-bottom: 1px solid var(--light-gray);
}

.match-card .prediction h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.match-card .odds {
    font-size: 14px;
    color: var(--gray-color);
}

.odds-value {
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 5px;
}

/* Analysis Preview */
.match-card .analysis {
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-color);
    background-color: var(--light-bg);
}

.read-more-btn {
    margin-top: 10px;
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition);
}

.read-more-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 10px 15px;
    background-color: var(--light-bg);
    color: var(--dark-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background-color: var(--primary-color);
    color: white;
}

.prediction-preview{
    padding: 15px;
}
.prediction-preview__flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.upcoming-matches ul li, .recent-results ul li{
    margin-bottom: 15px;
    padding-bottom: 10px;
}
.results-summary{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}
.results-summary .summary-box{
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* === Enhanced Match Result Card === */
.match-card.result-card {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background-color: white;
    margin-bottom: 30px;
    transition: var(--transition);
  }
  
  /* Match Header (League and Date) */
  .match-card.result-card .match-header {
    background-color: var(--dark-color);
    color: white;
    padding: 12px 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }
  
  /* Teams Section */
  .match-card.result-card .teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--light-gray);
  }
  
  .match-card.result-card .team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
  }
  
  .match-card.result-card .team-name {
    font-weight: 700;
    font-size: 18px;
    margin-top: 8px;
  }
  
  .match-card.result-card .team-score {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .match-card.result-card .vs {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-color);
  }
  
  /* Prediction Section */
  .match-card.result-card .prediction-result {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid var(--light-gray);
    background-color: #fefefe;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .match-card.result-card .bet-tip,
  .match-card.result-card .odds,
  .match-card.result-card .result-status {
    font-weight: 500;
  }
  
  .match-card.result-card .result-status.success {
    color: var(--success-color);
  }
  
  .match-card.result-card .result-status.fail {
    color: var(--danger-color);
  }
  
  /* Match Stats Section */
  .match-card.result-card .match-stats {
    padding: 20px;
  }
  
  .match-card.result-card .stats-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--dark-color);
  }
  
  .match-card.result-card .stats-header i {
    margin-right: 10px;
    color: var(--primary-color);
  }
  
  .match-card.result-card .stat-row {
    margin-bottom: 20px;
    min-width: 200px;
  }
  
  .match-card.result-card .stat-label {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark-color);
  }
  
  .match-card.result-card .stat-bars {
    display: flex;
    width: 100%;
    height: 26px;
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--light-gray);
    position: relative;
  }
  
  .match-card.result-card .stat-bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    color: white;
    padding: 0 8px;
  }
  
  .match-card.result-card .stat-bar.home {
    background-color: var(--primary-color);
  }
  
  .match-card.result-card .stat-bar.away {
    background-color: var(--secondary-color);
  }
  
  /* Summary Section */
  .match-card.result-card .match-summary {
    padding: 20px;
    border-top: 1px solid var(--light-gray);
  }
  
  .match-card.result-card .summary-header {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark-color);
  }
  
  .match-card.result-card .summary-content {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .match-card.result-card .view-full-match {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    font-weight: 600;
    border-radius: var(--border-radius);
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
    width: 100%;
    text-align: center;
  }
  
  .match-card.result-card .view-full-match:hover {
    background-color: var(--primary-color);
    color: white;
  }
  .results-summary {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    flex-wrap: nowrap; /* Ensure one line */
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-gray);
    overflow-x: auto; /* Add scroll if it overflows */
  }
  
  .summary-box {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: var(--transition);
  }
  
  .summary-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    color: var(--gray-color);
  }
  
  .summary-box.success .summary-icon {
    background-color: rgba(76, 175, 80, 0.15);
    color: var(--success-color);
  }
  
  .summary-box.fail .summary-icon {
    background-color: rgba(244, 67, 54, 0.15);
    color: var(--danger-color);
  }
  
  .summary-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
  }
  
  .summary-label {
    font-size: 14px;
    color: var(--gray-color);
  }
  @media (max-width: 768px) {
    .results-summary {
      flex-wrap: wrap;
    }
    .summary-box {
      flex: 1 1 calc(50% - 10px); /* 2 per row on mobile */
    }
  }
  .btn.subscribe-btn {
    background-color: #e53e3e;
    color: #fff;
    border: none;
    transition: 0.3s ease;
}
.btn.subscribe-btn:hover {
    background-color: #c53030;
}
.custom-date-picker {
    display: flex;
    flex-wrap: wrap;
}

.custom-date-picker input[type="date"] {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.custom-date-picker {
    margin-top: 10px;
    background: #fff;
    padding: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}
.custom-date-picker input[type="date"] {
    padding: 5px;
}
.custom-date-picker button {
    padding: 6px 12px;
    background-color: #ff5a1f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .custom-date-picker {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-top: 10px;
      margin-bottom: 20px;
    }
  
    .custom-date-picker input,
    .custom-date-picker button {
      width: 100%;
      height: 40px;
      margin-top: 20px;
    }
  }
  
  .wp-block-separator{
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .team-logo img {
    max-height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .vs-large::before, .vs-large::after {
        display: none;
    }
    .match-template .teams-large{
    display: flex;
    flex-direction: row;
    }
    .sidebar, .match-sidebar {
        display: none;
    }
    .content-wrapper {
        flex-direction: column;
    }

    .main-content {
        width: 100%;
    }
    .stats-container .stat-box {
        flex: 1 1 48%;
    }
}
.betting-odds{
    display: flex;
    align-items: center;
    justify-content: center;
}
.stats-section{
    display: none !important;
}

#mc4wp-form-1 > div.mc4wp-form-fields > p:nth-child(2) > input[type=submit]{
    display: inline-block;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    background-color: var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
    color: white;
    width: 100%;
}
#email{
    width: 100% !important;
}
body.privacy-policy > main > h2{
    text-align: center;
}
.share-buttons img {
    margin-right: 9px;
    vertical-align: middle;
    margin-top: 10px;
    width: 30px;
}

/* hide the button by default … */
.share-native{display:none;}

/* …then show it only if JS adds the “share‑ok” class to <html> */
html.share-ok .share-native{
    display:flex;
    padding: 5px;
}

/* ===== SHARE BUTTONS ===== */

.share-buttons{
    margin-top: 27px;
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	gap:0.75rem;                  /* space between icons */
	font-size:1rem;               /* size of the “Share this match:” text */
}

.share-buttons strong{margin-right:0.5rem;}

.share-buttons .share-icon{
	/* bigger, finger‑friendly circle */
	width:48px;
	height:48px;
	border-radius:50%;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	background:#f4f4f4;
	text-decoration:none;
	font-size:22px;               /* icon size */
	transition:transform .15s ease, box-shadow .15s ease;
}

.share-buttons .share-icon:focus-visible,
.share-buttons .share-icon:hover{
	transform:translateY(-2px);
	box-shadow:0 4px 8px rgba(0,0,0,.15);
	outline:none;
}

/* platform colours */
.share-buttons .facebook{color:#1877f2;}
.share-buttons .x       {color:#000;}
.share-buttons .telegram{color:#0088cc;}
.share-buttons .whatsapp{color:#25d366;}

/* mobile tap highlight removal (optional) */
.share-buttons .share-icon{
	-webkit-tap-highlight-color:transparent;
}
/* ===== Responsive adjustments for share buttons ===== */
@media (max-width: 600px){
	.share-buttons{
		gap:0.5rem;               /* tighter spacing */
	}

	.share-buttons .share-icon{
		width:40px;
		height:40px;
		font-size:18px;           /* icon glyph size */
	}
}

/* extra‑small phones */
@media (max-width: 768px){
	.share-buttons{
		justify-content:center;   /* label + icons centred */
		text-align:center;
	}

	.share-buttons strong{
		flex:0 0 100%;            /* label on its own line */
		margin:0 0 0.25rem 0;
	}
}

body > div.match-template > div > div.match-content-wrapper > div > section.analysis-section > div.share-buttons > button > i{
    padding: 3px;
}
.match-result-section {
    background-color:white;
    border-left: 5px solid #28a745;
    padding: 20px;
    border-radius: 8px;
    font-family: inherit;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.match-result-section h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
}

.final-result-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
}

.final-result-box.success {
    border-left-color: #28a745;
}

.final-result-box.fail {
    border-left-color: #dc3545;
}

.final-result-box p {
    margin: 0;
}

.final-result-box strong {
    display: inline-block;
    min-width: 140px;
    font-weight: 600;
    color: #333;
}

.result-success, .result-fail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #333;
}

.result-success i {
    color: #28a745;
}

.result-fail i {
    color: #dc3545;
}

@media screen and (max-width: 768px) {
    .match-result-section {
        padding: 15px;
    }

    .final-result-box strong {
        min-width: auto;
    }
}

.logo img {
    max-height: 60px;
    height: auto;
    width: auto;
}
.no-match {
    padding: 40px 0 60px;
    text-align: center;
    color: #ff9800;
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    opacity: 0.8;
    margin-right: 6px;
}
.display-center{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

/* === Single Post Layout (BEM style) === */
.post-article {
  background-color: #0f1c2e;
  color: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

/* === Thumbnail Styling === */
.post-article__thumbnail {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.post-article__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* === Content Block === */
.post-article__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* === Header / Title === */
.post-article__header {
  border-bottom: 1px solid #243347;
  padding-bottom: 0.5rem;
}

.post-article__title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
}

/* === Content Section === */
.post-article__content {
  font-size: 1rem;
  line-height: 1.8;
  color: #d0d6e1;
}

.post-article__content h2,
.post-article__content h3 {
  color: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.post-article__content p {
  margin-bottom: 1.2rem;
}

/* === Footer / Meta === */
.post-article__footer {
  margin-top: auto;
  border-top: 1px solid #243347;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #ff9900;
}

.post-article__footer a {
  color: #ff9900;
  text-decoration: none;
}

.post-article__footer a:hover {
  text-decoration: underline;
}

