/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f8f9fa;
}

/* Typography Hierarchy */
h1, .h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h2, .h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h3, .h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

h4, .h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

p, .body-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
}

.lead-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.small-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.caption {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.logo::before {
    content: '⚽';
    font-size: 1.8rem;
    color: #1d4ed8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.nav-link i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.nav-link:hover i {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-cta {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    border: none;
    white-space: nowrap;
}

.nav-cta i {
    font-size: 0.8rem;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, 
        #ff006e 0%, 
        #8338ec 15%, 
        #3a86ff 30%, 
        #06ffa5 45%, 
        #ffbe0b 60%, 
        #fb5607 75%, 
        #ff006e 90%, 
        #8338ec 100%);
    background-size: 600% 600%;
    animation: neonGradientShift 12s ease infinite;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    filter: saturate(1.2) contrast(1.1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 110, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(131, 56, 236, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 40% 80%, rgba(6, 255, 165, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 90% 20%, rgba(255, 190, 11, 0.3) 0%, transparent 60%),
        conic-gradient(from 0deg at 15% 15%, rgba(255, 0, 110, 0.2), rgba(131, 56, 236, 0.2), rgba(6, 255, 165, 0.2), rgba(255, 190, 11, 0.2)),
        conic-gradient(from 180deg at 85% 85%, rgba(131, 56, 236, 0.2), rgba(6, 255, 165, 0.2), rgba(255, 190, 11, 0.2), rgba(255, 0, 110, 0.2)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><polygon points="60,15 85,40 60,65 35,40" fill="rgba(255,255,255,0.08)"/><circle cx="25" cy="25" r="4" fill="rgba(255,0,110,0.15)"/><circle cx="95" cy="95" r="4" fill="rgba(131,56,236,0.15)"/><rect x="55" y="55" width="10" height="10" transform="rotate(45 60 60)" fill="rgba(6,255,165,0.12)"/><path d="M20,80 Q40,60 60,80 T100,80" stroke="rgba(255,190,11,0.1)" stroke-width="2" fill="none"/></svg>');
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 150px 150px;
    animation: neonParticles 15s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 0, 110, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(131, 56, 236, 0.1) 50%, transparent 70%),
        linear-gradient(135deg, transparent 40%, rgba(6, 255, 165, 0.08) 60%, transparent 80%),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255, 255, 255, 0.02) 20px, rgba(255, 255, 255, 0.02) 40px),
        repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(255, 190, 11, 0.03) 30px, rgba(255, 190, 11, 0.03) 60px);
    background-image: 
        url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M100,0 L200,100 L100,200 L0,100 Z'/%3E%3Ccircle cx='50' cy='50' r='20'/%3E%3Ccircle cx='150' cy='150' r='15'/%3E%3Cpolygon points='170,30 190,50 170,70 150,50'/%3E%3Cpolygon points='30,130 50,150 30,170 10,150'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    mix-blend-mode: overlay;
    animation: geometricFloat 20s ease-in-out infinite;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto;
    gap: 2rem;
    align-items: start;
    position: relative;
    z-index: 2;
    min-height: 80vh;
    padding-top: 5vh;
}

.hero-text {
    color: white;
    position: relative;
    z-index: 3;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-20px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 0, 110, 0.3),
        0 0 50px rgba(131, 56, 236, 0.2);
    animation: neonGlow 4s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.hero-text:hover {
    transform: translateY(-30px) rotateY(-5deg) rotateX(3deg) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: 20px 50px 20px 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(255, 0, 110, 0.5),
        0 0 80px rgba(131, 56, 236, 0.4),
        0 0 100px rgba(6, 255, 165, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    animation: morphingShape 4s ease-in-out infinite, neonGlow 2s ease-in-out infinite;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ff006e, #8338ec, #06ffa5, #ffbe0b);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 20px rgba(255, 0, 110, 0.5),
        0 0 40px rgba(131, 56, 236, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.3);
    animation: neonGradientShift 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 0, 110, 0.4));
}

.hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    opacity: 0.95;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff006e, #8338ec, #06ffa5, #ffbe0b);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 20px rgba(255, 0, 110, 0.5),
        0 0 40px rgba(131, 56, 236, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.3);
    animation: neonGradientShift 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 0, 110, 0.4));
}

.hero-description {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
}

.hero-description::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff006e, #8338ec, #06ffa5);
    border-radius: 2px;
    animation: neonGlow 3s ease-in-out infinite;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff006e 0%, #8338ec 25%, #06ffa5 50%, #ffbe0b 75%);
    background-size: 300% 300%;
    animation: neonGradientShift 4s ease infinite;
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 8px 25px rgba(255, 0, 110, 0.4),
        0 0 20px rgba(131, 56, 236, 0.3),
        0 0 40px rgba(6, 255, 165, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    filter: drop-shadow(0 0 15px rgba(255, 0, 110, 0.5));
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.08) rotateZ(-2deg);
    border-radius: 25px 60px 25px 60px;
    background-size: 400% 400%;
    box-shadow: 
        0 20px 50px rgba(255, 0, 110, 0.6),
        0 0 30px rgba(131, 56, 236, 0.5),
        0 0 60px rgba(6, 255, 165, 0.4),
        0 0 80px rgba(255, 190, 11, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 0 25px rgba(255, 0, 110, 0.7)) saturate(1.3);
    animation: neonGradientShift 2s ease infinite, morphingGlow 3s ease-in-out infinite;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    perspective: 1200px;
    transform-style: preserve-3d;
    padding: 0;
    margin: 0;
    max-width: none;
    transform: translateX(10%) translateY(-10%);
    z-index: 2;
}

.soccer-image {
    width: 140%;
    max-width: 600px;
    height: auto;
    min-height: 550px;
    border-radius: 40px 10px 40px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.3),
        0 25px 50px rgba(220, 38, 38, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.15),
        -20px 0 40px rgba(220, 38, 38, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotateY(-8deg) rotateX(3deg) translateZ(20px) translateX(-15%);
    transform-style: preserve-3d;
    margin: 0;
    animation: subtlePulse 4s ease-in-out infinite;
}

.soccer-image:hover {
    transform: rotateY(-5deg) rotateX(1deg) scale(1.05) translateZ(30px) translateX(-10%);
    box-shadow: 
        0 50px 100px rgba(0,0,0,0.4),
        0 30px 60px rgba(220, 38, 38, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.25),
        -30px 0 60px rgba(220, 38, 38, 0.15);
    border-color: rgba(255,255,255,0.3);
    border-radius: 50px 15px 50px 15px;
}

.mini-soccer-photo {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    border-radius: 21px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.05) saturate(1.1);
    animation: imageGlow 6s ease-in-out infinite;
}

.soccer-image:hover .mini-soccer-photo {
    transform: scale(1.08) rotate(0.5deg);
    filter: brightness(1.2) contrast(1.1) saturate(1.2) drop-shadow(0 10px 20px rgba(220, 38, 38, 0.3));
    animation-play-state: paused;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.15) 0%, 
        rgba(239, 68, 68, 0.1) 30%,
        transparent 60%,
        rgba(249, 115, 22, 0.1) 100%);
    border-radius: 21px;
    transition: all 0.6s ease;
    opacity: 0.8;
}

.soccer-image:hover .image-overlay {
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.2) 0%, 
        rgba(239, 68, 68, 0.15) 30%,
        transparent 60%,
        rgba(249, 115, 22, 0.15) 100%);
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: white;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.features-subtitle {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f97316 100%);
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.feature-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-description {
    font-family: 'Exo 2', sans-serif;
    color: #666;
    line-height: 1.8;
    font-weight: 400;
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
}

