/* /Components/PlayerCardComponent.razor.rz.scp.css */
.player-card[b-iszfpqoakq] {
    background: rgba(0, 0, 0, 0.7); /* dark background with transparency */
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(255, 20, 147, 0.1); /* hot pink shadow */
    text-align: center;
    max-width: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #FF1493;
}

    .player-card:hover[b-iszfpqoakq] {
        transform: translateY(-6px);
        box-shadow: 0 0 12px #FF1493, 0 0 6px #FF1493;
    }

    .player-card img[b-iszfpqoakq] {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: contain;
        margin-bottom: 1rem;
        border: 3px solid #FF1493;
        background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
    }

    .player-card h3[b-iszfpqoakq] {
        margin: 0.5rem 0 0.25rem;
        font-size: 1.2rem;
        color: #FF1493;
    }

.player-position[b-iszfpqoakq] {
    font-size: 0.95rem;
    color: #ccc;
    font-style: italic;
}

.player-bio[b-iszfpqoakq] {
    font-size: 0.9rem;
    color: #eee;
    margin-top: 0.5rem;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.navbar[b-zprilg8yds] {
    min-height: 70px;
    background-color: #000000; /* Black background */
    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.4);
    border-bottom: 4px solid #FF1493; /* Hot pink accent */
    position: sticky;
    top: 0;
    z-index: 999;
    color: #FF1493;
}

.navbar-left[b-zprilg8yds] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.logo-icon[b-zprilg8yds] {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background-color: #FF1493;
    box-shadow: 0 0 6px rgba(255, 20, 147, 0.6);
}

    .logo-icon img[b-zprilg8yds] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.club-name h1[b-zprilg8yds] {
    font-size: 1.25rem;
    margin: 0;
    color: #FF1493;
}

.club-name span[b-zprilg8yds] {
    font-size: 0.75rem;
    color: #FF1493;
    letter-spacing: 0.5px;
}

.nav-links[b-zprilg8yds] {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 1rem;
    padding: 0;
    margin-top: 0;
}

    .nav-links li a[b-zprilg8yds] {
        color: #FF1493;
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
        display: inline-block;
    }

        .nav-links li a[b-zprilg8yds]::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            width: 0;
            background-color: #FF1493;
            transition: width 0.3s ease;
        }

        .nav-links li a:hover[b-zprilg8yds]::after {
            width: 100%;
        }

.burger[b-zprilg8yds] {
    display: none;
    font-size: 2rem;
    color: #FF1493;
    cursor: pointer;
}

.main-body[b-zprilg8yds] {
    padding: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .burger[b-zprilg8yds] {
        display: block;
    }

    .nav-links[b-zprilg8yds] {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: black
        margin-top: 1rem;
        padding: 1rem 0;
    }

        .nav-links.active[b-zprilg8yds] {
            display: flex;
        }

        .nav-links li[b-zprilg8yds] {
            text-align: center;
            padding: 0.5rem 0;
        }
}
/* /Pages/Contact.razor.rz.scp.css */
/* ===== Base Styling ===== */
.container[b-3idn2o1vcl] {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, #ffffff, #f0f4ff);
    color: #0033A0;
    margin: 0;
    padding: 0;
}

/* ===== Navbar ===== */
.navbar[b-3idn2o1vcl] {
    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-3idn2o1vcl] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.logo-icon[b-3idn2o1vcl] {
    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-3idn2o1vcl] {
    font-size: 1.25rem;
    margin: 0;
    color: white;
}

.club-name span[b-3idn2o1vcl] {
    font-size: 0.75rem;
    color: #F4C542;
}

.nav-links[b-3idn2o1vcl] {
    display: flex;
    list-style: none;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

    .nav-links li a[b-3idn2o1vcl] {
        color: white;
        text-decoration: none;
        font-weight: 500;
        position: relative;
    }

        .nav-links li a[b-3idn2o1vcl]::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-3idn2o1vcl]::after {
            width: 100%;
        }

