/* Home Roda Styles - Updated to match site color scheme */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--neutral-light), #f1f3f4);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(59, 130, 246, 0.05));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.club-name-highlight {
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Buttons */
.hero-buttons .button {
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.hero-button-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.hero-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
}

/* Results Section */
.results {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    padding: 80px 0;
}

/* ===== RESULTS CANVAS OVERRIDE STYLES ===== */
/* Import elegant fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Results section background - Enhanced */
.results {
    padding: 120px 0 100px 0;
    background: 
        linear-gradient(135deg, #0a0a1a, #0f0f23, #1a1a2e, #16213e, #0f3460),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(254, 202, 87, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 107, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 60% 30%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(34, 197, 94, 0.1) 0%, transparent 40%);
    z-index: 1;
    animation: backgroundFloat 25s ease-in-out infinite;
}

.results::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.01) 50%, transparent 70%);
    z-index: 1;
    animation: shimmer 15s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-30px) rotate(1deg) scale(1.02); 
        opacity: 1;
    }
    50% { 
        transform: translateY(15px) rotate(-0.5deg) scale(0.98); 
        opacity: 0.9;
    }
    75% { 
        transform: translateY(-10px) rotate(0.5deg) scale(1.01); 
        opacity: 0.95;
    }
}

@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.results .container {
    position: relative;
    z-index: 2;
}

/* Section title */
.results .section-title {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 100px;
    text-align: center;
    position: relative;
    font-size: 4rem;
    line-height: 1.1;
    text-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(59, 130, 246, 0.4),
        0 0 60px rgba(254, 202, 87, 0.3);
    animation: titlePulse 5s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { 
        text-shadow: 
            0 6px 12px rgba(0, 0, 0, 0.5),
            0 0 30px rgba(59, 130, 246, 0.4),
            0 0 60px rgba(254, 202, 87, 0.3);
        transform: scale(1);
    }
    50% { 
        text-shadow: 
            0 8px 16px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(59, 130, 246, 0.6),
            0 0 80px rgba(254, 202, 87, 0.5);
        transform: scale(1.02);
    }
}

.results .section-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 10px;
    background: linear-gradient(90deg, #3B82F6, #1e40af, #ff6b6b, #a855f7, #22c55e);
    border-radius: 5px;
    box-shadow: 
        0 0 40px rgba(59, 130, 246, 0.7),
        0 0 80px rgba(254, 202, 87, 0.5),
        0 0 120px rgba(255, 107, 107, 0.4),
        0 0 160px rgba(168, 85, 247, 0.3);
    animation: lineGlow 4s ease-in-out infinite alternate;
}

@keyframes lineGlow {
    0% { 
        box-shadow: 
            0 0 40px rgba(59, 130, 246, 0.7),
            0 0 80px rgba(254, 202, 87, 0.5),
            0 0 120px rgba(255, 107, 107, 0.4),
            0 0 160px rgba(168, 85, 247, 0.3);
        transform: translateX(-50%) scaleX(1);
    }
    100% { 
        box-shadow: 
            0 0 60px rgba(59, 130, 246, 0.9),
            0 0 120px rgba(254, 202, 87, 0.7),
            0 0 180px rgba(255, 107, 107, 0.6),
            0 0 240px rgba(168, 85, 247, 0.5);
        transform: translateX(-50%) scaleX(1.1);
    }
}


