/* === Base Styling === */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #EF7827 0%, #0C6836 100%);
    color: #ffffff;
    overflow-x: hidden;
}


/* === Headings and Buttons === */
h1, h2, h3, h4, h5, h6 {
    color: #1A1814 !important;
    font-weight: 700;
}

.btn,
.btn-primary {
    background-color: #1A1814 !important;
    border: none;
    color: #ffffff;
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0C6836 !important;
}

/* === Navigation Tabs === */
.nav-tabs .nav-link {
    background: #E9108B;
    color: white;
    border-radius: 10px;
    margin: 2px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.nav-tabs .nav-link.active {
    background: linear-gradient(45deg, #EF7827, #0C6836);
    color: #ffffff;
}

/* === Cards & Sections === */
.card, .game-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-title {
    color: #1A1814;
    font-weight: bold;
}

/* === Scoreboard Table === */
.table thead th {
    background: linear-gradient(90deg, #0C6836 0%, #E9108B 100%);
    color: white;
    border: none;
}

.table tbody tr {
    background-color: rgba(255,255,255,0.1);
    color: #1A1814;
}

.table td, .table th {
    border: none;
}

/* === Section Backgrounds === */
.Section {
    background: linear-gradient(to right, #E9108B, #EF7827);
    padding: 30px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
}

/* === Overlay and Heading Effects === */
.Overlay {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
}

/* .Heading, .Menu .Item {
    background-color: #EF7827;
    color: white;
    border-radius: 10px;
    padding: 8px 15px;
    margin: 0 5px;
    transition: background 0.3s ease;
}

.Menu .Item:hover {
    background: linear-gradient(to right, #E9108B, #0C6836);
    color: #fff;
} */

/* === Carousel Navigation === */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    background: #1A1814 !important;
    color: white !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.owl-nav button:hover {
    background-color: #0C6836 !important;
}

/* === Footer === */
#footer {
    width: 100%;
    display: block;
    margin-top: 20px;
}

/* === Mobile Friendliness === */
@media (max-width: 768px) {
    /* .Heading, .Menu {
        text-align: center;
        flex-direction: column;
    } */

    .card {
        margin-bottom: 20px;
    }

    .Section {
        padding: 20px 10px;
    }
}