/* ===== Burger Menu ===== */
.burger[b-3idn2o1vcl] {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* ===== Hero Banner ===== */
.hero-banner[b-3idn2o1vcl] {
    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-3idn2o1vcl] {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 2rem;
    max-width: 700px;
    border-radius: 10px;
}

.cta-button[b-3idn2o1vcl] {
    padding: 0.75rem 1.5rem;
    background-color: #F4C542;
    color: #0033A0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* ===== Support Section ===== */
.support-section[b-3idn2o1vcl] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 2rem;
    background: #f4f4f4;
}

.support-block[b-3idn2o1vcl] {
    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-3idn2o1vcl] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.support-image[b-3idn2o1vcl] {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

/* ===== News Section ===== */
.news-section[b-3idn2o1vcl] {
    background: #ffffff;
    padding: 3rem 2rem;
}

.news-grid[b-3idn2o1vcl] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.news-card[b-3idn2o1vcl] {
    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-3idn2o1vcl] {
    padding: 3rem 2rem;
    background: #ffffff;
    text-align: center;
}

.players-grid[b-3idn2o1vcl] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.player-card[b-3idn2o1vcl] {
    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-3idn2o1vcl] {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1rem;
        border: 3px solid #0033A0;
    }

/* ===== Contact Section ===== */
.home-contact-section[b-3idn2o1vcl] {
    background: linear-gradient(to bottom right, #f0f4ff, #ffffff);
    padding: 4rem 2rem;
    color: #0033A0;
    display: flex;
    justify-content: center;
}

.home-contact-container[b-3idn2o1vcl] {
    max-width: 1000px;
    width: 100%;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home-contact-text[b-3idn2o1vcl] {
    flex: 1 1 40%;
    min-width: 280px;
}

.home-contact-form[b-3idn2o1vcl] {
    flex: 1 1 50%;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .home-contact-form input[b-3idn2o1vcl],
    .home-contact-form textarea[b-3idn2o1vcl] {
        padding: 1rem;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-family: 'Segoe UI', sans-serif;
    }

    .home-contact-form button[b-3idn2o1vcl] {
        background-color: #F4C542;
        color: #0033A0;
        font-weight: bold;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        cursor: pointer;
    }

.whatsapp-button[b-3idn2o1vcl] {
    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-3idn2o1vcl] {
    background: #002570;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* ===== Responsive Fixes ===== */
@media (max-width: 768px) {
    .burger[b-3idn2o1vcl] {
        display: block;
    }

    .logo-icon[b-3idn2o1vcl] {
        display: none;
    }

    .navbar[b-3idn2o1vcl] {
        padding: 0.5rem 1rem;
        min-height: 50px;
    }

    .nav-links[b-3idn2o1vcl] {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #0033A0;
        padding: 1rem 0;
        margin-top: 1rem;
    }

        .nav-links.active[b-3idn2o1vcl] {
            display: flex;
        }

    .hero-banner[b-3idn2o1vcl] {
        background-image: url("../images/heroimage_mobile.jpg") !important;
        min-height: calc(100vh - 50px);
    }

    .home-contact-container[b-3idn2o1vcl] {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .home-contact-text[b-3idn2o1vcl],
    .home-contact-form[b-3idn2o1vcl] {
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

        .home-contact-form input[b-3idn2o1vcl],
        .home-contact-form textarea[b-3idn2o1vcl] {
            width: 100%;
        }
}
/* /Pages/fixtures.razor.rz.scp.css */
*[b-4gtudhbsso] {
    font-family: 'Permanent Marker', cursive !important;
    scroll-behavior: smooth;
}

/* ===== Page Background ===== */
.page-background[b-4gtudhbsso] {
    position: relative;
    padding: 3rem 2rem;
    background-image: url("../images/background.png");
    background-repeat: round;
    background-size: 1000px;
    background-color: #0a0a0a;
    background-attachment: fixed;
    color: #FF1493;
    min-height: 100vh;
    z-index: 0;
    overflow: hidden;
}

    .page-background[b-4gtudhbsso]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.6); /* Adjust opacity here */
        z-index: 1;
    }

    .page-background > *[b-4gtudhbsso] {
        position: relative;
        z-index: 2;
    }

/* ===== Fixtures Container ===== */
.fixtures-container[b-4gtudhbsso] {
    background-color: rgba(0, 0, 0, 0.8); /* translucent black */
    color: #FF1493;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ===== Monthly Section Titles ===== */
.month-section[b-4gtudhbsso] {
    margin-bottom: 3rem;
}

.month-title[b-4gtudhbsso] {
    font-size: 2rem;
    border-left: 5px solid #FF1493;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    color: #FF1493;
}

/* ===== Fixture Card ===== */
.fixture-card[b-4gtudhbsso] {
    background: #1a1a1a;
    border: 2px solid #FF1493;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 6px rgba(255, 20, 147, 0.2);
    color: #FF1493;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .fixture-card:hover[b-4gtudhbsso] {
        transform: translateY(-4px);
        box-shadow: 0 0 12px #FF1493, 0 0 4px #FF1493;
    }

/* ===== Fixture Content ===== */
.fixture-header[b-4gtudhbsso] {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.fixture-teams[b-4gtudhbsso] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

    .fixture-teams:hover[b-4gtudhbsso] {
        color: white;
    }

.fixture-location[b-4gtudhbsso] {
    font-size: 0.95rem;
    color: #ccc;
    transition: color 0.3s ease;
    text-align: center;
}

    .fixture-location:hover[b-4gtudhbsso] {
        color: #ffffff;
    }


@media (max-width: 768px) {
    .fixture-teams[b-4gtudhbsso] {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }

        .fixture-teams span[b-4gtudhbsso] {
            display: block;
            width: 100%;
        }

    .fixture-header[b-4gtudhbsso] {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.container[b-khmbaje9ks] {
    font-family: 'Permanent Marker', cursive;
    background: linear-gradient(to bottom right, #0a0a0a, #1a1a1a);
    color: #FF1493;
    margin: 0;
    padding: 0;
}

.burger[b-khmbaje9ks] {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* ===== Hero Banner ===== */
.hero-banner[b-khmbaje9ks] {
    height: calc(100vh - 70px);
    padding: 2rem 1rem;
    background-color: #1a1a1a;
    background-image: url("../images/hero.png");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ===== Support Section ===== */
.support-section[b-khmbaje9ks] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 2rem;
    background: #1f1f1f;
}

.support-block[b-khmbaje9ks] {
    flex: 1 1 400px;
    background: #2a2a2a;
    color: #FF1493;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .support-block h2[b-khmbaje9ks] {
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        color: #FF1493;
        text-align: center;
    }

.support-grid[b-khmbaje9ks] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.support-image[b-khmbaje9ks] {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

    .support-image:hover[b-khmbaje9ks] {
        transform: scale(1.05);
    }

/* ===== News Section ===== */
.news-section[b-khmbaje9ks] {
    background: #0a0a0a;
    padding: 3rem 2rem;
}

.news-header[b-khmbaje9ks] {
    text-align: center;
    margin-bottom: 2rem;
}

    .news-header h2[b-khmbaje9ks] {
        font-size: 2rem;
        color: #FF1493;
        margin-bottom: 0.5rem;
    }

    .news-header p[b-khmbaje9ks] {
        font-size: 1rem;
        color: #ccc;
    }

.news-grid[b-khmbaje9ks] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.news-card[b-khmbaje9ks] {
    background: #2a2a2a;
    padding: 1.5rem;
    border-left: 6px solid #000000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .news-card:hover[b-khmbaje9ks] {
        transform: translateY(-5px);
    }

.fixture-date[b-khmbaje9ks] {
    font-size: 0.9rem;
    font-weight: bold;
    color: #FF1493;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.news-card h3[b-khmbaje9ks] {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0 0 0.5rem;
}

.fixture-time[b-khmbaje9ks] {
    font-size: 0.95rem;
    color: #ccc;
}

/* ===== Meet the Players ===== */
.players-section[b-khmbaje9ks] {
    padding: 3rem 2rem;
    background: #0a0a0a;
    text-align: center;
}

    .players-section h2[b-khmbaje9ks] {
        margin-bottom: 2rem;
        font-size: 2rem;
        color: #FF1493;
    }

.players-grid[b-khmbaje9ks] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.player-card[b-khmbaje9ks] {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 260px;
    text-align: center;
}

    .player-card:hover[b-khmbaje9ks] {
        transform: translateY(-5px);
    }

    .player-card img[b-khmbaje9ks] {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1rem;
        border: 3px solid #FF1493;
    }

    .player-card h3[b-khmbaje9ks] {
        margin: 0.5rem 0 0.25rem;
        font-size: 1.2rem;
        color: #FF1493;
    }

.player-position[b-khmbaje9ks] {
    font-size: 0.95rem;
    color: #ccc;
    margin: 0.25rem 0 0.5rem;
    font-style: italic;
}

.player-bio[b-khmbaje9ks] {
    font-size: 0.9rem;
    color: #ddd;
    margin: 0;
}

.fixture-button-wrapper[b-khmbaje9ks] {
    text-align: center;
    margin-top: 2rem;
}

.fixture-button[b-khmbaje9ks] {
    display: inline-block;
    background-color: #FF1493;
    color: black;
    padding: 0.75rem 1.5rem;
    border: 2px solid #FF1493;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.4);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

    .fixture-button:hover[b-khmbaje9ks] {
        background-color: black;
        color: #FF1493;
        box-shadow: 0 0 15px #FF1493;
    }


/* ===== Footer ===== */
.footer[b-khmbaje9ks] {
    background: #000000;
    color: #FF1493;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* ===== Home Contact Section ===== */
.home-contact-section[b-khmbaje9ks] {
    background: linear-gradient(to bottom right, #1a1a1a, #0a0a0a);
    padding: 4rem 2rem;
    color: #FF1493;
    display: flex;
    justify-content: center;
}

.home-contact-container[b-khmbaje9ks] {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
}

.home-contact-text[b-khmbaje9ks] {
    flex: 1 1 40%;
    min-width: 280px;
}

    .home-contact-text h2[b-khmbaje9ks] {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .home-contact-text p[b-khmbaje9ks] {
        font-size: 1.1rem;
        line-height: 1.6;
    }

.home-contact-form[b-khmbaje9ks] {
    flex: 1 1 50%;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .home-contact-form input[b-khmbaje9ks],
    .home-contact-form textarea[b-khmbaje9ks] {
        padding: 1rem;
        font-size: 1rem;
        border: 1px solid #444;
        border-radius: 8px;
        font-family: 'Permanent Marker', cursive;
        background: #1a1a1a;
        color: #FF1493;
    }

    .home-contact-form button[b-khmbaje9ks] {
        background-color: #000000;
        color: #FF1493;
        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-khmbaje9ks] {
            background-color: #222;
        }

.whatsapp-button[b-khmbaje9ks] {
    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-khmbaje9ks] {
        background-color: #1ebc5a;
    }

/* ===== Responsive Fixes ===== */
@media (max-width: 768px) {
    .burger[b-khmbaje9ks] {
        display: block;
    }

    .logo-icon[b-khmbaje9ks] {
        display: none;
    }

    .navbar[b-khmbaje9ks] {
        padding: 0.5rem 1rem;
        min-height: 50px;
    }

    .club-name h1[b-khmbaje9ks] {
        font-size: 1rem;
    }

    .club-name span[b-khmbaje9ks] {
        font-size: 0.65rem;
    }

    .burger[b-khmbaje9ks] {
        font-size: 1.5rem;
    }

    .hero-overlay h1[b-khmbaje9ks] {
        font-size: 1.7rem;
    }

    .hero-overlay p[b-khmbaje9ks] {
        font-size: 1rem;
    }

    .hero-banner[b-khmbaje9ks] {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        height:200px
    }

    .support-grid[b-khmbaje9ks],
    .news-grid[b-khmbaje9ks],
    .players-grid[b-khmbaje9ks] {
        grid-template-columns: 1fr;
    }

    .player-card[b-khmbaje9ks],
    .news-card[b-khmbaje9ks],
    .support-block[b-khmbaje9ks] {
        max-width: 100%;
    }

    .home-contact-container[b-khmbaje9ks] {
        display: block;
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .home-contact-text[b-khmbaje9ks] {
        width: 100%;
        margin-bottom: 2rem;
        text-align: center;
    }

    .home-contact-form[b-khmbaje9ks] {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        box-sizing: border-box;
    }

        .home-contact-form input[b-khmbaje9ks],
        .home-contact-form textarea[b-khmbaje9ks] {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }
}
/* /Pages/Login.razor.rz.scp.css */
.admin-login-wrapper[b-a5u1tdxd82] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1f44, #142d6d); /* Navy gradient */
    padding: 1rem;
}

.admin-login-card[b-a5u1tdxd82] {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.logo[b-a5u1tdxd82] {
    width: 100px;
    margin-bottom: 1rem;
}

h2[b-a5u1tdxd82] {
    color: #0a1f44;
    margin-bottom: 0.25rem;
}

.subheading[b-a5u1tdxd82] {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.input-group[b-a5u1tdxd82] {
    text-align: left;
    margin-bottom: 1rem;
}

    .input-group label[b-a5u1tdxd82] {
        display: block;
        font-weight: bold;
        margin-bottom: 0.25rem;
        color: #0a1f44;
    }

    .input-group input[b-a5u1tdxd82] {
        width: 100%;
        padding: 0.5rem;
        border: 1px solid #ccc;
        border-radius: 0.4rem;
        font-size: 1rem;
    }

.login-btn[b-a5u1tdxd82] {
    background-color: #d90429; /* red accent */
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

    .login-btn:hover[b-a5u1tdxd82] {
        background-color: #b90322;
    }

.error-message[b-a5u1tdxd82] {
    color: #d90429;
    margin-bottom: 1rem;
}
/* /Pages/Players.razor.rz.scp.css */
*[b-a1nhhhfclq] {
    font-family: 'Permanent Marker', cursive !important;
    scroll-behavior: smooth;
}

.meet-players-container[b-a1nhhhfclq] {
    position: relative;
    padding: 3rem 2rem;
    background-image: url("../images/background.png");
    background-repeat: round;
    background-size: 1000px;
    background-color: #0a0a0a;
    background-attachment: fixed;
    color: #FF1493;
    min-height: 100vh;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
    z-index: 0;
}

    /* Overlay for background dimming */
    .meet-players-container[b-a1nhhhfclq]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
        z-index: 1;
    }

    .meet-players-container > *[b-a1nhhhfclq] {
        position: relative;
        z-index: 2;
    }

.manager-intro[b-a1nhhhfclq] {
    margin-bottom: 3rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.1);
    color: #FF1493;
    box-sizing: border-box;
    width: 100%;
}

.manager-card[b-a1nhhhfclq] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

.manager-image[b-a1nhhhfclq] {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #FF1493;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
}

.manager-info[b-a1nhhhfclq] {
    flex: 1 1 0;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
    color: #FF1493;
}

    .manager-info h2[b-a1nhhhfclq] {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #FF1493;
    }

.manager-quote[b-a1nhhhfclq] {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    color: #f8f8f8;
}

.players-grid[b-a1nhhhfclq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.player-card[b-a1nhhhfclq] {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #FF1493;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(255, 20, 147, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #FF1493;
    text-align: center;
}

    .player-card:hover[b-a1nhhhfclq] {
        transform: translateY(-5px);
        box-shadow: 0 0 12px #FF1493, 0 0 6px #FF1493;
    }

    .player-card img[b-a1nhhhfclq] {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 1rem;
        border: 3px solid #FF1493;
    }

    .player-card h3[b-a1nhhhfclq] {
        font-size: 1.2rem;
        margin: 0.5rem 0 0.25rem;
        color: #FF1493;
    }

.player-position[b-a1nhhhfclq] {
    font-size: 0.95rem;
    color: #ccc;
    margin: 0.25rem 0 0.5rem;
    font-style: italic;
}

.player-bio[b-a1nhhhfclq] {
    font-size: 0.9rem;
    color: #eee;
    margin: 0;
}

@media (max-width: 768px) {
    .manager-card[b-a1nhhhfclq] {
        flex-direction: column;
        text-align: center;
    }

    .manager-info h2[b-a1nhhhfclq] {
        font-size: 1.5rem;
    }

    .manager-quote[b-a1nhhhfclq] {
        font-size: 0.95rem;
    }

    .player-card[b-a1nhhhfclq] {
        width: 100%;
        max-width: 60vw;
    }

    .players-grid[b-a1nhhhfclq] {
        justify-content: center;
    }
}