.language-toggle:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Custom Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f97316 100%);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(220, 38, 38, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}

.section-padding {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 3rem;
}

/* Enhanced Visual Effects */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #dc2626, #ef4444, #f97316);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 0.7;
    animation: glow 2s ease-in-out infinite alternate;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 2rem;
        align-items: center;
        text-align: center;
        padding-top: 2vh;
        min-height: auto;
    }
    
    .hero-text {
        order: 2;
        transform: translateY(0);
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-image {
        order: 1;
        justify-content: center;
        align-items: center;
        transform: translateX(0) translateY(0);
        padding: 10px;
    }
    
    .soccer-image {
        width: 100%;
        max-width: 320px;
        min-height: 350px;
        transform: rotateY(0deg) rotateX(0deg) translateZ(0) translateX(0);
        border-radius: 25px;
        margin: 0;
    }
    
    .soccer-image:hover {
        transform: scale(1.02);
        border-radius: 30px;
    }
    
    .mini-soccer-photo {
        max-height: 320px;
        border-radius: 20px;
    }
    
    .floating-shapes {
        opacity: 0.4;
    }
    
    .shape {
        animation-duration: 12s;
    }
    
    .shape-1 {
        width: 50px;
        height: 50px;
        top: 5%;
        left: 5%;
    }
    
    .shape-2 {
        width: 40px;
        height: 40px;
        top: 75%;
        right: 5%;
    }
    
    .shape-3 {
        width: 60px;
        height: 60px;
        bottom: 5%;
        left: 8%;
    }
    
    /* Mobile Decorative Elements */
    .deco-circle-1 {
        width: 100px;
        height: 100px;
        top: 10%;
        right: 10%;
    }
    
    .deco-circle-2 {
        width: 80px;
        height: 80px;
        bottom: 15%;
        left: 10%;
    }
    
    .deco-line-1, .deco-line-2 {
        width: 150px;
        opacity: 0.5;
    }
    
    .deco-triangle-1, .deco-triangle-2 {
        transform: scale(0.7);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .language-toggle {
        top: auto;
        bottom: 2rem;
        right: 50%;
        transform: translateX(50%);
    }
    
    h1, .h1 {
        font-size: 3rem;
    }
    
    h2, .h2 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 4rem 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-image {
        padding: 5px;
    }
    
    .soccer-image {
        min-height: 280px;
        max-width: 250px;
        margin: 5px;
    }
    
    .mini-soccer-photo {
        max-height: 260px;
    }
    
    .floating-shapes {
        opacity: 0.4;
    }
    
    .shape-1, .shape-2, .shape-3 {
        width: 40px;
        height: 40px;
    }
    
    .features {
        padding: 4rem 1rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 1.5rem;
        min-width: 100px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-title {
        font-size: 2rem;
    }
    
    .countdown-section {
        padding: 4rem 1rem;
    }
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 2rem;
    color: white;
    text-align: center;
}

.countdown-container {
    max-width: 1200px;
    margin: 0 auto;
}

.countdown-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f97316 100%);
    background-size: 200% 200%;
    animation: gradient-shift 6s ease infinite;
    padding: 2rem;
    border-radius: 15px;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.countdown-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.countdown-number {
    font-family: 'Orbitron', monospace;
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.countdown-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.95;
}

.countdown-cta {
    margin-top: 2rem;
}

.countdown-button {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f97316 100%);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: white;
    padding: 1.5rem 3rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.countdown-button:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #ea580c 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Additional animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.soccer-field {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.countdown-item {
    animation: pulse 2s ease-in-out infinite;
}

.soccer-image {
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Hero Sponsor */
.hero-sponsor {
    margin: 2rem 0 1rem;
}

.sponsor-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.sponsor-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-sponsor-logo {
    height: 40px;
    width: auto;
    border-radius: 6px;
    filter: brightness(1.1) contrast(1.1);
}

.sponsor-label {
    font-family: 'Exo 2', sans-serif;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Sponsor Section (Bottom) */
.sponsor-section {
    background: white;
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.sponsor-container {
    max-width: 800px;
    margin: 0 auto;
}

.sponsor-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sponsor-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.bank-bjb-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.bank-bjb-logo:hover {
    transform: scale(1.05);
}

.sponsor-text {
    font-family: 'Exo 2', sans-serif;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Particles.js Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Hero Decorative Elements */
.hero-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(249, 115, 22, 0.05));
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: float 12s ease-in-out infinite;
}

.deco-circle-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.deco-circle-2 {
    width: 120px;
    height: 120px;
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

.deco-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: lineMove 8s ease-in-out infinite;
}

.deco-line-1 {
    width: 300px;
    height: 2px;
    top: 30%;
    left: 10%;
    transform: rotate(45deg);
    animation-delay: 1s;
}

.deco-line-2 {
    width: 200px;
    height: 2px;
    bottom: 40%;
    right: 25%;
    transform: rotate(-30deg);
    animation-delay: 3s;
}

.deco-triangle {
    position: absolute;
    width: 0;
    height: 0;
    animation: triangleFloat 10s ease-in-out infinite;
}

.deco-triangle-1 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid rgba(220, 38, 38, 0.15);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.deco-triangle-2 {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(249, 115, 22, 0.1);
    top: 20%;
    left: 5%;
    animation-delay: 5s;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.6s ease;
}

.soccer-image:hover .floating-shapes {
    opacity: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    backdrop-filter: blur(1px);
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.shape-1 {
    width: 90px;
    height: 90px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.3), 
        rgba(239, 68, 68, 0.1));
    animation-duration: 7s;
}

.shape-2 {
    width: 70px;
    height: 70px;
    top: 65%;
    right: 12%;
    animation-delay: 2.5s;
    background: linear-gradient(135deg, 
        rgba(249, 115, 22, 0.4), 
        rgba(251, 146, 60, 0.15));
    animation-duration: 9s;
}

.shape-3 {
    width: 110px;
    height: 110px;
    bottom: 15%;
    left: 15%;
    animation-delay: 5s;
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.25), 
        rgba(220, 38, 38, 0.08));
    animation-duration: 6s;
}

.soccer-image:hover .shape {
    transform: scale(1.1);
    animation-duration: 4s;
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(90deg) scale(1.05);
    }
    50% {
        transform: translateY(-25px) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translateY(-10px) rotate(270deg) scale(1.1);
    }
}

@keyframes imageGlow {
    0%, 100% {
        box-shadow: 
            0 30px 60px rgba(0, 0, 0, 0.25),
            0 20px 40px rgba(220, 38, 38, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 35px 70px rgba(0, 0, 0, 0.3),
            0 25px 45px rgba(220, 38, 38, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            0 0 30px rgba(220, 38, 38, 0.1);
    }
}

@keyframes subtlePulse {
    0%, 100% {
        transform: rotateY(-8deg) rotateX(3deg) translateZ(20px) translateX(-15%) scale(1);
    }
    50% {
        transform: rotateY(-8deg) rotateX(3deg) translateZ(25px) translateX(-15%) scale(1.01);
    }
}

@keyframes lineMove {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50px) rotate(45deg);
    }
    50% {
        opacity: 0.8;
        transform: translateX(50px) rotate(45deg);
    }
}

@keyframes triangleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
        opacity: 0.8;
    }
    66% {
        transform: translateY(-15px) rotate(240deg);
        opacity: 0.4;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6), 0 0 60px rgba(59, 130, 246, 0.4);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Enhanced Animations */
