:root {
    --primary-gold: #D4AF37;
    --dark-bg: #0F172A;
    --panel-bg: #1E293B;
    --text-main: #F8FAFC;
    --accent-blue: #38BDF8;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --accent: #ffd700;

}
body {
    margin: 0;
    padding: 0;
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1; 
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/mlbbBG.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.7); 
    transform: scale(1.1); 
    z-index: -1;
}

h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: transform 0.3s ease; 
    cursor: default; 
}

h1:hover {
    transform: scale(1.05); 
}
p {
    color: var(--text-primary);
}
header, 
.bracket-container, 
footer {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
header {
    text-align: center;
    padding: 2.5rem 1rem;
    width: 100%;  
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    
    box-sizing: border-box;
}
.header-left {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 30px; 
    margin-bottom: 1.5rem; 
}

.nav-logo {
    height: 80px; 
    width: auto;  
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.6)); 
    transition: transform 0.3s ease; 
}
@media (min-width: 768px) {
    .nav-logo {
        height: 140px; 
    
    .header-left {
        gap: 60px; 
    }
}
}
.nav-logo:hover {
    transform: scale(1.05);
}

main {
    width: 95%;
    max-width: 1200px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

button {
    background-color: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    padding: 0.6rem 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

button:hover {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--primary-gold);
}

.bracket-container {
    background-color: rgba(0, 0, 0, 0.3);    
    padding: 15px;
    position: relative;
}

iframe {
    border-radius: 8px;
    display: block;
}

footer {
    margin-top: auto;
    padding: 2rem;
    text-align: center;
    color: #64748B;
    width: 100%;
    font-size: 1.1rem;
    box-sizing: border-box;
}

footer span {
    color: var(--primary-gold);
    font-weight: bold;

}
