:root {
    --soft-orange: #ffb74d;
    --light-orange: #ffe0b2;
    --white: #ffffff;
    --dark-text: #333333;
    --light-gray: #f8f9fa;
    --border-radius: 12px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
}

/* Orange Theme Colors */
.text-orange { color: var(--soft-orange) !important; }
.bg-orange { background-color: var(--soft-orange) !important; }
.bg-orange-gradient {
    background: linear-gradient(135deg, var(--soft-orange) 0%, #ff9800 100%);
}

.btn-orange {
    background-color: var(--soft-orange);
    border-color: var(--soft-orange);
    color: white;
}

.btn-orange:hover {
    background-color: #ff9800;
    border-color: #ff9800;
    color: white;
}

.btn-outline-orange {
    border-color: var(--soft-orange);
    color: var(--soft-orange);
}

.btn-outline-orange:hover {
    background-color: var(--soft-orange);
    border-color: var(--soft-orange);
    color: white;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 183, 77, 0.15) !important;
}

.news-card .card-img-top {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    height: 200px;
    object-fit: cover;
}

.sport-type-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.sport-type-card:hover {
    border-color: var(--soft-orange);
}

/* Live Match Cards */
.live-match-card {
    background: var(--white);
    border-left: 4px solid var(--soft-orange);
}

.live-indicator {
    background: #ff4444;
    color: white;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.vs-text {
    font-weight: bold;
    color: var(--soft-orange);
}

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

.score {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

/* Tables */
.table-orange {
    background-color: var(--soft-orange);
    color: white;
}

.table-hover tbody tr:hover {
    background-color: var(--light-orange);
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--soft-orange) !important;
}

/* Hero Section */
.hero-section {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.btn-white {
    background-color: white;
    color: var(--soft-orange);
    font-weight: 600;
}

.btn-outline-white {
    border-color: white;
    color: white;
    font-weight: 600;
}

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

/* Markdown Body Styling */
.markdown-body {
    line-height: 1.6;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
    color: var(--dark-text);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.markdown-body p {
    margin-bottom: 1rem;
}

/* Pagination */
.pagination .page-link {
    color: var(--soft-orange);
    border-color: var(--light-orange);
}

.pagination .page-item.active .page-link {
    background-color: var(--soft-orange);
    border-color: var(--soft-orange);
}

/* Footer */
footer a:hover {
    color: var(--soft-orange) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section .display-4 {
        font-size: 2rem;
    }

    .match-teams {
        flex-direction: column;
        gap: 1rem;
    }
}