.animate-slide-up {
    animation: slideInUp 0.8s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

.animate-delay-1 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.animate-delay-2 {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.animate-delay-3 {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

/* Shimmer Effect */
.shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0)
    );
    background-size: 200px 100%;
    background-repeat: no-repeat;
    animation: shimmer 2s infinite;
}

/* Enhanced Button Animations */
.hero-cta {
    position: relative;
    overflow: hidden;
    animation: pulse 3s ease-in-out infinite;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hero-cta:hover::before {
    left: 100%;
}

.countdown-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #dc2626, #ef4444, #f97316);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.countdown-button:hover {
    animation: glow 1.5s ease-in-out infinite;
}

/* Glassmorphism Effects */
.feature-card {
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 4s ease-in-out infinite;
}

/* Enhanced Navbar */
.navbar {
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

/* Modern Hero Section */
.hero-modern {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.8) 0%, 
        rgba(30, 41, 59, 0.7) 50%, 
        rgba(51, 65, 85, 0.6) 100%);
}

.hero-artistic-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.3), rgba(147, 51, 234, 0.2));
    animation: float 12s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 4s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 40%;
    animation-delay: 8s;
}

.geometric-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
    animation: lineMove 8s ease-in-out infinite;
}

.line-1 {
    width: 300px;
    height: 2px;
    top: 30%;
    left: 0;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    width: 200px;
    height: 2px;
    top: 70%;
    right: 20%;
    transform: rotate(-30deg);
    animation-delay: 2s;
}

.line-3 {
    width: 250px;
    height: 2px;
    bottom: 30%;
    left: 30%;
    transform: rotate(15deg);
    animation-delay: 4s;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 85vh;
    padding-top: 100px;
}

.hero-content-left {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #fbbf24;
}

.hero-title-modern {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.title-main {
    display: block;
    color: white;
    opacity: 0.9;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
}

.title-subtitle {
    display: block;
    font-size: 0.4em;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 1rem;
    letter-spacing: 2px;
}

.hero-description-modern {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
}

.hero-countdown {
    margin-bottom: 3rem;
}

.countdown-title-small {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-align: center;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

.countdown-item-small {
    text-align: center;
}

.countdown-number-small {
    font-size: 2rem;
    font-weight: 900;
    color: #3b82f6;
    display: block;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.countdown-label-small {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.countdown-separator-small {
    font-size: 1.5rem;
    font-weight: 900;
    color: #3b82f6;
    opacity: 0.7;
    font-family: 'Orbitron', monospace;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.btn-secondary-modern {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-sponsor-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.8;
}

.sponsor-text {
    font-size: 0.9rem;
}

.sponsor-logo-modern {
    height: 30px;
    width: auto;
    filter: brightness(1.2);
}

.hero-content-right {
    position: relative;
}

.hero-visual-stack {
    position: relative;
    height: 680px;
    margin-top: 2rem;
}

.hero-main-image {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stadium-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.9) contrast(1.1) saturate(1.1);
}

.image-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.4) 0%,
        rgba(30, 41, 59, 0.3) 50%,
        rgba(51, 65, 85, 0.4) 100%
    );
    border-radius: 20px;
    pointer-events: none;
}

.tournament-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    border-radius: 0 0 20px 20px;
    padding: 3rem 2rem 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.tournament-logo {
    flex-shrink: 0;
}

.logo-circle {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
    animation: float 4s ease-in-out infinite;
}

.tournament-details {
    flex: 1;
}

.tournament-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 0.3rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.tournament-organizer {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.tournament-year {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b82f6;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.image-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    z-index: -1;
}

.floating-photos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.photo-card {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-card:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Clean Left Side Photos */
.card-left-1 {
    top: 80px;
    left: -60px;
    width: 110px;
    height: 110px;
    z-index: 3;
    animation: float 8s ease-in-out infinite;
    animation-delay: 0s;
}

.card-left-2 {
    bottom: 80px;
    left: -60px;
    width: 110px;
    height: 110px;
    z-index: 3;
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
}

/* Clean Right Side Photos */
.card-right-1 {
    top: 80px;
    right: -60px;
    width: 110px;
    height: 110px;
    z-index: 3;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.card-right-2 {
    bottom: 80px;
    right: -60px;
    width: 110px;
    height: 110px;
    z-index: 3;
    animation: float 8s ease-in-out infinite;
    animation-delay: 3s;
}

.animated-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pulse-ring {
    position: absolute;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: pulse-ring 3s ease-out infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 20%;
    animation-delay: 0s;
}

.ring-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.soccer-ball {
    position: absolute;
    top: 80px;
    left: 50px;
    font-size: 2rem;
    color: #fbbf24;
    animation: float 4s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Enhanced Hero Background */
.hero {
    background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 25%, #ef4444 50%, #f97316 75%, #fb923c 100%);
    background-size: 400% 400%;
    animation: gradient-shift 8s ease infinite;
}

/* Countdown Animation */
.countdown-number {
    animation: pulse 2s ease-in-out infinite;
}

.countdown-item:hover .countdown-number {
    animation: glow 1s ease-in-out infinite;
    color: #ef4444;
}

/* Sponsor Logo Animation */
.bank-bjb-logo {
    transition: all 0.3s ease;
}

.bank-bjb-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(220, 38, 38, 0.3));
}

/* Navigation Link Enhancements */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-2px);
}

.nav-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #dc2626, #ef4444, #f97316);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
}

.nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.nav-cta:hover::after {
    transform: translateX(100%);
}

/* Gen Z Neon Animations */
@keyframes neonGradientShift {
    0% {
        background-position: 0% 50%;
        filter: saturate(1.2) contrast(1.1) hue-rotate(0deg);
    }
    25% {
        background-position: 100% 50%;
        filter: saturate(1.4) contrast(1.2) hue-rotate(90deg);
    }
    50% {
        background-position: 100% 100%;
        filter: saturate(1.6) contrast(1.3) hue-rotate(180deg);
    }
    75% {
        background-position: 0% 100%;
        filter: saturate(1.4) contrast(1.2) hue-rotate(270deg);
    }
    100% {
        background-position: 0% 50%;
        filter: saturate(1.2) contrast(1.1) hue-rotate(360deg);
    }
}

@keyframes neonParticles {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translateY(-10px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-5px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
        opacity: 0.9;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 1;
    }
}

@keyframes neonGlow {
    0% {
        box-shadow: 
            0 0 20px rgba(255, 0, 110, 0.5),
            0 0 40px rgba(131, 56, 236, 0.3),
            0 0 60px rgba(6, 255, 165, 0.2);
    }
    33% {
        box-shadow: 
            0 0 30px rgba(131, 56, 236, 0.6),
            0 0 50px rgba(6, 255, 165, 0.4),
            0 0 70px rgba(255, 190, 11, 0.3);
    }
    66% {
        box-shadow: 
            0 0 25px rgba(6, 255, 165, 0.5),
            0 0 45px rgba(255, 190, 11, 0.4),
            0 0 65px rgba(255, 0, 110, 0.3);
    }
    100% {
        box-shadow: 
            0 0 20px rgba(255, 0, 110, 0.5),
            0 0 40px rgba(131, 56, 236, 0.3),
            0 0 60px rgba(6, 255, 165, 0.2);
    }
}

@keyframes morphingShape {
    0% {
        border-radius: 30px;
        transform: translateY(-20px) rotateY(0deg) rotateX(0deg) scale(1);
    }
    25% {
        border-radius: 20px 50px 20px 50px;
        transform: translateY(-25px) rotateY(-2deg) rotateX(2deg) scale(1.01);
    }
    50% {
        border-radius: 60px 10px 60px 10px;
        transform: translateY(-30px) rotateY(2deg) rotateX(-1deg) scale(0.99);
    }
    75% {
        border-radius: 40px 40px 10px 10px;
        transform: translateY(-22px) rotateY(-1deg) rotateX(1deg) scale(1.02);
    }
    100% {
        border-radius: 30px;
        transform: translateY(-20px) rotateY(0deg) rotateX(0deg) scale(1);
    }
}

