/* /Layout/MainLayout.razor.rz.scp.css */
.navbar[b-ycnexdki9g] {
    height: auto;
    min-height: 70px;
    background-color: #0033A0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #F4C542;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-left[b-ycnexdki9g] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.logo-icon[b-ycnexdki9g] {
    width: 48px;
    height: 48px;
    background-color: #F4C542;
    color: #0033A0;
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0,0,0,0.15);
}

.club-name h1[b-ycnexdki9g] {
    font-size: 1.25rem;
    margin: 0;
    color: white;
}

.club-name span[b-ycnexdki9g] {
    font-size: 0.75rem;
    color: #F4C542;
    letter-spacing: 0.5px;
}

.nav-links[b-ycnexdki9g] {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 1rem;
    padding: 0;
    margin-top: 0;
}

    .nav-links li a[b-ycnexdki9g] {
        color: white;
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
        display: inline-block;
    }

        .nav-links li a[b-ycnexdki9g]::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            width: 0;
            background-color: #F4C542;
            transition: width 0.3s ease;
        }

        .nav-links li a:hover[b-ycnexdki9g]::after {
            width: 100%;
        }

.burger[b-ycnexdki9g] {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.main-body[b-ycnexdki9g] {
    padding: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .burger[b-ycnexdki9g] {
        display: block;
    }

    .nav-links[b-ycnexdki9g] {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #0033A0;
        margin-top: 1rem;
        padding: 1rem 0;
    }

        .nav-links.active[b-ycnexdki9g] {
            display: flex;
        }

        .nav-links li[b-ycnexdki9g] {
            text-align: center;
            padding: 0.5rem 0;
        }
}
/* /Pages/Contact.razor.rz.scp.css */
/* ===== Base Styling ===== */
.container[b-skfua0vdic] {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, #ffffff, #f0f4ff);
    color: #0033A0;
    margin: 0;
    padding: 0;
}

/* ===== Navbar ===== */
.navbar[b-skfua0vdic] {
    min-height: 70px;
    background-color: #0033A0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 4px solid #F4C542;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-left[b-skfua0vdic] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.logo-icon[b-skfua0vdic] {
    width: 48px;
    height: 48px;
    background-color: #F4C542;
    color: #0033A0;
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.club-name h1[b-skfua0vdic] {
    font-size: 1.25rem;
    margin: 0;
    color: white;
}

.club-name span[b-skfua0vdic] {
    font-size: 0.75rem;
    color: #F4C542;
}

.nav-links[b-skfua0vdic] {
    display: flex;
    list-style: none;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

    .nav-links li a[b-skfua0vdic] {
        color: white;
        text-decoration: none;
        font-weight: 500;
        position: relative;
    }

        .nav-links li a[b-skfua0vdic]::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            height: 3px;
            width: 0;
            background-color: #F4C542;
            transition: width 0.3s ease;
        }

        .nav-links li a:hover[b-skfua0vdic]::after {
            width: 100%;
        }

/* ===== Burger Menu ===== */
.burger[b-skfua0vdic] {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* ===== Hero Banner ===== */
.hero-banner[b-skfua0vdic] {
    min-height: 90vh;
    background: url("../images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay[b-skfua0vdic] {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 2rem;
    max-width: 700px;
    border-radius: 10px;
}

.cta-button[b-skfua0vdic] {
    padding: 0.75rem 1.5rem;
    background-color: #F4C542;
    color: #0033A0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* ===== Support Section ===== */
.support-section[b-skfua0vdic] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 2rem;
    background: #f4f4f4;
}

.support-block[b-skfua0vdic] {
    flex: 1 1 400px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.support-grid[b-skfua0vdic] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.support-image[b-skfua0vdic] {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

/* ===== News Section ===== */
.news-section[b-skfua0vdic] {
    background: #ffffff;
    padding: 3rem 2rem;
}

.news-grid[b-skfua0vdic] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.news-card[b-skfua0vdic] {
    background: #f4f4f4;
    padding: 1.5rem;
    border-left: 6px solid #F4C542;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* ===== Players Section ===== */
.players-section[b-skfua0vdic] {
    padding: 3rem 2rem;
    background: #ffffff;
    text-align: center;
}

.players-grid[b-skfua0vdic] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.player-card[b-skfua0vdic] {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 260px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

    .player-card img[b-skfua0vdic] {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1rem;
        border: 3px solid #0033A0;
    }

/* ===== Contact Section ===== */
.home-contact-section[b-skfua0vdic] {
    background: linear-gradient(to bottom right, #f0f4ff, #ffffff);
    padding: 4rem 2rem;
    color: #0033A0;
    display: flex;
    justify-content: center;
}

.home-contact-container[b-skfua0vdic] {
    max-width: 1000px;
    width: 100%;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home-contact-text[b-skfua0vdic] {
    flex: 1 1 40%;
    min-width: 280px;
}

.home-contact-form[b-skfua0vdic] {
    flex: 1 1 50%;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .home-contact-form input[b-skfua0vdic],
    .home-contact-form textarea[b-skfua0vdic] {
        padding: 1rem;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-family: 'Segoe UI', sans-serif;
    }

    .home-contact-form button[b-skfua0vdic] {
        background-color: #F4C542;
        color: #0033A0;
        font-weight: bold;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        cursor: pointer;
    }

.whatsapp-button[b-skfua0vdic] {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
}

/* ===== Footer ===== */
.footer[b-skfua0vdic] {
    background: #002570;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* ===== Responsive Fixes ===== */
@media (max-width: 768px) {
    .burger[b-skfua0vdic] {
        display: block;
    }

    .logo-icon[b-skfua0vdic] {
        display: none;
    }

    .navbar[b-skfua0vdic] {
        padding: 0.5rem 1rem;
        min-height: 50px;
    }

    .nav-links[b-skfua0vdic] {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #0033A0;
        padding: 1rem 0;
        margin-top: 1rem;
    }

        .nav-links.active[b-skfua0vdic] {
            display: flex;
        }

    .hero-banner[b-skfua0vdic] {
        background-image: url("../images/heroimage_mobile.jpg") !important;
        min-height: calc(100vh - 50px);
    }

    .home-contact-container[b-skfua0vdic] {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .home-contact-text[b-skfua0vdic],
    .home-contact-form[b-skfua0vdic] {
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

        .home-contact-form input[b-skfua0vdic],
        .home-contact-form textarea[b-skfua0vdic] {
            width: 100%;
        }
}
/* /Pages/fixtures.razor.rz.scp.css */
.page-background[b-305w9xlwcr] {
    padding: 3rem 2rem;
    background-image: url("../images/background.png");
    background-repeat: repeat;
    background-size: 1100px; /* adjust as needed */
    background-color: #ffffff; /* fallback */
    background-attachment: fixed;
    color: #0033A0;
    min-height: 100vh;
}

.fixtures-container[b-305w9xlwcr] {
    font-family: 'Segoe UI', sans-serif;
    background-color: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.month-section[b-305w9xlwcr] {
    margin-bottom: 3rem;
}

.month-title[b-305w9xlwcr] {
    font-size: 2rem;
    border-left: 5px solid #add8e6;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.fixture-card[b-305w9xlwcr] {
    background: white;
    border: 2px solid #add8e6;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.fixture-header[b-305w9xlwcr] {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.fixture-teams[b-305w9xlwcr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.fixture-location[b-305w9xlwcr] {
    font-size: 0.95rem;
}

*[b-305w9xlwcr] {
    scroll-behavior: smooth;
}
/* /Pages/Home.razor.rz.scp.css */

/* ===== Base Styling ===== */
.container[b-1uvwjqt0xv] {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, #ffffff, #f0f4ff);
    color: #0033A0;
    margin: 0;
    padding: 0;
}
.burger[b-1uvwjqt0xv] {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}
/* ===== Navbar ===== */
.navbar[b-1uvwjqt0xv] {
    height: auto;
    min-height: 70px;
    background-color: #0033A0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #F4C542;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-left[b-1uvwjqt0xv] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.logo-icon[b-1uvwjqt0xv] {
    width: 48px;
    height: 48px;
    background-color: #F4C542;
    color: #0033A0;
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0,0,0,0.15);
}

.club-name h1[b-1uvwjqt0xv] {
    font-size: 1.25rem;
    margin: 0;
    color: white;
}

.club-name span[b-1uvwjqt0xv] {
    font-size: 0.75rem;
    color: #F4C542;
    letter-spacing: 0.5px;
}


/* ===== Hero Banner ===== */
.hero-banner[b-1uvwjqt0xv] {
    min-height: 90vh;
    padding: 2rem 1rem;
    background-color: #f0f4ff;
    background-image: url("../images/hero.jpg");
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay[b-1uvwjqt0xv] {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 2rem;
    max-width: 700px;
    border-radius: 10px;
}

    .hero-overlay h1[b-1uvwjqt0xv] {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-overlay p[b-1uvwjqt0xv] {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

.cta-button[b-1uvwjqt0xv] {
    padding: 0.75rem 1.5rem;
    background-color: #F4C542;
    color: #0033A0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* ===== Support Section ===== */
.support-section[b-1uvwjqt0xv] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 2rem;
    background: #f4f4f4;
}

.support-block[b-1uvwjqt0xv] {
    flex: 1 1 400px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

    .support-block h2[b-1uvwjqt0xv] {
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        color: #0033A0;
        text-align: center;
    }

.support-grid[b-1uvwjqt0xv] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.support-image[b-1uvwjqt0xv] {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

    .support-image:hover[b-1uvwjqt0xv] {
        transform: scale(1.05);
    }

/* ===== News Section ===== */
.news-section[b-1uvwjqt0xv] {
    background: #ffffff;
    padding: 3rem 2rem;
}

.news-header[b-1uvwjqt0xv] {
    text-align: center;
    margin-bottom: 2rem;
}

    .news-header h2[b-1uvwjqt0xv] {
        font-size: 2rem;
        color: #0033A0;
        margin-bottom: 0.5rem;
    }

    .news-header p[b-1uvwjqt0xv] {
        font-size: 1rem;
        color: #666;
    }

.news-grid[b-1uvwjqt0xv] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.news-card[b-1uvwjqt0xv] {
    background: #f4f4f4;
    padding: 1.5rem;
    border-left: 6px solid #F4C542;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .news-card:hover[b-1uvwjqt0xv] {
        transform: translateY(-5px);
    }

.fixture-date[b-1uvwjqt0xv] {
    font-size: 0.9rem;
    font-weight: bold;
    color: #0033A0;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.news-card h3[b-1uvwjqt0xv] {
    font-size: 1.2rem;
    color: #222;
    margin: 0 0 0.5rem;
}

.fixture-time[b-1uvwjqt0xv] {
    font-size: 0.95rem;
    color: #666;
}

/* ===== Meet the Players ===== */
.players-section[b-1uvwjqt0xv] {
    padding: 3rem 2rem;
    background: #ffffff;
    text-align: center;
}

    .players-section h2[b-1uvwjqt0xv] {
        margin-bottom: 2rem;
        font-size: 2rem;
        color: #0033A0;
    }

.players-grid[b-1uvwjqt0xv] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.player-card[b-1uvwjqt0xv] {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    max-width: 260px;
    text-align: center;
}

    .player-card:hover[b-1uvwjqt0xv] {
        transform: translateY(-5px);
    }

    .player-card img[b-1uvwjqt0xv] {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1rem;
        border: 3px solid #0033A0;
    }

    .player-card h3[b-1uvwjqt0xv] {
        margin: 0.5rem 0 0.25rem;
        font-size: 1.2rem;
        color: #0033A0;
    }

.player-position[b-1uvwjqt0xv] {
    font-size: 0.95rem;
    color: #666;
    margin: 0.25rem 0 0.5rem;
    font-style: italic;
}

.player-bio[b-1uvwjqt0xv] {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
}

/* ===== Footer ===== */
.footer[b-1uvwjqt0xv] {
    background: #002570;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}


.home-contact-section[b-1uvwjqt0xv] {
    background: linear-gradient(to bottom right, #f0f4ff, #ffffff);
    padding: 4rem 2rem;
    color: #0033A0;
    display: flex;
    justify-content: center;
}

.home-contact-container[b-1uvwjqt0xv] {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
}

.home-contact-text[b-1uvwjqt0xv] {
    flex: 1 1 40%;
    min-width: 280px;
}

    .home-contact-text h2[b-1uvwjqt0xv] {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .home-contact-text p[b-1uvwjqt0xv] {
        font-size: 1.1rem;
        line-height: 1.6;
    }

.home-contact-form[b-1uvwjqt0xv] {
    flex: 1 1 50%;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .home-contact-form input[b-1uvwjqt0xv],
    .home-contact-form textarea[b-1uvwjqt0xv] {
        padding: 1rem;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-family: 'Segoe UI', sans-serif;
    }

    .home-contact-form button[b-1uvwjqt0xv] {
        background-color: #F4C542;
        color: #0033A0;
        font-weight: bold;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .home-contact-form button:hover[b-1uvwjqt0xv] {
            background-color: #e2b838;
        }
.whatsapp-button[b-1uvwjqt0xv] {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
}

    .whatsapp-button:hover[b-1uvwjqt0xv] {
        background-color: #1ebc5a;
    }
/* ===== Responsive Fixes ===== */
@media (max-width: 768px) {
    .burger[b-1uvwjqt0xv] {
        display: block;
    }

    .logo-icon[b-1uvwjqt0xv] {
        display: none;
    }

    .navbar[b-1uvwjqt0xv] {
        padding: 0.5rem 1rem;
        min-height: 50px;
    }

    .club-name h1[b-1uvwjqt0xv] {
        font-size: 1rem;
    }

    .club-name span[b-1uvwjqt0xv] {
        font-size: 0.65rem;
    }

    .burger[b-1uvwjqt0xv] {
        font-size: 1.5rem;
    }


    .hero-overlay h1[b-1uvwjqt0xv] {
        font-size: 1.7rem;
    }

    .hero-overlay p[b-1uvwjqt0xv] {
        font-size: 1rem;
    }

    .hero-banner[b-1uvwjqt0xv] {
        background-image: url("../images/heroimage_mobile.jpg") !important;
        min-height: calc(100vh - 50px); /* mobile navbar height */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .support-grid[b-1uvwjqt0xv],
    .news-grid[b-1uvwjqt0xv],
    .players-grid[b-1uvwjqt0xv] {
        grid-template-columns: 1fr;
    }

    .player-card[b-1uvwjqt0xv],
    .news-card[b-1uvwjqt0xv],
    .support-block[b-1uvwjqt0xv] {
        max-width: 100%;
    }


    .home-contact-container[b-1uvwjqt0xv] {
        display: block;
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .home-contact-text[b-1uvwjqt0xv] {
        width: 100%;
        margin-bottom: 2rem; /* ✅ Adds spacing between text and form */
        text-align: center;
    }

    .home-contact-form[b-1uvwjqt0xv] {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        box-sizing: border-box;
    }

        .home-contact-form input[b-1uvwjqt0xv],
        .home-contact-form textarea[b-1uvwjqt0xv] {
            width: 100%;
            max-width: 100%; /* ✅ Prevents input overflow */
            box-sizing: border-box;
        }
}
/* /Pages/Players.razor.rz.scp.css */
.meet-players-container[b-u1hcuxs1wi] {
    padding: 3rem 2rem;
    background-image: url("../images/background.png");
    background-repeat: repeat;
    background-size: 1100px; /* adjust as needed */
    background-color: #ffffff; /* fallback */
    background-attachment: fixed;
    color: #0033A0;
    min-height:100vh;
}

.manager-intro[b-u1hcuxs1wi] {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.manager-card[b-u1hcuxs1wi] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.manager-image[b-u1hcuxs1wi] {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #F4C542;
    background: linear-gradient(135deg, #ffffff 0%, #add8e6 50%, #ffffff 100%);
}

.manager-info[b-u1hcuxs1wi] {
    flex: 1;
    min-width: 280px;
    font-family: 'Fredoka', sans-serif;
}

    .manager-info h2[b-u1hcuxs1wi] {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

.manager-quote[b-u1hcuxs1wi] {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.players-grid[b-u1hcuxs1wi] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.player-card[b-u1hcuxs1wi] {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 260px;
    transition: transform 0.3s ease;
}

    .player-card:hover[b-u1hcuxs1wi] {
        transform: translateY(-6px);
    }

    .player-card img[b-u1hcuxs1wi] {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: contain;
        margin-bottom: 1rem;
        border: 3px solid #0033A0;
        background: linear-gradient(135deg, #ffffff 0%, #add8e6 50%, #ffffff 100%);
    }

    .player-card h3[b-u1hcuxs1wi] {
        margin: 0.5rem 0 0.25rem;
        font-size: 1.2rem;
        color: #0033A0;
    }

.player-position[b-u1hcuxs1wi] {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.player-bio[b-u1hcuxs1wi] {
    font-size: 0.9rem;
    color: #333;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .manager-card[b-u1hcuxs1wi] {
        flex-direction: column;
        text-align: center;
    }

    .manager-info h2[b-u1hcuxs1wi] {
        font-size: 1.5rem;
    }

    .manager-quote[b-u1hcuxs1wi] {
        font-size: 0.95rem;
    }
    .player-card[b-u1hcuxs1wi] {
        width: 100%;
        max-width: 60vw;
    }
    .players-grid[b-u1hcuxs1wi] {
        justify-content: center;
    }
}
