
:root {
    --primary-color: #134686;
    --secondary-color: #ED3F27;
    --accent-color: #FEB21A;
    --text-color: #2c2c2c;
    --background-color: #f8f9fa;
    --primary-rgb: 19, 70, 134;
}

body {
    font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
}

.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
}

.navbar-brand {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.4rem;
}

.navbar-logo {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.10), rgba(0,0,0,0.45)), linear-gradient(135deg, #FEB21A 0%, #ED3F27 50%, #134686 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-section .lead {
    font-size: 1.4rem;
    opacity: 0.9;
}

.hero-logo {
    max-height: 140px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.3));
    animation: spin3d 4s linear infinite;
    transform-style: preserve-3d;
}

@keyframes spin3d {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.division-card {
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
}

.division-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.division-card .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

.division-card .card-header i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.division-card .card-body {
    padding: 1.25rem;
}

.division-card.inactive {
    opacity: 0.6;
}

.division-card.inactive:hover {
    opacity: 0.8;
}

.champion-badge {
    background: var(--secondary-color);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

.news-section .card {
    border-left: 4px solid var(--accent-color);
}

.venue-card {
    border: none;
    background: white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

footer {
    background: var(--primary-color);
    color: #ffffff;
}

footer a {
    color: rgba(255,255,255, 0.8);
    transition: opacity 0.2s;
}

footer a:hover {
    color: #ffffff;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-logo {
        max-height: 100px;
    }
}
