/* Botle Open Play — public marketing page */
body {
    font-family: 'Poppins', sans-serif !important;
}

.text-primary {
    color: rgba(161, 222, 86, 0.92) !important;
}

.bop-hero {
    position: relative;
    min-height: min(92vh, 820px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bop-hero__bg {
    position: absolute;
    inset: 0;
    background: center / cover no-repeat;
    transform: scale(1.04);
}

.bop-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.78) 100%),
        radial-gradient(circle at 85% 20%, rgba(161, 222, 86, 0.22), transparent 42%),
        radial-gradient(circle at 10% 80%, rgba(161, 222, 86, 0.1), transparent 38%);
}

.bop-hero__content {
    position: relative;
    z-index: 1;
}

.bop-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(161, 222, 86, 0.4);
    background: rgba(161, 222, 86, 0.1);
    color: #d4f5a0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bop-section-title {
    font-size: clamp(1.85rem, 4vw, 3.1rem);
    font-weight: 700;
    line-height: 1.12;
}

.bop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.bop-btn:active {
    transform: scale(0.98);
}

.bop-btn--primary {
    background: #a1de56;
    color: #111;
    box-shadow: 0 8px 28px rgba(161, 222, 86, 0.35);
}

.bop-btn--primary:hover {
    box-shadow: 0 12px 36px rgba(161, 222, 86, 0.45);
}

.bop-btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.bop-btn--ghost:hover {
    border-color: rgba(161, 222, 86, 0.5);
    color: #d4f5a0;
}

.bop-btn--instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(204, 35, 102, 0.35);
}

.bop-image-frame {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.bop-image-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.bop-step-card {
    padding: 1.35rem 1.25rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bop-step-num {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    display: grid;
    place-items: center;
    background: rgba(161, 222, 86, 0.15);
    color: #a1de56;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.bop-feature-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .bop-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.bop-feature-card {
    padding: 1.5rem;
    border-radius: 1.15rem;
    background: linear-gradient(160deg, rgba(22, 24, 28, 0.95), rgba(10, 10, 10, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bop-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(161, 222, 86, 0.35);
}

.bop-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.7rem;
    display: grid;
    place-items: center;
    background: rgba(161, 222, 86, 0.12);
    color: #a1de56;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.bop-ticket-section {
    background:
        radial-gradient(circle at 0% 0%, rgba(161, 222, 86, 0.12), transparent 45%),
        #0a0a0a;
}

.bop-featured-ticket {
    border-radius: 1.35rem;
    overflow: hidden;
    border: 1px solid rgba(161, 222, 86, 0.25);
    background: linear-gradient(145deg, rgba(22, 26, 18, 0.95), rgba(10, 10, 10, 0.98));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(161, 222, 86, 0.08);
}

.bop-featured-ticket__banner {
    aspect-ratio: 16 / 7;
    background: #111 center / cover no-repeat;
}

.bop-featured-ticket__body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.bop-event-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 1.1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #141414;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.bop-event-card:hover {
    border-color: rgba(161, 222, 86, 0.35);
    transform: translateY(-3px);
}

.bop-event-card__thumb {
    aspect-ratio: 1 / 1;
    background: #111 center / cover no-repeat;
}

.bop-event-card__thumb--empty {
    display: grid;
    place-items: center;
    color: rgba(161, 222, 86, 0.5);
    font-size: 2.5rem;
    background: rgba(161, 222, 86, 0.06);
}

.bop-event-card__body {
    padding: 1.15rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bop-event-card__date {
    font-size: 0.78rem;
    color: #a1de56;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.bop-event-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.bop-event-card__meta {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.bop-event-card__cta {
    margin-top: auto;
}

.bop-instagram-panel {
    border-radius: 1.35rem;
    padding: 2rem 1.75rem;
    background:
        linear-gradient(135deg, rgba(240, 148, 51, 0.12) 0%, rgba(188, 24, 136, 0.12) 100%),
        rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bop-quote {
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    border-left: 3px solid #a1de56;
    padding-left: 1.25rem;
}

.bop-empty-state {
    border-radius: 1.15rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.bop-badge-closed {
    display: inline-flex;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    color: #fcd34d;
    font-size: 0.72rem;
    font-weight: 600;
}
