/* Grundinställningar */
:root {
    --primary-color: #36a1a3; /* Fallback */
    --glass-bg: rgba(255, 255, 255, 0.95);
}

body {
    background-color: #f0f2f5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
}

/* Hero-sektionen (Mobilanpassad) */
.hero-section {
    position: relative;
    background-color: var(--primary-color);
    color: white;
    padding: 40px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.tournament-logo {
    max-height: 80px;
    width: auto;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.hero-section h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Kort-layout */
.card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 15px;
    transition: transform 0.2s;
}

/* Mobilanpassade knappar */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    width: 100%; /* Fullbredd på mobil */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-outline-dark {
    padding: 12px 24px;
    border-radius: 12px;
    width: 100%;
    border: 2px solid #e2e8f0;
}

/* Snabbfakta-lista */
.fact-list {
    padding: 0;
    list-style: none;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.fact-item:last-child {
    border-bottom: none;
}

/* Desktop-justeringar */
@media (min-width: 768px) {
    .hero-section {
        padding: 80px 0;
        border-radius: 0 0 40px 40px;
    }
    .hero-section h1 { font-size: 3rem; }
    .btn-primary, .btn-outline-dark { width: auto; }
    .tournament-logo { max-height: 120px; }
}