/* VS and Result Text - Blue background like VS */
.vs-text {
    color: #3b82f6 !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    text-shadow: 
        0 0 10px rgba(59, 130, 246, 0.6),
        0 0 20px rgba(59, 130, 246, 0.4),
        0 0 30px rgba(59, 130, 246, 0.2);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.result-text {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: white !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    box-shadow: 0 6px 15px rgba(30, 64, 175, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.vs-text:hover {
    color: #1e40af !important;
    text-shadow: 
        0 0 15px rgba(59, 130, 246, 0.8),
        0 0 30px rgba(59, 130, 246, 0.6),
        0 0 45px rgba(59, 130, 246, 0.4);
    transform: scale(1.1);
}

.result-text:hover {
    background: linear-gradient(135deg, #1e40af, #3b82f6) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.4) !important;
}

/* First match card - Premium dark theme */
.results .card.dark {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%) !important;
    backdrop-filter: blur(30px);
    border: 3px solid rgba(255, 255, 255, 0.25) !important;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    border-radius: 35px !important;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4), 
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        0 0 50px rgba(59, 130, 246, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Inter', sans-serif;
}

.results .card.dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(254, 202, 87, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.results .card.dark:hover::before {
    opacity: 1;
}

.results .card.dark:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 40px rgba(59, 130, 246, 0.2);
}

.results .card.dark .card-body {
    color: white;
    position: relative;
    z-index: 2;
    padding: 40px 30px !important;
}

.results .card.dark h4 {
    color: white !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 2.2rem;
    text-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 35px;
    position: relative;
}

.results .card.dark:hover h4 {
    text-shadow: 
        0 0 25px rgba(255, 255, 255, 0.9),
        0 0 50px rgba(59, 130, 246, 0.4),
        0 0 75px rgba(254, 202, 87, 0.3);
    transform: scale(1.08);
}

.results .card.dark .badge.bg-warning {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: white !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    box-shadow: 
        0 10px 30px rgba(30, 64, 175, 0.5),
        0 0 20px rgba(30, 64, 175, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    padding: 18px 30px;
    letter-spacing: 3px;
    border-radius: 20px !important;
    border: 3px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 
            0 10px 30px rgba(30, 64, 175, 0.5),
            0 0 20px rgba(30, 64, 175, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
    50% { 
        box-shadow: 
            0 15px 40px rgba(30, 64, 175, 0.7),
            0 0 30px rgba(30, 64, 175, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
}

.results .card.dark .badge.bg-warning:hover {
    transform: scale(1.15) rotate(1deg);
    box-shadow: 
        0 20px 50px rgba(30, 64, 175, 0.8),
        0 0 40px rgba(30, 64, 175, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.results .card.dark .badge.bg-white.bg-opacity-10 {
    background: rgba(255, 255, 255, 0.08) !important;
    color: white !important;
    border: 3px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    font-weight: 500;
    font-style: italic;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    padding: 14px 22px;
    letter-spacing: 0.5px;
    border-radius: 20px !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.results .card.dark .badge.bg-white.bg-opacity-10:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.6);
}

.results .card.dark .badge.bg-primary {
    background: linear-gradient(135deg, #3B82F6, #60A5FA) !important;
    color: white !important;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    padding: 12px 20px;
    letter-spacing: 1px;
    border-radius: 12px !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.results .card.dark .badge.bg-primary:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, #60A5FA, #93C5FD) !important;
}

/* First card "više" button - same style as other fields */
.results .card.dark .badge.bg-white.bg-opacity-10 a {
    color: white !important;
    text-decoration: none !important;
}

.results .card.dark .badge.bg-white.bg-opacity-10 a:hover {
    color: white !important;
    text-decoration: none !important;
}

/* Second/third match cards - Clean white theme */
.results .card.bg-white {
    background: linear-gradient(145deg, #ffffff, #f8fafc) !important;
    color: #1a1a2e;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 
                0 0 0 1px rgba(0, 0, 0, 0.05);
}

.results .card.bg-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(254, 202, 87, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.results .card.bg-white:hover::before {
    opacity: 1;
}

.results .card.bg-white:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 
                0 0 0 1px rgba(0, 0, 0, 0.1),
                0 0 30px rgba(59, 130, 246, 0.15);
}

.results .card.bg-white .card-body {
    color: #1a1a2e;
    position: relative;
    z-index: 2;
    padding: 30px 25px !important;
}

.results .card.bg-white .fw-bold {
    color: #1a1a2e !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

.results .card.bg-white:hover .fw-bold {
    color: #3B82F6 !important;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.results .card.bg-white .badge.bg-warning {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: white !important;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
    padding: 10px 18px;
    letter-spacing: 1.5px;
    border-radius: 10px !important;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.results .card.bg-white .badge.bg-warning:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.5);
}

.results .card.bg-white .badge.bg-light {
    background: rgba(26, 26, 46, 0.05) !important;
    color: #1a1a2e !important;
    border: 2px solid rgba(26, 26, 46, 0.2) !important;
    backdrop-filter: blur(20px);
    font-weight: 500 !important;
    font-style: italic !important;
    font-size: 0.85rem !important;
    transition: all 0.4s ease;
    padding: 8px 12px !important;
    letter-spacing: 0.3px !important;
    border-radius: 15px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.results .card.bg-white .badge.bg-light:hover {
    background: rgba(59, 130, 246, 0.08) !important;
    color: #3B82F6 !important;
    transform: translateY(-2px) scale(1.02) !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.4) !important;
}

.results .card.bg-white .btn-primary,
.results .card.bg-white .btn-primary.btn-sm {
    background: rgba(26, 26, 46, 0.05) !important;
    border: 2px solid rgba(26, 26, 46, 0.2) !important;
    color: #1a1a2e !important;
    backdrop-filter: blur(20px);
    font-weight: 500 !important;
    font-style: italic !important;
    font-size: 0.85rem !important;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    padding: 8px 12px !important;
    letter-spacing: 0.3px !important;
    border-radius: 15px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    text-decoration: none !important;
}

.results .card.bg-white .btn-primary:hover,
.results .card.bg-white .btn-primary.btn-sm:hover {
    background: rgba(59, 130, 246, 0.08) !important;
    color: #3B82F6 !important;
    transform: translateY(-2px) scale(1.02) !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.4) !important;
}

/* Results list card - Premium dark theme */
.results .card.dark .card-header {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 25px 25px 0 0 !important;
    padding: 25px 30px !important;
}

.results .card.dark .card-title {
    color: white !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 0;
}

.results .card.dark .text-white {
    color: white !important;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.results .card.dark .text-white:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    transform: scale(1.02);
}

.results .card.dark .text-white.fw-bold {
    color: white !important;
    font-weight: 800 !important;
    font-size: 1.3rem;
    letter-spacing: 1.5px;
}

.results .card.dark .text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.results .card.dark .badge.bg-warning {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: white !important;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    padding: 10px 15px;
    letter-spacing: 1px;
    border-radius: 10px !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.results .card.dark .badge.bg-warning:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.6);
}

.results .card.dark .card-footer {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0 0 25px 25px !important;
    padding: 25px 30px !important;
}

.results .card.dark .btn-warning {
    background: linear-gradient(135deg, #3b82f6, #ff6b6b) !important;
    border: none !important;
    color: white !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    padding: 15px 25px;
    border-radius: 12px !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.results .card.dark .btn-warning:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.6);
    background: linear-gradient(135deg, #1e40af, #ff8b8b) !important;
}

/* Button overrides with premium effects */
.results .btn-primary {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8) !important;
    border: none !important;
    color: white !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    font-size: 1.2rem;
    padding: 18px 30px;
    border-radius: 15px !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.results .btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 
                0 0 25px rgba(59, 130, 246, 0.6),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #60A5FA, #3B82F6) !important;
}

/* Hover effects for cards with premium transforms */
.results .card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.results .card:hover {
    transform: perspective(1000px) rotateX(2deg) translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2),
                0 0 40px rgba(59, 130, 246, 0.2),
                inset 0 0 20px rgba(255, 255, 255, 0.05);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .match-layout {
        gap: 6px;
    }
    
    .results {
        padding: 60px 0 40px 0;
    }
    
    .results .section-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }
    
    .results .card.dark .card-body,
    .results .card.bg-white .card-body {
        padding: 25px 20px !important;
    }
    
    .results .card.dark h4 {
        font-size: 1.5rem;
    }
    
    .results .card.bg-white .fw-bold {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .match-layout {
        gap: 4px;
    }
    
    .team-left, .team-right {
        font-size: 0.9rem;
    }
    
    .results .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .results .card.dark .card-body,
    .results .card.bg-white .card-body {
        padding: 20px 15px !important;
    }
    
    .results .card.dark h4 {
        font-size: 1.3rem;
    }
    
    .results .card.bg-white .fw-bold {
        font-size: 1rem;
    }
}

/* Games Section - WOW EFFECT */
.standard-section.darker .card.dark {
    background: linear-gradient(135deg, #1e3a8a, #1e40af) !important;
    color: white !important;
    border: none !important;
    border-radius: 25px !important;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    transform: scale(1.02) !important;
    margin-bottom: 30px !important;
    z-index: 5 !important;
}

.standard-section.darker .card.dark h4 {
    color: white !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.standard-section.darker .card.dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.standard-section.darker .card.dark:hover::before {
    left: 100%;
}

.standard-section.darker .card:not(.dark) {
    background: white !important;
    color: #333 !important;
    border: 2px solid rgba(30, 64, 175, 0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    margin-top: 20px !important;
    margin-bottom: 15px !important;
    position: relative !important;
    z-index: 1 !important;
}

.standard-section.darker .card:not(.dark):hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
    border-color: #1e40af !important;
}

.standard-section.darker .card .vs-text {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    box-shadow: 0 6px 15px rgba(30, 64, 175, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

/* WOW Button Effects */
.standard-section.darker .badge.bg-white {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2)) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 30px !important;
    padding: 12px 24px !important;
    font-weight: 700 !important;
    backdrop-filter: blur(15px) !important;
    transition: all 0.4s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 13px !important;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1) !important;
}

.standard-section.darker .badge.bg-white:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.3)) !important;
}

.standard-section.darker .badge.bg-light {
    background: linear-gradient(135deg, #1e40af, #3b82f6) !important;
    color: white !important;
    border: 2px solid #60a5fa !important;
    border-radius: 25px !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    transition: all 0.4s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-size: 12px !important;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4) !important;
}

.standard-section.darker .badge.bg-light:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.5) !important;
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
}

/* Special effects for main game card */
.standard-section.darker .card.dark .match-layout {
    position: relative;
    z-index: 2;
}

.standard-section.darker .card.dark .team-left h4,
.standard-section.darker .card.dark .team-right h4 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

/* Match Layout - Using CSS Grid for better control */
.match-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.team-left {
    justify-self: start;
    text-align: left;
}

.vs-center {
    justify-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-right {
    justify-self: end;
    text-align: right;
}

.vs-text {
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.result-text {
    background: var(--accent-blue);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 14px;
}

/* Button Styles - Caps Lock and Rounded */
.hero-buttons .button,
.btn {
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 700 !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.hero-buttons .button:hover,
.btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: white !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af, #3b82f6) !important;
    color: white !important;
}

/* Warning Button - Changed to Blue */
.btn-warning {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: white !important;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #1e40af, #3b82f6) !important;
    color: white !important;
}

/* Small Button */
.btn-sm {
    padding: 8px 20px !important;
    font-size: 0.875rem !important;
    border-radius: 20px !important;
}

/* Large Button */
.btn-lg {
    padding: 15px 40px !important;
    font-size: 1.1rem !important;
    border-radius: 30px !important;
}

/* School Section - Slightly Darkened Background */
.standard-section:has(.all-schools) {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0) !important;
    color: #1e40af !important;
}

.standard-section:has(.all-schools) .section-title {
    color: #1e40af !important;
}

.standard-section:has(.all-schools) .section-title::after {
    background: linear-gradient(90deg, #3b82f6, #60a5fa) !important;
}

/* All Schools Link Button */
.all-schools a {
    display: inline-block !important;
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: white !important;
    text-decoration: none !important;
    padding: 12px 30px !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.all-schools a:hover {
    background: linear-gradient(135deg, #1e40af, #3b82f6) !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4) !important;
}

/* Fix Results Colors - Remove Yellow */
.results .card.dark .result-text {
    background: linear-gradient(135deg, #3b82f6, #1e40af) !important;
    color: white !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    box-shadow: 0 6px 15px rgba(30, 64, 175, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.results .card.dark .result-text:hover {
    background: linear-gradient(135deg, #1e40af, #3b82f6) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.4) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .match-layout {
        gap: 6px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .results {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .button {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
}

/* ===== SLIDER STYLES - BLOCK SLIDER 1 ===== */
/* Slider container */
#slider.block-slider-1 {
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative;
    overflow: hidden;
}

/* Swiper wrapper */
#slider.block-slider-1 .swiper_wrapper {
    position: relative;
    height: 85vh !important;
    min-height: 85vh !important;
    max-height: 85vh !important;
}

/* Swiper slide */
#slider.block-slider-1 .swiper-slide {
    position: relative;
    height: 85vh !important;
    min-height: 85vh !important;
    max-height: 85vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background image with dark overlay */
#slider.block-slider-1 .swiper-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Dark overlay for better text readability */
#slider.block-slider-1 .swiper-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

/* Slider caption container */
#slider.block-slider-1 .slider-caption {
    position: relative;
    z-index: 3;
    text-align: center;
    padding-top: 120px; /* Spušteno od gornje ivice */
    max-width: 800px;
    margin: 0 auto;
}

/* Slider caption text styles */
#slider.block-slider-1 .slider-caption p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#slider.block-slider-1 .slider-caption h2 {
    color: white;
    font-size: 3.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 0;
    line-height: 1.2;
}

/* Slider navigation arrows - pravilno pozicioniranje */
#slider.block-slider-1 .slider-arrow-left,
#slider.block-slider-1 .slider-arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#slider.block-slider-1 .slider-arrow-left {
    left: 30px;
}

#slider.block-slider-1 .slider-arrow-right {
    right: 30px;
}

#slider.block-slider-1 .slider-arrow-left:hover,
#slider.block-slider-1 .slider-arrow-right:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

/* Slide number counter - pravilno pozicioniranje */
#slider.block-slider-1 .slide-number {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 4;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 5px;
}

#slider.block-slider-1 .slide-number-current {
    font-weight: 700;
}

#slider.block-slider-1 .slide-number-total {
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #slider.block-slider-1 .swiper_wrapper {
        height: 75vh !important;
        min-height: 75vh !important;
        max-height: 75vh !important;
    }
    
    #slider.block-slider-1 .swiper-slide {
        height: 75vh !important;
        min-height: 75vh !important;
        max-height: 75vh !important;
    }
    
    #slider.block-slider-1 .slider-caption {
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    #slider.block-slider-1 .slider-caption h2 {
        font-size: 2.8rem;
    }
    
    #slider.block-slider-1 .slider-caption p {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    #slider.block-slider-1 .slider-arrow-left,
    #slider.block-slider-1 .slider-arrow-right {
        width: 50px;
        height: 50px;
    }
    
    #slider.block-slider-1 .slider-arrow-left {
        left: 15px;
    }
    
    #slider.block-slider-1 .slider-arrow-right {
        right: 15px;
    }
    
    #slider.block-slider-1 .slide-number {
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
        padding: 8px 16px;
    }
}

@media (max-width: 1024px) {
    #slider.block-slider-1 .swiper_wrapper {
        height: 80vh !important;
        min-height: 80vh !important;
        max-height: 80vh !important;
    }
    
    #slider.block-slider-1 .swiper-slide {
        height: 80vh !important;
        min-height: 80vh !important;
        max-height: 80vh !important;
    }
    
    #slider.block-slider-1 .slider-caption h2 {
        font-size: 3.5rem;
    }
    
    #slider.block-slider-1 .slider-caption p {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 576px) {
    #slider.block-slider-1 .swiper_wrapper {
        height: 60vh !important;
        min-height: 60vh !important;
        max-height: 60vh !important;
    }
    
    #slider.block-slider-1 .swiper-slide {
        height: 60vh !important;
        min-height: 60vh !important;
        max-height: 60vh !important;
    }
    
    #slider.block-slider-1 .slider-caption {
        padding-top: 60px;
    }
    
    #slider.block-slider-1 .slider-caption h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    #slider.block-slider-1 .slider-arrow-left,
    #slider.block-slider-1 .slider-arrow-right {
        width: 40px;
        height: 40px;
    }
}
