:root {
    --ink: #102033;
    --muted: #667085;
    --line: #d9e1ea;
    --brand: #0f7b4f;
    --brand-dark: #08543a;
    --accent: #f3b13f;
    --soft: #f5f8fb;
    --danger: #b42318;
    --success: #067647;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #f8fafc;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.announcement {
    text-align: center;
    padding: 7px 14px;
    color: #102033;
    font-weight: 800;
    font-size: 14px;
    line-height: 1.35;
    background: linear-gradient(90deg, #fef0c7, #dcfae6);
    border-bottom: 1px solid rgba(16, 32, 51, 0.08);
}

.nav {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--brand);
    color: white;
    font-weight: 900;
    box-shadow: inset 0 -7px 0 rgba(0, 0, 0, 0.12);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.site-menu-toggle,
.site-menu-btn {
    display: none;
}

.site-menu-btn {
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 8px;
    color: white;
    background: var(--brand);
    font-weight: 900;
}

.nav-links form {
    margin: 0;
}

.btn,
button.btn {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 800;
    background: var(--brand);
    color: white;
    box-shadow: 0 10px 20px rgba(15, 123, 79, 0.18);
}

.btn.secondary {
    color: var(--ink);
    background: #eef4f1;
    box-shadow: none;
}

.btn.warning {
    color: #241600;
    background: var(--accent);
    box-shadow: none;
}

.btn.danger {
    background: var(--danger);
    box-shadow: none;
}

.btn.full {
    width: 100%;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 56px;
    background:
        radial-gradient(circle at 15% 10%, rgba(243, 177, 63, 0.32), transparent 28%),
        linear-gradient(135deg, rgba(8, 84, 58, 0.94), rgba(16, 32, 51, 0.88)),
        url("/images/cricket-hero-banner.png");
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-showcase {
    min-height: 640px;
    display: grid;
    align-items: center;
    isolation: isolate;
}

.hero-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(28, 10, 45, 0.92), rgba(95, 24, 120, 0.62) 34%, rgba(8, 84, 58, 0.68) 58%, rgba(16, 32, 51, 0.66)),
        radial-gradient(circle at 18% 12%, rgba(243, 177, 63, 0.28), transparent 32%);
}

.hero-slider,
.hero-slide {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-slide {
    opacity: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    animation: heroFade 20s infinite;
}

.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 5s;
}

.hero-slide:nth-child(3) {
    animation-delay: 10s;
}

.hero-slide:nth-child(4) {
    animation-delay: 15s;
}

@keyframes heroFade {
    0%,
    18% {
        opacity: 1;
        transform: scale(1);
    }

    26%,
    100% {
        opacity: 0;
        transform: scale(1.06);
    }
}

.cricket-banner-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 18px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(16, 32, 51, 0.03), rgba(16, 32, 51, 0.14)),
        url("/images/cricket-hero-banner.png");
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(16, 32, 51, 0.08);
    box-shadow: inset 0 -36px 70px rgba(0, 0, 0, 0.2);
}

.section-head {
    max-width: 720px;
    margin-bottom: 22px;
}

.section-head h2 {
    margin-bottom: 8px;
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.premium-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #ffffff 0%, #f3f7f6 100%);
}

.role-layout,
.contact-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 34px;
    align-items: center;
}

.role-grid,
.auction-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.role-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    border: 1px solid rgba(16, 32, 51, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 45px rgba(16, 32, 51, 0.08);
}

.role-card.featured {
    color: white;
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(160deg, var(--brand-dark), #102033);
}

.role-card h3,
.role-card p {
    margin: 0;
}

.role-card p {
    color: var(--muted);
    line-height: 1.55;
}

.role-card.featured p {
    color: #d9f6e7;
}

.role-card strong {
    margin-top: auto;
    color: var(--brand-dark);
    font-size: 13px;
}

.role-card.featured strong {
    color: #f8d47b;
}

.role-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: white;
    background: var(--brand);
    font-weight: 900;
}

.role-card.featured .role-mark {
    color: #102033;
    background: var(--accent);
}

.process-list {
    display: grid;
    gap: 14px;
}

.process-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
}

.process-number {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: white;
    background: var(--brand);
    font-weight: 900;
}

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: start;
}

