:root {
  --bg: #201913;
  --surface: #2b221a;
  --surface-soft: #f7f1ea;
  --text: #f7f1ea;
  --text-dark: #2d241c;
  --accent: #d78b3d;
  --accent-2: #f2c78f;
  --border: rgba(255,255,255,.08);
}

html { font-size: 16px; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background: #fffaf6;
}

.site-header { background: linear-gradient(180deg, rgba(17,13,10,.94), rgba(32,25,19,.92)); }
.navbar-brand { display:flex; align-items:center; gap:.75rem; }
.brand-kicker {
  display:inline-flex; align-items:center; justify-content:center;
  width:3rem; height:3rem; border-radius:999px; background:var(--accent); color:#2f2112; font-weight:800;
}
.brand-name { max-width: 300px; line-height:1.1; }
.nav-link { color: rgba(255,255,255,.82) !important; }
.nav-link:hover { color: #fff !important; }
.btn-accent {
  background: var(--accent); border-color: var(--accent); color:#25180c; font-weight:700;
}
.btn-accent:hover { background:#c77c2e; border-color:#c77c2e; color:#25180c; }
.hero-section {
  background: radial-gradient(circle at top right, rgba(215,139,61,.25), transparent 30%), linear-gradient(180deg, #251d16, #201913 70%);
  color: var(--text);
}
.hero-card { padding: 1rem; background: rgba(255,255,255,.04); border:1px solid var(--border); border-radius: 2rem; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size:.78rem; font-weight:700; color: var(--accent-2); margin-bottom:1rem;
}
.page-header {
  background: linear-gradient(180deg, #33271d, #2a2017);
  color: var(--text);
}
.page-header .lead { color: rgba(255,255,255,.82); }
.section-pad { padding: 4.75rem 0; }
.py-lg-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.bg-soft { background: var(--surface-soft); }
.card-soft {
  border: 1px solid rgba(72,50,28,.08);
  border-radius: 1.5rem;
  box-shadow: 0 14px 40px rgba(43,34,26,.08);
  background: #fff;
  overflow: hidden;
}
.section-heading { margin-bottom: 2rem; }
.section-heading h2 { font-weight: 800; }
.badge-tier {
  background: rgba(215,139,61,.15); color:#7a4b16; padding:.55rem .85rem; border-radius:999px;
}
.site-footer {
  background:#1f1812; color: rgba(255,255,255,.9);
}
.site-footer a { color: var(--accent-2); text-decoration:none; }
.site-footer a:hover { color:#fff; }
.table > :not(caption) > * > * { padding: .9rem .75rem; }
.form-control, .form-select {
  border-radius: .9rem; padding: .8rem 1rem;
}
textarea.form-control { min-height: 140px; }

@media (max-width: 991.98px) {
  .brand-name { max-width: 220px; font-size: .95rem; }
}
.hero-section {
    min-height: 76vh;
    background: linear-gradient(rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.38)), url('/images/home/hero-western-mounted-games.jpg') center center / cover no-repeat;
    position: relative;
}

.hero-content {
    max-width: 760px;
    padding: 4rem 0;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(4px);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-feature-strip {
    margin-top: -70px;
    position: relative;
    z-index: 3;
}

.image-card {
    position: relative;
    display: block;
    min-height: 320px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .image-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
    }

.image-card-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
}

.image-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.12));
}

.image-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem;
    color: #fff;
}

    .image-card-content h3 {
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

    .image-card-content p {
        margin-bottom: 0;
        color: rgba(255,255,255,0.9);
    }

.mini-stat-card {
    height: 100%;
    padding: 1.1rem 1rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

    .mini-stat-card h4 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
        font-weight: 700;
    }

.info-image-panel img {
    width: 100%;
    object-fit: cover;
}

.event-card-image {
    height: 220px;
    background-position: center;
    background-size: cover;
}

.news-card,
.sponsor-card,
.event-card {
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.sponsor-cta {
    background: linear-gradient(135deg, #f3e7d6, #e8d3b6);
    box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: 66vh;
    }

    .hero-feature-strip {
        margin-top: 0;
    }

    .hero-content {
        padding: 3rem 0;
    }
}
.page-header-events {
    background: linear-gradient(rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)), url('/images/home/card-events.jpg') center center / cover no-repeat;
    color: #fff;
}

.event-premium-card {
    border-radius: 1.35rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

    .event-premium-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
    }

.event-premium-card-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.event-premium-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.event-premium-card:hover .event-premium-card-image {
    transform: scale(1.04);
}

.event-premium-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.04));
    pointer-events: none;
}

.event-premium-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

    .event-premium-card-badge span {
        display: inline-block;
        padding: 0.45rem 0.8rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        color: #2f2418;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

.event-meta {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #8a6b46;
    font-weight: 700;
}

.event-location {
    color: #5b4a39;
    font-weight: 600;
}

.event-summary {
    color: #4d4d4d;
    line-height: 1.65;
}

@media (max-width: 767.98px) {
    .event-premium-card-image-wrap {
        height: 220px;
    }
}
.event-detail-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: end;
    overflow: hidden;
    background: #1f1a15;
}

.event-detail-hero-bg {
    position: absolute;
    inset: 0;
}

    .event-detail-hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.event-detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.62), rgba(0,0,0,0.18));
}

.event-detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0 3rem;
    max-width: 900px;
}

.event-detail-meta {
    margin-top: 1rem;
}

.event-meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    backdrop-filter: blur(4px);
    font-size: 0.92rem;
    font-weight: 600;
}

.event-detail-main-card {
    background: #fff;
    border-radius: 1.5rem;
}

.event-detail-main-image {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}

.event-detail-description p {
    font-size: 1.03rem;
    line-height: 1.8;
    color: #41362b;
}

.event-sidebar-card {
    border-radius: 1.35rem;
}

.event-fact-list {
    display: grid;
    gap: 0.9rem;
}

.event-fact-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

    .event-fact-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

.event-fact-label {
    color: #7a6650;
    font-weight: 600;
}

.event-fact-value {
    color: #2f2418;
    font-weight: 700;
    text-align: right;
}

.result-preview-item {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: #f8f3ec;
}

.result-preview-position {
    min-width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #2f2418;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.result-preview-name {
    font-weight: 700;
    color: #2f2418;
}

.result-preview-division {
    font-size: 0.92rem;
    color: #7a6650;
}

.event-cta-panel {
    padding: 1.5rem;
    border-radius: 1.35rem;
    background: linear-gradient(135deg, #f3e7d6, #e5cfaf);
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

@media (max-width: 991.98px) {
    .event-detail-hero {
        min-height: 42vh;
    }

    .event-detail-hero-content {
        padding: 4rem 0 2.5rem;
    }

    .event-fact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-fact-value {
        text-align: left;
    }
}