@keyframes morphingGlow {
    0% {
        box-shadow: 
            0 8px 25px rgba(255, 0, 110, 0.4),
            0 0 20px rgba(131, 56, 236, 0.3),
            0 0 40px rgba(6, 255, 165, 0.2);
    }
    33% {
        box-shadow: 
            0 15px 35px rgba(131, 56, 236, 0.5),
            0 0 30px rgba(6, 255, 165, 0.4),
            0 0 50px rgba(255, 190, 11, 0.3);
    }
    66% {
        box-shadow: 
            0 12px 30px rgba(6, 255, 165, 0.5),
            0 0 25px rgba(255, 190, 11, 0.4),
            0 0 45px rgba(255, 0, 110, 0.3);
    }
    100% {
        box-shadow: 
            0 8px 25px rgba(255, 0, 110, 0.4),
            0 0 20px rgba(131, 56, 236, 0.3),
            0 0 40px rgba(6, 255, 165, 0.2);
    }
}

@keyframes geometricFloat {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translateX(10px) translateY(-5px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-5px) translateY(-10px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateX(-10px) translateY(5px) rotate(270deg);
        opacity: 0.9;
    }
    100% {
        transform: translateX(0px) translateY(0px) rotate(360deg);
        opacity: 1;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #1e293b;
}

.title-accent {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    height: 600px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-main {
    grid-row: 1 / -1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(139, 92, 246, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.overlay-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Info Section */
.info-section {
    padding: 6rem 2rem;
    background: white;
}

.info-container {
    max-width: 1400px;
    margin: 0 auto;
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.info-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
}

.info-title .highlight {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 3rem;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #64748b;
    line-height: 1.5;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.info-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.schedule-item .date {
    font-weight: 600;
    color: #3b82f6;
}

.schedule-item .event {
    color: #64748b;
}

.prize-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.prize-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid;
}

.prize-item.gold {
    border-left-color: #fbbf24;
}

.prize-item.silver {
    border-left-color: #9ca3af;
}

.prize-item.bronze {
    border-left-color: #d97706;
}

.prize-item .position {
    font-weight: 700;
    font-size: 1.1rem;
}

.prize-item .amount {
    font-weight: 600;
    color: #059669;
}

/* Modern Countdown Section */
.countdown-modern-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.countdown-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.countdown-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.countdown-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
    z-index: 2;
}

.countdown-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

.countdown-content {
    text-align: center;
    color: white;
}

.countdown-header {
    margin-bottom: 4rem;
}

.countdown-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.countdown-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.countdown-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.countdown-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    min-width: 150px;
    transition: all 0.3s ease;
}

.countdown-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.countdown-card .countdown-number {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
    color: #3b82f6;
}

.countdown-card .countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.countdown-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0%, 100% { width: 20%; }
    50% { width: 100%; }
}

.countdown-separator {
    font-size: 3rem;
    font-weight: 900;
    color: #3b82f6;
    opacity: 0.7;
}

.countdown-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-cta-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    font-size: 1.1rem;
}

.countdown-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.countdown-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
}

.countdown-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Contact & Sponsor Section */
.contact-sponsor-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.contact-sponsor-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.contact-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-details p {
    opacity: 0.8;
    color: #cbd5e1;
}

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

.sponsor-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 400px;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.sponsor-card .sponsor-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #3b82f6;
}

.sponsor-logo-container {
    margin-bottom: 2rem;
}

.sponsor-logo {
    height: 80px;
    width: auto;
    filter: brightness(1.2);
}

.sponsor-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.sponsor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Active Navigation State */
.nav-link.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-1px);
}

.nav-link.active i {
    opacity: 1;
}

.nav-link.active::after {
    width: 80%;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.dropdown-toggle .fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    transform: translateX(5px);
}

.dropdown-link i {
    font-size: 0.85rem;
    opacity: 0.7;
    width: 16px;
    text-align: center;
}

.dropdown-link:hover i {
    opacity: 1;
}

/* Navigation Enhancements */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 2rem;
}

