:root {
    --primary-color: #ffc010;
    /* Gold */
    --secondary-color: #0b0e11;
    /* Dark background */
    --text-white: #ffffff;
    --text-secondary: #adb5bd;
    --bg-black: #000000;
    --bg-dark-custom: #14181f;
    /* Custom dark mode color */
    --transition-speed: 0.3s;
}

body {
    font-family: 'Barlow', 'Nunito Sans', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.text-gold {
    color: var(--primary-color) !important;
}

.bg-dark-custom {
    background-color: var(--bg-dark-custom) !important;
}

.bg-gold {
    background-color: var(--primary-color) !important;
}

.btn-gold {
    background-color: var(--primary-color);
    color: var(--bg-black);
    font-weight: 700;
    border: none;
    transition: all var(--transition-speed);
}

.btn-gold:hover {
    background-color: #e6ac00;
    color: var(--bg-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 192, 16, 0.4);
}

.btn-outline-gold {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    transition: all var(--transition-speed);
}

.btn-outline-gold:hover {
    background-color: var(--primary-color);
    color: var(--bg-black);
}

.sticky-top {
    z-index: 1020;
    border-bottom: 2px solid var(--primary-color);
}

/* Banner Gradients */
.banner-height {
    min-height: 480px;
    background: linear-gradient(135deg, #0b0e11 0%, #1a1e26 100%);
    position: relative;
    overflow: hidden;
}

.banner-height::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 192, 16, 0.1) 0%, transparent 50%);
}

/* Category Cards */
.category-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Common Section Titles */
.section-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Feature Circles */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Utility Animations */
.transition-all {
    transition: all var(--transition-speed);
}

.hover-gold:hover {
    color: var(--primary-color) !important;
}

.border-gold-hover:hover {
    border-color: var(--primary-color) !important;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

/* Mobile Responsiveness tweaks */
@media (max-width: 768px) {
    .banner-height {
        min-height: 300px;
    }

    .display-3 {
        font-size: 2rem;
    }
}

/* Upcoming Match Cards */
.match-card {
    background: linear-gradient(180deg, #1e242d 0%, #14181f 100%);
    border: 1px solid #2a313b;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.match-card:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.team-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.match-status {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.match-type {
    font-size: 0.75rem;
    background: rgba(255, 192, 16, 0.1);
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.vs-badge {
    width: 30px;
    height: 30px;
    background: var(--bg-black);
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary-color);
}