.highlight-band {
    background: linear-gradient(135deg, #102033, #0f7b4f);
    color: white;
}

.highlight-band .muted {
    color: #d9f6e7;
}

.auction-section {
    color: white;
    background: linear-gradient(135deg, #102033 0%, #173957 48%, #0b5f43 100%);
}

.auction-section .section-kicker {
    color: #f8d47b;
}

.auction-section .muted {
    color: #d7e4ef;
}

.auction-card {
    min-height: 178px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.auction-card span {
    display: inline-flex;
    margin-bottom: 18px;
    color: #f8d47b;
    font-size: 13px;
    font-weight: 900;
}

.auction-card h3 {
    margin: 0 0 10px;
}

.auction-card p {
    margin: 0;
    color: #d7e4ef;
    line-height: 1.55;
}

.about-section {
    background:
        linear-gradient(135deg, rgba(248, 212, 123, 0.18), transparent 42%),
        linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 34px;
    align-items: center;
}

.about-copy {
    min-width: 0;
}

.about-copy h2 {
    max-width: 720px;
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.about-copy p {
    max-width: 780px;
    margin: 0;
    color: #4f5f73;
    font-size: 17px;
    line-height: 1.7;
}

.read-more-panel {
    max-width: 780px;
    margin-top: 14px;
}

.read-more-panel summary {
    width: max-content;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 8px;
    color: white;
    background: var(--brand);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(15, 123, 79, 0.18);
}

.read-more-panel p {
    margin-top: 14px;
    padding: 16px;
    border-left: 4px solid var(--brand);
    border-radius: 8px;
    background: rgba(15, 123, 79, 0.06);
}

.about-event-card {
    border: 1px solid rgba(16, 32, 51, 0.1);
    border-radius: 8px;
    background: white;
    box-shadow: 0 18px 46px rgba(16, 32, 51, 0.06);
}

.about-event-card {
    min-width: 0;
    align-self: center;
    padding: 14px;
}

.about-event-media {
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border-radius: 8px;
    background: #e9f0ef;
    padding: 8px;
}

.about-event-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.about-event-media img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
}

.contact-section {
    background:
        linear-gradient(135deg, rgba(16, 32, 51, 0.04), rgba(15, 123, 79, 0.08)),
        #f7faf8;
    border-top: 1px solid var(--line);
}

.contact-full-section {
    background:
        radial-gradient(circle at 80% 10%, rgba(248, 212, 123, 0.22), transparent 28%),
        linear-gradient(135deg, #12091f 0%, var(--brand) 58%, #102033 130%);
    border-top: 0;
    padding: 34px 0;
}

.updates-contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 20px;
    align-items: stretch;
}

.news-panel,
.contact-panel {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 28px 80px rgba(2, 12, 20, 0.24);
    backdrop-filter: blur(12px);
}

.news-panel::after,
.contact-panel::after {
    content: "";
    position: absolute;
    inset: auto -22% -34% 45%;
    height: 220px;
    background: radial-gradient(circle, rgba(248, 212, 123, 0.28), transparent 64%);
    pointer-events: none;
}

.news-panel > *,
.contact-panel > * {
    position: relative;
    z-index: 1;
}

.news-panel .section-kicker,
.contact-panel .section-kicker {
    color: #f8d47b;
}

.news-panel h2 {
    max-width: 560px;
    margin: 0 0 18px;
    color: white;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.08;
}

.news-list {
    display: grid;
    gap: 10px;
}

.news-item {
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.news-item span {
    color: #f8d47b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-item strong {
    color: white;
    font-size: 17px;
    line-height: 1.25;
}

.news-item small,
.contact-panel p {
    color: #efe6ff;
    line-height: 1.5;
}

.contact-panel {
    display: grid;
    align-content: start;
}

.contact-panel h3 {
    margin: 0 0 8px;
    color: white;
    font-size: clamp(25px, 2.7vw, 34px);
    line-height: 1.12;
}

.contact-panel p {
    margin: 0 0 14px;
}

.contact-card-grid {
    display: grid;
    gap: 10px;
}

.gallery-section {
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gallery-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    margin: 0;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--soft);
    box-shadow: 0 14px 34px rgba(16, 32, 51, 0.08);
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
}

.gallery-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 12px;
    color: white;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
    background: linear-gradient(180deg, transparent, rgba(16, 32, 51, 0.86));
}

.gallery-admin-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.gallery-admin-card {
    display: grid;
    gap: 14px;
}

.gallery-admin-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.gallery-edit-form {
    display: grid;
    gap: 12px;
}

.image-size-guide {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 14px;
    align-items: center;
    margin-top: 12px;
    padding: 14px;
    border: 1px solid rgba(16, 32, 51, 0.1);
    border-radius: 8px;
    background: #f8fbf9;
}

.image-size-guide strong,
.image-size-guide span {
    display: block;
}

.image-size-guide span {
    margin-top: 4px;
    color: var(--muted);
    line-height: 1.5;
}

.image-size-box {
    min-height: 84px;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(16, 32, 51, 0.22);
    border-radius: 8px;
    color: white;
    background: linear-gradient(135deg, #102033, #0f7b4f);
    font-weight: 900;
}

.banner-example {
    aspect-ratio: 1920 / 900;
}

.about-example {
    aspect-ratio: 16 / 10;
}

.gallery-example {
    aspect-ratio: 4 / 3;
}

.admin-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.admin-preview-grid img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.about-preview-grid img {
    aspect-ratio: 16 / 10;
}

.contact-card {
    min-height: 150px;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 20px;
    border: 1px solid rgba(16, 32, 51, 0.1);
    border-radius: 8px;
    background: white;
    box-shadow: 0 16px 36px rgba(16, 32, 51, 0.06);
}

.contact-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 28px;
    align-items: center;
    padding: 34px;
    border: 1px solid rgba(16, 32, 51, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(135deg, #ffffff 0%, #f4fbf7 52%, #eef6ff 100%);
    box-shadow: 0 24px 70px rgba(16, 32, 51, 0.08);
}

.contact-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
}

.contact-copy p {
    max-width: 560px;
    margin: 0;
    color: #52627a;
    font-size: 17px;
    line-height: 1.65;
}

.contact-action-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.contact-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-feature-card {
    min-width: 0;
    display: grid;
    gap: 10px;
    min-height: 150px;
    align-content: start;
    padding: 20px;
    border: 1px solid rgba(16, 32, 51, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 36px rgba(16, 32, 51, 0.06);
}

.contact-feature-card.primary {
    color: white;
    background: linear-gradient(145deg, var(--brand-dark), #102033);
}

.contact-feature-card span {
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-feature-card.primary span {
    color: #f8d47b;
}

.contact-feature-card strong {
    overflow-wrap: anywhere;
    font-size: clamp(18px, 2.2vw, 26px);
    line-height: 1.15;
}

.contact-feature-card small {
    color: var(--muted);
    line-height: 1.5;
}

.contact-feature-card.primary small {
    color: #d9f6e7;
}

.contact-social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    grid-column: 1 / -1;
    padding: 14px;
    border: 1px dashed rgba(16, 32, 51, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
}

.contact-social-row a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 8px;
    color: var(--brand-dark);
    background: #eef4f1;
    font-weight: 900;
}

.contact-strip {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
    gap: 24px;
    align-items: center;
    padding: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    box-shadow: 0 28px 80px rgba(2, 12, 20, 0.24);
}

.contact-strip::after {
    content: "";
    position: absolute;
    inset: auto -14% -54% 42%;
    height: 280px;
    background: radial-gradient(circle, rgba(248, 212, 123, 0.42), transparent 64%);
    pointer-events: none;
}

.contact-strip > * {
    position: relative;
    z-index: 1;
}

.contact-strip-copy h2 {
    color: white;
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.contact-strip-copy p {
    max-width: 520px;
    margin: 14px 0 0;
    color: #d9f6e7;
    font-size: 18px;
    line-height: 1.65;
}

.contact-strip .section-kicker {
    color: #f8d47b;
}

.contact-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.contact-link-card {
    min-width: 0;
    min-height: 112px;
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 42px rgba(2, 12, 20, 0.16);
    color: #102033;
}

.contact-link-card.primary {
    color: white;
    border-color: rgba(255, 255, 255, 0.16);
    background: linear-gradient(145deg, var(--brand), #102033);
}

.contact-link-card span {
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-link-card.primary span {
    color: #f8d47b;
}

.contact-link-card strong {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #102033;
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.2;
}

.contact-link-card small {
    color: #667085;
    line-height: 1.45;
}

.contact-link-card.primary strong {
    color: white;
}

.contact-link-card.primary small {
    color: #d9f6e7;
}

.contact-card span {
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-card strong {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 16px;
    line-height: 1.35;
}

.contact-card small {
    color: var(--muted);
    line-height: 1.45;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 860px);
    gap: 32px;
    align-items: center;
}

.hero-live-strip {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.65fr;
    gap: 10px;
    margin-top: 28px;
}

.hero-live-strip div {
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero-live-strip span {
    display: block;
    margin-bottom: 5px;
    color: #baf2d7;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-live-strip strong {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 18px;
    line-height: 1.25;
}

.eyebrow {
    color: #baf2d7;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0;
}

.hero h1,
.page-title {
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.02;
    margin: 12px 0 16px;
    letter-spacing: 0;
}

.hero-copy p {
    font-size: 18px;
    line-height: 1.7;
    color: #e9fff3;
}

.panel {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 16px 40px rgba(16, 32, 51, 0.08);
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.mini-feature {
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.tournament-card {
    display: grid;
    gap: 12px;
    border-left: 5px solid var(--brand);
}

.player-photo {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--soft);
}

.hero .panel {
    color: var(--ink);
}

.hero-panel {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.event-focus-band {
    color: white;
    background: #102033;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.event-focus-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    min-height: 132px;
    padding: 22px 0;
}

.event-focus-grid h2,
.event-focus-grid p {
    margin: 0;
}

.event-focus-grid .muted {
    margin-top: 8px;
    color: #d7e4ef;
}

.event-focus-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hero-panel h2 {
    margin: 14px 0 10px;
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.18;
    letter-spacing: 0;
}

.hero-panel p {
    margin: 0;
    color: #52627a;
    font-size: 15px;
    line-height: 1.65;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.hero-stat {
    min-width: 0;
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    padding: 14px;
    border: 1px solid #d9e1ea;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #f8fbfa);
}

.hero-stat span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-stat strong {
    min-width: 0;
    color: var(--ink);
    font-size: clamp(18px, 2.4vw, 28px);
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.stat-grid,
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0;
}

.stat,
.card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
}

.stat strong {
    display: block;
    font-size: 28px;
}

.muted {
    color: var(--muted);
}

.section {
    padding: 42px 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    display: grid;
    gap: 7px;
}

.field.full {
    grid-column: 1 / -1;
}

.field small {
    color: var(--muted);
    line-height: 1.45;
}

label {
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    min-height: 46px;
    padding: 10px 12px;
    font: inherit;
    background: white;
}

textarea {
    min-height: 110px;
    resize: vertical;
}

.alert {
    border-radius: 8px;
    padding: 12px 14px;
    margin: 16px 0;
    border: 1px solid var(--line);
    background: white;
}

.alert.success {
    border-color: #abefc6;
    background: #ecfdf3;
    color: var(--success);
}

.alert.error {
    border-color: #fecdca;
    background: #fef3f2;
    color: var(--danger);
}

.badge {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
    background: #eef4f1;
    color: var(--brand-dark);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

th,
td {
    padding: 13px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

th {
    background: var(--soft);
    font-size: 13px;
    text-transform: uppercase;
}

.actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.pagination-summary {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.pagination-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
}

.page-link {
    min-width: 38px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #f8fafc;
    font-weight: 800;
}

.page-link.active {
    color: white;
    border-color: var(--brand);
    background: var(--brand);
}

.page-link.disabled {
    color: #98a2b3;
    cursor: not-allowed;
    background: #f1f5f9;
}

.footer {
    margin-top: auto;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
    font-weight: 800;
    color: var(--brand-dark);
}

.receipt-panel {
    border-top: 6px solid var(--brand);
}

.payment-page {
    max-width: 980px;
}

.payment-shell {
    overflow: hidden;
    border: 1px solid rgba(180, 41, 199, 0.18);
    border-radius: 8px;
    background:
        radial-gradient(circle at 82% 0%, rgba(180, 41, 199, 0.16), transparent 34%),
        linear-gradient(180deg, #ffffff, #fbf7ff);
    box-shadow: 0 24px 60px rgba(16, 32, 51, 0.08);
}

.payment-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
    padding: 28px;
    color: white;
    background:
        linear-gradient(135deg, rgba(28, 10, 45, 0.96), rgba(180, 41, 199, 0.9)),
        url("/images/cricket-hero-banner.png");
    background-size: cover;
    background-position: center;
}

.payment-hero h1,
.payment-hero p {
    margin: 0;
}

.payment-hero h1 {
    margin-top: 12px;
    font-size: clamp(30px, 5vw, 50px);
    line-height: 1;
}

.payment-hero p {
    margin-top: 10px;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.86);
}

.payment-amount-card {
    min-width: 180px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.13);
}

.payment-amount-card span,
.payment-summary-item span,
.payment-info-box span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-amount-card span {
    color: rgba(255, 255, 255, 0.76);
}

.payment-amount-card strong {
    font-size: 34px;
    line-height: 1;
}

.payment-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 18px 28px 0;
}

.payment-summary-item {
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(180, 41, 199, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
}

.payment-summary-item strong {
    display: block;
    overflow-wrap: anywhere;
    font-size: 18px;
    line-height: 1.15;
}

.payment-option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    padding: 18px 28px 28px;
}

.payment-admin-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.payment-qr-image,
.payment-qr-preview,
.payment-proof-image {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
}

.payment-proof-image {
    max-width: 360px;
}

.payment-info-box {
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(180, 41, 199, 0.14);
    border-radius: 8px;
    background: #fff;
}

.payment-info-box p {
    margin: 0;
}

.payment-info-box strong {
    display: block;
    overflow-wrap: anywhere;
}

.payment-option {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 18px;
    border: 1px solid rgba(180, 41, 199, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 40px rgba(16, 32, 51, 0.08);
}

.payment-option-featured {
    grid-column: 1 / -1;
    padding: 22px;
}

.payment-option h2,
.payment-option p {
    margin: 0;
}

.payment-option-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.payment-option-kicker,
.payment-live-pill {
    display: inline-flex;
    width: max-content;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-option-kicker {
    margin-bottom: 8px;
    color: #6b1378;
    background: #fae8ff;
}

.payment-live-pill {
    color: #067647;
    background: #dcfae6;
}

.manual-upi-layout {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}

.manual-upi-qr {
    display: grid;
    place-items: center;
    padding: 12px;
    border: 1px dashed rgba(180, 41, 199, 0.3);
    border-radius: 8px;
    background: #fff;
}

.payment-qr-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    color: #6b1378;
    background: #fae8ff;
    font-weight: 900;
}

.payment-note {
    padding: 12px 14px;
    border-left: 4px solid var(--brand);
    border-radius: 8px;
    color: #344054;
    background: #fff;
}

.payment-option form {
    display: grid;
    gap: 10px;
}

.section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section-title-row h1,
.section-title-row p {
    margin: 0;
}

.section-title-row p {
    margin-top: 6px;
}

.master-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.location-master-list {
    display: grid;
    gap: 16px;
}

.location-state-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbfa;
}

.location-state-form,
.district-form,
.district-row {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) 130px auto;
    gap: 10px;
    align-items: center;
}

.district-row {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-top: 10px;
    border-top: 1px solid var(--line);
}

.district-list {
    display: grid;
    gap: 8px;
}

.admin-login-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 12%, rgba(243, 177, 63, 0.28), transparent 26%),
        linear-gradient(135deg, #102033 0%, #0f7b4f 100%);
}

.admin-login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.admin-login-card {
    width: min(440px, 100%);
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.admin-login-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.admin-login-brand h1 {
    margin: 0;
    font-size: 28px;
}

.admin-login-brand p {
    margin: 4px 0 0;
    color: var(--muted);
}

.admin-login-logo {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 900;
    background: var(--brand);
    box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.13);
}

.check-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 18px;
    font-weight: 700;
}

.check-line input {
    width: 16px;
    min-height: 16px;
}

.admin-login-help {
    margin-top: 18px;
    padding: 12px;
    border-radius: 8px;
    background: var(--soft);
    display: grid;
    gap: 4px;
    color: var(--muted);
}

.admin-login-help strong {
    color: var(--ink);
}

.admin-back-link {
    display: block;
    margin-top: 16px;
    text-align: center;
    color: var(--brand-dark);
    font-weight: 800;
}

.admin-body {
    background: #eef2f6;
}

.account-body {
    background: #f2f7f4;
}

.admin-shell,
.account-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
}

.admin-menu-toggle {
    display: none;
}

.admin-sidebar,
.account-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 18px;
    color: white;
    background: linear-gradient(180deg, #102033 0%, #162b43 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.account-sidebar {
    background: linear-gradient(180deg, #0f7b4f 0%, #102033 100%);
}

.admin-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 6px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-sidebar-brand span:not(.brand-mark) {
    display: block;
    margin-top: 3px;
    color: #b6c4d2;
    font-size: 13px;
}

.admin-sidebar-nav {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.admin-sidebar-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #d8e2eb;
    font-weight: 800;
}

.admin-sidebar-nav a.active,
.admin-sidebar-nav a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.12);
}

.admin-main,
.account-main {
    min-width: 0;
}

.admin-header {
    position: sticky;
    top: 0;
    z-index: 15;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.admin-header-left,
.admin-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-header-left strong {
    display: block;
}

.admin-header-left span {
    color: var(--muted);
    font-size: 13px;
}

.admin-menu-btn {
    display: none;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 8px;
    color: white;
    background: var(--brand);
}

.admin-content {
    padding: 24px;
}

.admin-content .section {
    padding: 0;
}

.admin-content .container {
    width: 100%;
}

@media (max-width: 780px) {
    .nav {
        width: min(100% - 20px, 1120px);
        min-height: 62px;
        padding: 10px 0;
        align-items: center;
        flex-direction: row;
        gap: 10px;
    }

    .site-menu-btn {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    .site-nav-panel {
        position: absolute;
        left: 10px;
        right: 10px;
        top: calc(100% + 8px);
        display: none;
        max-width: none;
        padding: 12px;
        overflow: visible;
        flex-direction: column;
        align-items: stretch;
        background: white;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(16, 32, 51, 0.16);
    }

    .site-menu-toggle:checked ~ .site-nav-panel {
        display: flex;
    }

    .brand {
        min-width: 0;
        gap: 8px;
    }

    .brand span:last-child {
        max-width: 128px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 14px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        flex: 0 0 auto;
    }

    .nav .btn,
    .nav button.btn {
        width: 100%;
        min-height: 36px;
        padding: 8px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .actions .btn {
        width: auto;
    }

    .pagination-wrap {
        align-items: stretch;
        flex-direction: column;
    }

    .pagination-links {
        justify-content: flex-start;
    }

    .hero {
        padding: 44px 0 34px;
    }

    .hero-panel {
        padding: 14px;
    }

    .hero-showcase {
        min-height: auto;
    }

    .hero-grid,
    .about-layout,
    .form-grid,
    .stat-grid,
    .card-grid,
    .payment-option-grid,
    .payment-admin-grid,
    .master-grid,
    .gallery-grid,
    .gallery-admin-grid,
    .role-layout,
    .role-grid,
    .auction-grid,
    .contact-layout,
    .contact-showcase,
    .contact-panel-grid,
    .updates-contact-shell,
    .contact-strip,
    .contact-strip-grid,
    .contact-grid,
    .image-size-guide,
    .admin-preview-grid,
    .feature-strip,
    .hero-live-strip,
    .event-focus-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .event-focus-actions {
        justify-content: stretch;
    }

    .event-focus-actions .btn {
        width: 100%;
    }

    .news-panel,
    .contact-panel {
        padding: 18px;
    }

    .news-panel h2 {
        font-size: 28px;
    }

    .payment-hero,
    .payment-summary-grid,
    .manual-upi-layout {
        grid-template-columns: 1fr;
    }

    .payment-hero,
    .payment-summary-grid,
    .payment-option-grid {
        padding-left: 18px;
        padding-right: 18px;
    }

    .payment-amount-card {
        width: 100%;
        min-width: 0;
    }

    .payment-option-featured {
        padding: 18px;
    }

    .contact-link-card {
        min-height: auto;
    }

    .section-title-row,
    .location-state-form,
    .district-form,
    .district-row {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .role-card,
    .auction-card,
    .contact-card {
        min-height: auto;
    }

    .hero-stat-grid {
        grid-template-columns: 1fr;
    }

    .hero-stat {
        min-height: auto;
        flex-direction: row;
        align-items: center;
    }

    .hero-stat strong {
        text-align: right;
        font-size: 22px;
    }

    main .btn.full,
    .field .btn,
    .card .btn {
        width: 100%;
    }

    .admin-shell,
    .account-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar,
    .account-sidebar {
        position: fixed;
        z-index: 30;
        inset: 0 auto 0 0;
        width: min(285px, 86vw);
        transform: translateX(-105%);
        transition: transform 0.2s ease;
    }

    .admin-menu-toggle:checked ~ .admin-sidebar,
    .admin-menu-toggle:checked ~ .account-sidebar {
        transform: translateX(0);
    }

    .admin-header {
        padding: 10px 14px;
    }

    .admin-menu-btn {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    .admin-header-right .badge {
        display: none;
    }

    .admin-content {
        padding: 16px;
    }
}

@media print {
    .topbar,
    .footer,
    .no-print {
        display: none !important;
    }

    body {
        background: white;
    }

    .section {
        padding: 0;
    }

    .panel {
        box-shadow: none;
        border-color: #d0d5dd;
    }
}