/* Mobile Navigation Updates */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 20px 20px;
        gap: 1rem;
        align-items: stretch;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem;
        border-radius: 12px;
        justify-content: flex-start;
        font-size: 1rem;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        margin-top: 0.5rem;
        background: rgba(59, 130, 246, 0.05);
        border: 1px solid rgba(59, 130, 246, 0.1);
        transition: all 0.3s ease;
    }
    
    .dropdown-menu.mobile-active {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
    }
    
    .dropdown-link {
        padding: 0.75rem 1.5rem;
    }
    
    .nav-cta {
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .menu-toggle {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        color: white;
        border: none;
        padding: 0.7rem;
        border-radius: 8px;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .menu-toggle:hover {
        background: linear-gradient(135deg, #1d4ed8, #1e40af);
        transform: scale(1.05);
    }
}

/* Mobile Responsiveness for Modern Sections */
@media (max-width: 768px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-top: 120px;
        min-height: 90vh;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .countdown-display {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .countdown-number-small {
        font-size: 1.5rem;
    }
    
    .countdown-separator-small {
        font-size: 1rem;
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-visual-stack {
        height: 450px;
        margin-top: 1rem;
    }
    
    .hero-main-image {
        height: 380px;
    }
    
    .tournament-badge {
        top: 15px;
        left: 15px;
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .badge-title {
        font-size: 0.75rem;
    }
    
    .badge-subtitle {
        font-size: 0.6rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .gallery-main {
        grid-row: auto;
    }
    
    .info-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .info-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .countdown-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .countdown-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-sponsor-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .floating-photos .photo-card {
        display: none;
    }
    
    /* Show only 2 photos on mobile - clean and minimal */
    .card-right-1,
    .card-left-1 {
        display: block;
        width: 80px;
        height: 80px;
        animation-duration: 6s;
    }
    
    .card-right-1 {
        top: 100px;
        right: -35px;
    }
    
    .card-left-1 {
        top: 100px;
        left: -35px;
    }
    
    .floating-orb,
    .geometric-lines {
        display: none;
    }
}

/* Mobile Responsiveness for Animations */
@media (max-width: 768px) {
    .shape {
        display: none;
    }
    
    .hero {
        animation: none;
        background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 50%, #f97316 100%);
    }
    
    .countdown-button,
    .nav-cta {
        animation: none;
    }
}

/* ===============================================
   BRACKET PAGE STYLES
   =============================================== */

/* Hero Header for Bracket Page */
.hero-header-modern {
    position: relative;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 4rem;
}

.hero-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-header-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-header-text h1.hero-header-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    line-height: 1;
}

.title-gradient {
    background: linear-gradient(135deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.hero-header-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 400;
}

.hero-header-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bracket-visual {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bracket-visual i {
    font-size: 4rem;
    color: #fbbf24;
    z-index: 3;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.8);
}

.visual-ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.visual-ring.ring-1 {
    width: 120px;
    height: 120px;
    animation: rotate 20s linear infinite;
}

.visual-ring.ring-2 {
    width: 180px;
    height: 180px;
    animation: rotate 30s linear infinite reverse;
}

.hero-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: particles 60s linear infinite;
}

/* Tournament Stats Modern */
.tournament-stats-modern {
    margin: 4rem 0;
    padding: 0 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-modern:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.stat-card-modern:hover:before {
    left: 100%;
}

.stat-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-icon-modern.group-stage {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.stat-icon-modern.round-16 {
    background: linear-gradient(135deg, #10b981, #047857);
}

.stat-icon-modern.quarter {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-icon-modern.semi {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.stat-icon-modern.final {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.stat-title-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number-modern {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.3rem 0;
}

.stat-label-modern {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 400;
}

/* Bracket Sections Modern */
.bracket-section-modern {
    margin: 3rem 0;
    padding: 0 2rem;
}

.bracket-card-modern {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bracket-header-modern {
    position: relative;
    padding: 2rem;
    color: white;
    overflow: hidden;
}

.final-header {
    background: linear-gradient(135deg, #dc2626, #ef4444, #f87171);
}

.semi-header {
    background: linear-gradient(135deg, #ea580c, #f97316, #fb923c);
}

.bracket-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.bracket-header-icon {
    font-size: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.bracket-header-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bracket-header-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    opacity: 0.1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="10" fill="white"/><circle cx="80" cy="80" r="15" fill="white"/><circle cx="50" cy="30" r="8" fill="white"/></svg>') no-repeat center;
    background-size: cover;
}

.bracket-content-modern {
    padding: 2rem;
}

/* Match Cards Modern */
.match-card-modern {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.match-card-modern:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="30" r="1.5" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    pointer-events: none;
}

.match-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(59, 130, 246, 0.5);
}

.match-info-modern {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.match-date-modern {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.match-venue-modern {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.match-teams-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.team-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
}

.team-name-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.match-score-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
    text-align: center;
    position: relative;
    z-index: 2;
    order: 2;
}

.score-display {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.2rem;
}

.score-display.finished {
    color: #ef4444;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.score-display.live {
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    animation: pulse 2s infinite;
}

.score-display.upcoming {
    color: #9ca3af;
    font-size: 3rem;
    text-shadow: 0 0 15px rgba(156, 163, 175, 0.4);
}

.match-status {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: inline-block;
}

.match-status.finished {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

.match-status.live {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.match-status.upcoming {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

/* Grid Layouts */
.matches-grid.semi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

/* ===============================================
   TOP SCORERS PAGE STYLES
   =============================================== */

/* Scorer Visual Icon */
.scorer-visual {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scorer-visual i {
    font-size: 4rem;
    color: #fbbf24;
    z-index: 3;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.8);
}

/* Scorers Section Modern */
.scorers-section-modern {
    margin: 4rem 0;
    padding: 0 2rem;
}

.scorers-card-modern {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.scorers-header-modern {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    color: white;
    overflow: hidden;
}

.scorers-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.scorers-header-icon {
    font-size: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.scorers-header-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.scorers-header-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    opacity: 0.1;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="10" fill="white"/><circle cx="80" cy="80" r="15" fill="white"/><circle cx="50" cy="30" r="8" fill="white"/></svg>') no-repeat center;
    background-size: cover;
}

.scorers-content-modern {
    padding: 2rem;
}

/* Scorer Card Modern */
.scorer-card-modern {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.scorer-card-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.scorer-card-modern.top-scorer {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    border-color: rgba(251, 191, 36, 0.3);
}

.scorer-rank-modern {
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.scorer-rank-modern.rank-1 {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.scorer-rank-modern.rank-2 {
    background: linear-gradient(135deg, #e5e7eb, #9ca3af);
}

.scorer-rank-modern.rank-3 {
    background: linear-gradient(135deg, #92400e, #78350f);
}

.scorer-rank-modern:not(.rank-1):not(.rank-2):not(.rank-3) {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.scorer-rank-modern i {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.rank-number {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.scorer-info-modern {
    flex: 1;
}

.scorer-name-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.scorer-name-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-badge-modern {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.top-badge-modern.top-1 {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.top-badge-modern.top-2 {
    background: linear-gradient(135deg, #e5e7eb, #9ca3af);
    color: #374151;
}

.top-badge-modern.top-3 {
    background: linear-gradient(135deg, #92400e, #78350f);
}

.scorer-team-modern {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scorer-goals-modern {
    text-align: center;
    min-width: 100px;
}

.goals-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: #3b82f6;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    line-height: 1;
}

.goals-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
}

/* Stats Summary Modern */
.stats-summary-modern {
    margin: 4rem 0;
    padding: 0 2rem;
}

.stats-summary-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.summary-stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.summary-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.summary-stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.summary-stat-icon.scorers-icon {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.summary-stat-icon.goals-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.summary-stat-icon.total-icon {
    background: linear-gradient(135deg, #10b981, #047857);
}

.summary-stat-content {
    text-align: left;
    flex: 1;
}

.summary-stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.3rem 0;
    line-height: 1;
}

.summary-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Actions Modern */
.quick-actions-modern {
    margin: 4rem 0;
    padding: 0 2rem;
}

.quick-actions-container {
    max-width: 800px;
    margin: 0 auto;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.action-card-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-card-modern:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.action-card-modern:hover:before {
    left: 100%;
}

.action-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.action-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.teams-action .action-icon-modern {
    background: linear-gradient(135deg, #10b981, #047857);
}

.bracket-action .action-icon-modern {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.action-content-modern {
    flex: 1;
}

.action-title-modern {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-subtitle-modern {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

/* Empty State Modern */
.empty-state-modern {
    margin: 4rem 0;
    padding: 0 2rem;
}

.empty-state-container {
    max-width: 600px;
    margin: 0 auto;
}

.empty-state-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.empty-state-icon {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state-icon i {
    font-size: 5rem;
    color: #d1d5db;
    z-index: 3;
}

.icon-ring {
    position: absolute;
    border: 2px solid rgba(209, 213, 219, 0.3);
    border-radius: 50%;
}

.icon-ring.ring-1 {
    width: 120px;
    height: 120px;
    animation: rotate 20s linear infinite;
}

.icon-ring.ring-2 {
    width: 180px;
    height: 180px;
    animation: rotate 30s linear infinite reverse;
}

.empty-state-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #6b7280;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.empty-state-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #9ca3af;
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.empty-state-action {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.empty-state-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.5);
    text-decoration: none;
    color: white;
}

/* Top Scorers Page Mobile Responsive */
@media (max-width: 768px) {
    .scorer-card-modern {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .scorer-rank-modern {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .scorer-name-modern {
        font-size: 1.2rem;
    }
    
    .goals-number {
        font-size: 2.5rem;
    }
    
    .stats-summary-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .summary-stat-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .action-card-modern {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .empty-state-content {
        padding: 3rem 1.5rem;
    }
    
    .empty-state-title {
        font-size: 1.5rem;
    }
}

/* ===============================================
   FOOTER STYLES
   =============================================== */

.footer {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section h4.footer-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #e5e7eb;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.social-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #3b82f6;
    text-decoration: none;
    transform: translateX(5px);
}

.footer-link:hover:before {
    width: 100%;
}

.contact-info p {
    font-family: 'Inter', sans-serif;
    color: #d1d5db;
    font-size: 0.9rem;
    margin: 0 0 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: #3b82f6;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

/* ===============================================
   TEAMS PAGE STYLES  
   =============================================== */

/* Teams Visual Icon */
.teams-visual {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teams-visual i {
    font-size: 4rem;
    color: #fbbf24;
    z-index: 3;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.8);
}

/* Teams Grid Modern */
.teams-grid-modern {
    margin: 4rem 0;
    padding: 0 2rem;
}

.teams-grid-container {
    max-width: 1200px;
    margin: 0 auto;
}

.teams-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.team-card-modern:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.team-card-modern:hover:before {
    left: 100%;
}

.team-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.team-header-modern {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-header-modern:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="10" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="15" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="30" r="8" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
}

.team-logo-modern {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
}

.team-logo-modern img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.9);
    background: white;
    padding: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.team-logo-default {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.team-logo-default i {
    font-size: 2rem;
    color: #3b82f6;
}

.team-name-header {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.team-content-modern {
    padding: 2rem;
}

.team-stats-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.team-stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.team-stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 0;
    text-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.team-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0.3rem 0 0 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-description-modern {
    font-family: 'Inter', sans-serif;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-action-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    width: 100%;
    justify-content: center;
}

.team-action-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.5);
    text-decoration: none;
    color: white;
}

/* Teams Summary Stats */
.teams-summary-modern {
    margin: 4rem 0;
    padding: 0 2rem;
}

.teams-summary-container {
    max-width: 1200px;
    margin: 0 auto;
}

.teams-summary-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.teams-summary-header {
    text-align: center;
    margin-bottom: 2rem;
}

.teams-summary-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.teams-summary-title i {
    color: #10b981;
    margin-right: 0.5rem;
}

.teams-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.summary-item-modern {
    text-align: center;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.summary-item-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.summary-number-modern {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.summary-number-modern.primary { color: #3b82f6; }
.summary-number-modern.secondary { color: #10b981; }
.summary-number-modern.accent { color: #f59e0b; }
.summary-number-modern.red { color: #ef4444; }

.summary-label-modern {
    font-family: 'Inter', sans-serif;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section h3.footer-title {
        font-size: 1.2rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
}

/* Teams Mobile Responsive */
@media (max-width: 768px) {
    .teams-grid-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-header-modern {
        padding: 1.5rem;
    }
    
    .team-content-modern {
        padding: 1.5rem;
    }
    
    .teams-summary-card {
        padding: 2rem 1.5rem;
    }
    
    .teams-summary-title {
        font-size: 1.5rem;
    }
    
    .teams-summary-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

/* Bracket Page Mobile Responsive */
@media (max-width: 768px) {
    .hero-header-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-header-text h1.hero-header-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .stat-card-modern {
        padding: 1.5rem;
    }
    
    .bracket-header-title {
        font-size: 1.5rem;
    }
    
    .matches-grid.semi-grid {
        grid-template-columns: 1fr;
    }
    
    .match-teams-modern {
        gap: 1rem;
    }
    
    .team-name-modern {
        font-size: 1rem;
    }
    
    .score-display {
        font-size: 2rem;
    }
}

/* Group Stage, Quarter Final, Round 16 Styling */
.group-header {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.quarter-header {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.round16-header {
    background: linear-gradient(135deg, #10b981, #047857);
}

.group-decoration,
.quarter-decoration,
.round16-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-15deg);
    transform-origin: top right;
}

/* Team Logo Styling */
.team-logo-modern {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    background: white;
    border: 3px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.team-modern.home-team {
    order: 1;
}

.team-modern.away-team {
    order: 3;
}

/* Match Grid Layouts */
.matches-grid.quarter-grid,
.matches-grid.round16-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.matches-grid.group-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.matches-grid.semi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .match-card-modern {
        padding: 1.5rem;
    }
    
    .match-teams-modern {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .team-modern {
        min-width: auto;
        flex-direction: row;
        gap: 1rem;
    }
    
    .team-modern.home-team,
    .team-modern.away-team {
        order: unset;
    }
    
    .match-score-modern {
        order: unset;
        min-width: auto;
    }
    
    .team-logo-modern {
        width: 50px;
        height: 50px;
    }
    
    .team-name-modern {
        font-size: 1.2rem;
    }
    
    .score-display {
        font-size: 2.5rem;
    }
    
    .score-display.upcoming {
        font-size: 2rem;
    }
    
    .match-date-modern {
        font-size: 1rem;
    }
    
    .match-venue-modern {
        font-size: 0.9rem;
    }
    
    .match-status {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .matches-grid.quarter-grid,
    .matches-grid.round16-grid,
    .matches-grid.group-grid,
    .matches-grid.semi-grid {
        grid-template-columns: 1fr;
    }
}

/* Tournament Bracket Styles */
.tournament-bracket-modern {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    overflow-x: auto;
}

.bracket-container {
    max-width: 100%;
    margin: 0 auto;
}

.bracket-wrapper {
    display: flex;
    gap: 4rem;
    min-width: fit-content;
    padding: 2rem;
}

.bracket-round {
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.round-header {
    text-align: center;
    margin-bottom: 2rem;
}

.round-header h3 {
    font-family: "Orbitron", monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.round-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.round-matches {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bracket-match {
    position: relative;
    background: linear-gradient(135deg, #1f1f1f, #2a2a2a);
    border-radius: 12px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.bracket-match:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.bracket-match-inner {
    padding: 1.5rem;
}

.match-teams-bracket {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-bracket {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-bracket.home {
    border-left: 4px solid #3b82f6;
}

.team-bracket.away {
    border-left: 4px solid #10b981;
}

.team-logo-bracket {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.team-name-bracket {
    flex: 1;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-score-bracket {
    font-family: "Orbitron", monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    min-width: 30px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.match-info-bracket {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.match-status-bracket {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.match-status-bracket.status-scheduled {
    background: rgba(156, 163, 175, 0.2);
    border-color: rgba(156, 163, 175, 0.3);
    color: #9ca3af;
}

.match-status-bracket.status-live {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
    color: #10b981;
    animation: pulse 2s infinite;
}

.match-status-bracket.status-finished {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.bracket-line-right {
    position: absolute;
    right: -2rem;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.5), transparent);
    transform: translateY(-50%);
}

.bracket-crown {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.bracket-crown i {
    font-size: 1rem;
    color: #ffffff;
}

.final-match {
    border: 3px solid rgba(251, 191, 36, 0.5);
    background: linear-gradient(135deg, #1f1f1f, #2a2a2a, #1f1f1f);
}

.final-match:hover {
    border-color: rgba(251, 191, 36, 0.8);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.2);
}

@media (max-width: 1024px) {
    .bracket-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    
    .bracket-round {
        min-width: auto;
    }
    
    .bracket-line-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .tournament-bracket-modern {
        padding: 2rem 1rem;
    }
    
    .team-name-bracket {
        font-size: 0.9rem;
    }
    
    .team-score-bracket {
        font-size: 1.2rem;
    }
    
    .team-logo-bracket {
        width: 24px;
        height: 24px;
    }
    
    .bracket-match-inner {
        padding: 1rem;
    }
}


/* Tournament Bracket Tree Styles - Liquipedia Style */
.tournament-bracket-tree {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    overflow-x: auto;
    min-height: 80vh;
}

.bracket-tree-container {
    max-width: 100%;
    margin: 0 auto;
}

.bracket-tree {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 6rem;
    min-width: fit-content;
    padding: 2rem;
    position: relative;
}

.bracket-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 280px;
    position: relative;
}

.round-title {
    font-family: "Orbitron", monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.matches-column {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.bracket-match-tree {
    position: relative;
    width: 100%;
    max-width: 280px;
}

.match-box {
    background: linear-gradient(135deg, #1f2937, #374151);
    border: 3px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.match-box:hover {
    border-color: rgba(59, 130, 246, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.team-row {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.team-row:last-of-type {
    border-bottom: none;
}

.team-row.winner-home,
.team-row.winner-away {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.1));
    border-left: 4px solid #10b981;
}

.team-row.winner-none {
    background: rgba(255, 255, 255, 0.02);
}

.team-logo-tree {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.team-logo-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo-placeholder:before {
    content: "?";
    color: #ffffff;
    font-weight: bold;
    font-size: 1rem;
}

.team-name-tree {
    flex: 1;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.team-score-tree {
    font-family: "Orbitron", monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    min-width: 30px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
}

.match-status-tree {
    text-align: center;
    padding: 0.8rem;
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.3);
    color: #9ca3af;
}

.match-status-tree.status-scheduled {
    color: #9ca3af;
}

.match-status-tree.status-live {
    color: #10b981;
    animation: pulse 2s infinite;
    background: rgba(16, 185, 129, 0.2);
}

.match-status-tree.status-finished {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.2);
}

.connector-right {
    position: absolute;
    right: -3rem;
    top: 50%;
    width: 3rem;
    height: 3px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.8), rgba(59, 130, 246, 0.3));
    transform: translateY(-50%);
    border-radius: 2px;
}

.bracket-column:last-child .connector-right {
    display: none;
}

.connector-right::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid rgba(59, 130, 246, 0.8);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.final-box {
    border-color: rgba(251, 191, 36, 0.6);
    background: linear-gradient(135deg, #1f2937, #374151, #1f2937);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
}

.final-tree {
    position: relative;
}

.champion-crown {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.champion-crown i {
    font-size: 2rem;
    color: #fbbf24;
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.8));
    animation: crownGlow 3s ease-in-out infinite;
}

.champion-crown span {
    font-family: "Orbitron", monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}

@keyframes crownGlow {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.8));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 25px rgba(251, 191, 36, 1));
    }
}

/* Vertical Connecting Lines Between Matches */
.bracket-column[data-round="first"] .matches-column::before,
.bracket-column[data-round="round16"] .matches-column::before,
.bracket-column[data-round="quarter"] .matches-column::before,
.bracket-column[data-round="semi"] .matches-column::before {
    content: "";
    position: absolute;
    left: calc(100% + 1.5rem);
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.3) 20%, 
        rgba(59, 130, 246, 0.8) 50%, 
        rgba(59, 130, 246, 0.3) 80%, 
        transparent 100%);
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .bracket-tree {
        gap: 4rem;
    }
    
    .connector-right {
        width: 2rem;
        right: -2rem;
    }
}

@media (max-width: 1024px) {
    .bracket-tree {
        flex-direction: column;
        gap: 4rem;
        align-items: center;
    }
    
    .connector-right {
        display: none;
    }
    
    .matches-column::before {
        display: none;
    }
    
    .bracket-column {
        min-width: 320px;
    }
}

@media (max-width: 768px) {
    .tournament-bracket-tree {
        padding: 2rem 1rem;
    }
    
    .bracket-column {
        min-width: 280px;
    }
    
    .match-box {
        max-width: 260px;
    }
    
    .team-name-tree {
        font-size: 0.9rem;
    }
    
    .team-score-tree {
        font-size: 1.2rem;
    }
    
    .team-logo-tree {
        width: 28px;
        height: 28px;
    }
    
    .round-title {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        margin-bottom: 2rem;
    }
}

/* Rules Section Styling */
.rules-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.rules-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.rules-content {
    margin-top: 4rem;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.rules-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.rules-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.rules-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.rules-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.rules-header h3 {
    color: #2c3e50;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.rule-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.rule-number {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.rule-item p {
    margin: 0;
    color: #495057;
    line-height: 1.6;
    font-weight: 500;
}

.rule-item strong {
    color: #2c3e50;
    font-weight: 700;
}

/* Format badges */
.rule-item.format {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.format-badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.format-badge.babak-16 {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.format-badge.final {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: white;
}

/* Penalty rules styling */
.rule-item.penalty {
    border-left-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.rule-item.penalty:hover {
    background: rgba(220, 53, 69, 0.1);
}

/* Small rule icons */
.rule-icon-small {
    width: 24px;
    height: 24px;
    color: #ff6b35;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Additional Rules Section */
.additional-rules {
    margin-top: 4rem;
}

.additional-rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.additional-rule-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.additional-rule-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.additional-rule-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    display: block;
}

.additional-rule-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.additional-rule-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.additional-rule-item strong {
    color: #2c3e50;
    font-weight: 700;
}

/* Fourth place prize styling */
.prize-item.fourth {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.prize-item.fourth .position {
    font-weight: bold;
    font-size: 1.1rem;
}

.prize-item.fourth .amount {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive Design for Rules Section */
@media (max-width: 1024px) {
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .additional-rules-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .rules-section {
        padding: 4rem 0;
    }
    
    .rules-container {
        padding: 0 1rem;
    }
    
    .rules-card {
        padding: 2rem;
    }
    
    .rules-header h3 {
        font-size: 1.5rem;
    }
    
    .rule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .rule-number {
        align-self: flex-start;
    }
    
    .additional-rules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .additional-rule-item {
        padding: 1.5rem;
    }
}

/* Play-off Section Styling */
.playoff-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.playoff-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.playoff-subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.playoff-matches {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.playoff-match {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 280px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.playoff-match:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.playoff-match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.playoff-label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #ff6b35;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.playoff-time {
    background: rgba(255, 107, 53, 0.2);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.playoff-teams {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.playoff-team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.playoff-team.winner {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-weight: bold;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.playoff-team-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

.playoff-score {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ff6b35;
    min-width: 30px;
    text-align: center;
}

.playoff-team.winner .playoff-score {
    color: #ffffff;
}

.vs-small {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    color: #ff6b35;
    font-weight: bold;
    text-align: center;
    padding: 0.3rem 0;
}

.playoff-winner {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
    animation: pulse 2s infinite;
}

.playoff-winner i {
    font-size: 0.9rem;
}

/* Left-Right Bracket Styling */
.tournament-bracket-lr {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow-x: auto;
}

.bracket-lr-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bracket-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bracket-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.bracket-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    font-weight: 500;
}

.bracket-main {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 2rem;
    align-items: center;
    min-height: 600px;
}

/* Side Titles */
.side-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Left Side */
.bracket-left {
    display: flex;
    flex-direction: column;
}

.left-first {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.left-semi {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

/* Right Side */
.bracket-right {
    display: flex;
    flex-direction: column;
}

.right-semi {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.right-first {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Round Matches */
.round-matches {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Match Boxes */
.bracket-match-lr {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border: 2px solid #4a5568;
    border-radius: 12px;
    padding: 1rem;
    min-width: 250px;
    transition: all 0.3s ease;
    position: relative;
}

.bracket-match-lr:hover {
    border-color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.bracket-match-lr.placeholder {
    border-style: dashed;
    border-color: #4a5568;
    background: rgba(45, 55, 72, 0.3);
}

.match-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
    color: #94a3b8;
}

.match-time, .match-date {
    background: rgba(255, 107, 53, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.team-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.team-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.team-line.winner {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-weight: bold;
    transform: scale(1.02);
}

.team-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
}

.team-score {
    font-weight: bold;
    font-size: 1.1rem;
    color: #ff6b35;
    min-width: 25px;
    text-align: center;
}

.team-line.winner .team-score {
    color: #ffffff;
}

/* Center Final */
.bracket-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.final-container {
    position: relative;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border: 3px solid #a855f7;
    border-radius: 20px;
    padding: 2rem;
    min-width: 300px;
    text-align: center;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}

.final-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.final-badge i {
    font-size: 1.5rem;
    color: #fbbf24;
}

.final-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #c4b5fd;
}

.final-time, .final-date {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
}

.final-teams {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.final-team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.final-team.champion {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    font-weight: bold;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.final-team-name {
    font-weight: 600;
    font-size: 1rem;
    color: #ffffff;
}

.final-team.champion .final-team-name {
    color: #1f2937;
}

.final-score {
    font-weight: bold;
    font-size: 1.3rem;
    color: #fbbf24;
    min-width: 30px;
    text-align: center;
}

.final-team.champion .final-score {
    color: #1f2937;
}

.vs-divider {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: #a855f7;
    font-weight: bold;
    text-align: center;
    padding: 0.5rem 0;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.champion-crown {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
    animation: bounce 2s infinite;
}

.champion-crown i {
    margin-right: 0.3rem;
}

/* Connectors */
.connector-vertical, .connector-horizontal {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    position: relative;
}

.connector-vertical {
    width: 3px;
    height: 80px;
    margin: 1rem 0;
}

.connector-horizontal {
    height: 3px;
    width: 60px;
    margin: 0 1rem;
}

.left-to-semi {
    align-self: flex-end;
}

.right-from-semi {
    align-self: flex-start;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* 18-Team Bracket Styles */
.bracket-main {
    display: grid;
    grid-template-columns: 3fr 2fr 3fr;
    gap: 4rem;
    align-items: center;
    min-height: 800px;
    justify-items: center;
    padding: 2rem 0;
}

.bracket-left, .bracket-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.bracket-left {
    align-items: flex-end;
}

.bracket-right {
    align-items: flex-start;
}

.bracket-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Round containers for 18-team format */
.round-1-left, .round-1-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.round-2-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
    padding-left: 2rem;
}

.round-2-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
    padding-right: 2rem;
}

.quarter-left {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
    padding-left: 2rem;
    position: relative;
}

.quarter-right {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
    padding-right: 2rem;
    position: relative;
}

.semi-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 5rem;
    padding-right: 1rem;
    position: relative;
}

.semi-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 5rem;
    padding-left: 1rem;
    position: relative;
}

/* 18-Team Match Boxes */
.bracket-match-18 {
    background: linear-gradient(145deg, #2d3748, #1a202c);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 140px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.bracket-match-18:hover {
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2);
}

.team-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0.6rem;
    background: rgba(45, 55, 72, 0.6);
    border-radius: 4px;
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

.team-slot:last-child {
    margin-bottom: 0;
}

.team-slot.winner {
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.2));
    border-left: 3px solid #ff6b35;
    font-weight: 600;
}

.team-name {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 500;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-slot.winner .team-name {
    color: #ff6b35;
}

.team-score {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.team-slot.winner .team-score {
    color: #ff6b35;
}

/* Improved Connecting Lines for 18-Team Bracket */

/* Horizontal connection lines */
.bracket-match-18::after {
    content: '';
    position: absolute;
    background: rgba(255, 107, 53, 0.6);
    z-index: 1;
}

/* Vertical connection lines between matches in same round */
.bracket-match-18::before {
    content: '';
    position: absolute;
    background: rgba(255, 107, 53, 0.4);
    z-index: 0;
}

/* LEFT SIDE CONNECTIONS */

/* Round 1 Left - horizontal lines going right */
.round-1-left .bracket-match-18::after {
    width: 40px;
    height: 2px;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
}

/* Round 1 Left - vertical connector between matches */
.round-1-left .bracket-match-18:nth-child(1)::before {
    width: 2px;
    height: 60px;
    right: -40px;
    top: 50%;
    transform: translateY(30px);
}

.round-1-left .bracket-match-18:nth-child(2)::before {
    width: 2px;
    height: 60px;
    right: -40px;
    top: 50%;
    transform: translateY(-90px);
}

.round-1-left .bracket-match-18:nth-child(3)::before {
    width: 2px;
    height: 60px;
    right: -40px;
    top: 50%;
    transform: translateY(30px);
}

.round-1-left .bracket-match-18:nth-child(4)::before {
    width: 2px;
    height: 60px;
    right: -40px;
    top: 50%;
    transform: translateY(-90px);
}

/* Quarter Final Left - horizontal lines */
.quarter-left .bracket-match-18::after {
    width: 40px;
    height: 2px;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
}

/* Quarter Final Left - vertical connector */
.quarter-left .bracket-match-18:nth-child(1)::before {
    width: 2px;
    height: 100px;
    right: -40px;
    top: 50%;
    transform: translateY(50px);
}

.quarter-left .bracket-match-18:nth-child(2)::before {
    width: 2px;
    height: 100px;
    right: -40px;
    top: 50%;
    transform: translateY(-150px);
}

/* Semi Final Left - horizontal line to center */
.semi-left .bracket-match-18::after {
    width: 60px;
    height: 2px;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
}

/* RIGHT SIDE CONNECTIONS */

/* Semi Final Right - horizontal line from center */
.semi-right .bracket-match-18::after {
    width: 60px;
    height: 2px;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
}

/* Quarter Final Right - horizontal lines */
.quarter-right .bracket-match-18::after {
    width: 40px;
    height: 2px;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
}

/* Quarter Final Right - vertical connector */
.quarter-right .bracket-match-18:nth-child(1)::before {
    width: 2px;
    height: 100px;
    left: -40px;
    top: 50%;
    transform: translateY(50px);
}

.quarter-right .bracket-match-18:nth-child(2)::before {
    width: 2px;
    height: 100px;
    left: -40px;
    top: 50%;
    transform: translateY(-150px);
}

/* Round 1 Right - horizontal lines going left */
.round-1-right .bracket-match-18::after {
    width: 40px;
    height: 2px;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
}

/* Round 1 Right - vertical connector between matches */
.round-1-right .bracket-match-18:nth-child(1)::before {
    width: 2px;
    height: 60px;
    left: -40px;
    top: 50%;
    transform: translateY(30px);
}

.round-1-right .bracket-match-18:nth-child(2)::before {
    width: 2px;
    height: 60px;
    left: -40px;
    top: 50%;
    transform: translateY(-90px);
}

.round-1-right .bracket-match-18:nth-child(3)::before {
    width: 2px;
    height: 60px;
    left: -40px;
    top: 50%;
    transform: translateY(30px);
}

.round-1-right .bracket-match-18:nth-child(4)::before {
    width: 2px;
    height: 60px;
    left: -40px;
    top: 50%;
    transform: translateY(-90px);
}

/* Responsive Design for Left-Right Bracket */
@media (max-width: 1200px) {
    .bracket-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bracket-left, .bracket-right {
        order: 1;
    }
    
    .bracket-center {
        order: 2;
    }
    
    .left-first, .right-first, .left-semi, .right-semi {
        justify-content: center;
    }
    
    .round-matches {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* 18-Team responsive adjustments */
    .round-1-left, .round-1-right {
        align-items: center;
    }
    
    .round-2-left, .round-2-right,
    .semi-left, .semi-right {
        padding: 0;
        justify-content: center;
        align-items: center;
    }
    
    .bracket-match-18::after {
        display: none;
    }
    
    .connector-vertical, .connector-horizontal {
        display: none;
    }
}

@media (max-width: 768px) {
    .tournament-bracket-lr {
        padding: 2rem 0;
    }
    
    .bracket-lr-container {
        padding: 0 1rem;
    }
    
    .bracket-title {
        font-size: 2rem;
    }
    
    .bracket-match-lr {
        min-width: 200px;
        padding: 0.8rem;
    }
    
    .bracket-match-18 {
        min-width: 120px;
        padding: 0.4rem;
    }
    
    .team-name {
        font-size: 0.7rem;
        max-width: 70px;
    }
    
    .final-container {
        min-width: 250px;
        padding: 1.5rem;
    }
    
    .round-matches {
        flex-direction: column;
        align-items: center;
    }
}
