:root {
    --brand-red: #b80f17;
    --brand-black: #111111;
    --brand-dark: #1a1a1a;
    --brand-white: #ffffff;
}

body {
    font-family: "Inter", sans-serif;
    background: radial-gradient(circle at top right, #f4e9ea, #f5f6f8 32%, #eef1f6 100%);
    color: #1f2937;
}

.site-main {
    min-height: calc(100vh - 140px);
}

.hero-section {
    background: linear-gradient(145deg, #0c0c0c, #2b0f12 45%, #5b0b10);
    color: var(--brand-white);
    border-radius: 1rem;
    padding: 3.5rem 2rem;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f4f4f4;
}

.panel-card {
    border: 1px solid #eceff3;
    border-radius: 0.9rem;
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.panel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.12);
}

.section-title {
    font-weight: 800;
    letter-spacing: -0.01em;
}

.text-brand-red {
    color: var(--brand-red) !important;
}

.bg-brand-black {
    background-color: var(--brand-black) !important;
}

.auth-card {
    max-width: 540px;
    margin: 0 auto;
    border-radius: 1rem;
}

.table thead th {
    white-space: nowrap;
}

.hero-carousel .carousel-inner {
    border-radius: 1rem;
}

.hero-slide-image {
    height: 460px;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.4));
}

.hero-carousel .carousel-caption {
    left: 8%;
    right: 8%;
    bottom: 4rem;
    z-index: 2;
    max-width: 680px;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.list-group-item {
    border-color: #edf0f4;
}

.home-feature-card {
    position: relative;
    overflow: hidden;
}

.home-feature-card::after {
    content: "";
    position: absolute;
    inset: auto -30% -50% auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(184, 15, 23, 0.12), rgba(184, 15, 23, 0));
    pointer-events: none;
}

.home-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(145deg, #1d1f24, #b80f17);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

@media (max-width: 767.98px) {
    .hero-slide-image {
        height: 340px;
    }

    .hero-carousel .carousel-caption {
        bottom: 2rem;
    }
}
