/* ==========================================================
   DASHBOARD + WELCOME PAGE UI
   Works with your existing Blade classes
   ========================================================== */

:root {
    --portal-primary: #50c5ff;
    --portal-primary-dark: #1298da;
    --portal-primary-soft: #e9f8ff;
    --portal-dark: #0f172a;
    --portal-dark-2: #162033;
    --portal-text: #1e293b;
    --portal-muted: #64748b;
    --portal-border: rgba(15, 23, 42, 0.08);
    --portal-white: #ffffff;
    --portal-bg: #f5fbff;
    --portal-bg-2: #eef7fc;
    --portal-success: #0ea5a4;
    --portal-warning: #f59e0b;
    --portal-danger: #ef4444;
    --portal-shadow-sm: 0 10px 30px rgba(15, 23, 42, 0.06);
    --portal-shadow-md: 0 18px 50px rgba(15, 23, 42, 0.08);
    --portal-shadow-lg: 0 24px 70px rgba(15, 23, 42, 0.12);
    --portal-radius-sm: 16px;
    --portal-radius: 24px;
    --portal-radius-lg: 32px;
    --portal-transition: all 0.3s ease;
}


/* ==========================================================
   GLOBAL PAGE HELPERS
   ========================================================== */

.light-header-page,
.welcome-portal-page {
    background: linear-gradient(180deg, #f7fcff 0%, #f2f8fc 50%, #f8fbfd 100%);
    color: var(--portal-text);
}

.main {
    overflow: hidden;
}

.section {
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--portal-dark);
    margin-bottom: 0.45rem;
    font-family: "Poppins", sans-serif;
    letter-spacing: -0.02em;
}

.section-title p {
    margin: 0;
    color: var(--portal-muted);
    font-size: 1rem;
}

.soft-muted {
    color: var(--portal-muted) !important;
}

.empty-card {
    background: var(--portal-white);
    border: 1px solid var(--portal-border);
    border-radius: var(--portal-radius);
    box-shadow: var(--portal-shadow-sm);
    padding: 1.5rem 1.4rem;
    color: var(--portal-muted);
    font-weight: 500;
}


/* ==========================================================
   BUTTONS
   ========================================================== */

.btn-1,
.btn-2,
.btn-3,
button.btn-1,
button.btn-2,
button.btn-3 {
    border: 0;
    border-radius: 16px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    padding: 0.9rem 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
    transition: var(--portal-transition);
    position: relative;
    overflow: hidden;
}

.btn-1 {
    background: linear-gradient(135deg, var(--portal-primary), var(--portal-primary-dark));
    color: #fff;
    box-shadow: 0 14px 32px rgba(80, 197, 255, 0.28);
}

.btn-1:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 18px 36px rgba(80, 197, 255, 0.35);
}

.btn-2 {
    background: #fff;
    color: var(--portal-dark);
    border: 1px solid rgba(80, 197, 255, 0.22);
    box-shadow: var(--portal-shadow-sm);
}

.btn-2:hover {
    color: var(--portal-primary-dark);
    transform: translateY(-2px);
    border-color: rgba(80, 197, 255, 0.42);
}

.btn-3 {
    background: rgba(80, 197, 255, 0.12);
    color: var(--portal-primary-dark);
    border: 1px solid rgba(80, 197, 255, 0.18);
}

.btn-3:hover {
    background: rgba(80, 197, 255, 0.18);
    color: var(--portal-primary-dark);
    transform: translateY(-2px);
}

.admin-soft-danger {
    background: rgba(239, 68, 68, 0.09);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 16px;
    padding: 0.9rem 1.2rem;
    font-weight: 700;
    transition: var(--portal-transition);
}

.admin-soft-danger:hover {
    background: rgba(239, 68, 68, 0.14);
    color: #991b1b;
    transform: translateY(-2px);
}


/* ==========================================================
   CHIP / PILLS
   ========================================================== */

.chip,
.chip-stat,
.dashboard-mini-pill,
.admin-feature-chip,
.status-badge,
.pricing-badge,
.web-hero-badge,
.welcome-hero-badge,
.create-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    line-height: 1;
}

.chip,
.chip-stat {
    padding: 0.78rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(80, 197, 255, 0.18);
    background: #fff;
    color: var(--portal-dark);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    text-decoration: none;
    transition: var(--portal-transition);
}

.chip:hover,
.chip-stat:hover {
    color: var(--portal-primary-dark);
    transform: translateY(-2px);
    border-color: rgba(80, 197, 255, 0.35);
}

.chip.active {
    background: linear-gradient(135deg, var(--portal-primary), var(--portal-primary-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(80, 197, 255, 0.28);
}

.chip.disabled {
    opacity: 0.55;
    pointer-events: none;
}

.web-hero-badge,
.welcome-hero-badge,
.create-badge {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    width: fit-content;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    margin-bottom: 1rem;
}

.pricing-badge {
    padding: 0.72rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #fff;
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 0.82rem;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.22);
}

.status-badge {
    padding: 0.58rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    background: rgba(80, 197, 255, 0.12);
    color: var(--portal-primary-dark);
    border: 1px solid rgba(80, 197, 255, 0.14);
}

.status-completed {
    background: rgba(14, 165, 164, 0.12);
    color: #0f766e;
    border-color: rgba(14, 165, 164, 0.16);
}

.status-published {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
    border-color: rgba(59, 130, 246, 0.14);
}


/* ==========================================================
   HERO SECTIONS
   ========================================================== */

.web-hero,
.welcome-hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.web-panel-hero {
    padding: 180px 0 110px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.web-panel-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.58)), linear-gradient(180deg, rgba(80, 197, 255, 0.12), rgba(80, 197, 255, 0.04));
}

.web-panel-hero .container,
.welcome-hero .container {
    position: relative;
    z-index: 2;
}

.web-panel-hero h1,
.welcome-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    font-family: "Poppins", sans-serif;
    max-width: 900px;
}

.web-panel-hero p,
.welcome-hero-subtitle {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 780px;
    line-height: 1.8;
    margin-bottom: 1.4rem;
}

.breadcrumbs {
    margin-top: 1.4rem;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.breadcrumbs li,
.breadcrumbs li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumbs li a:hover {
    color: #fff;
}


/* ==========================================================
   WELCOME HERO VIDEO
   ========================================================== */

.welcome-hero {
    padding: 170px 0 90px;
    min-height: 100vh;
}

.welcome-hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.welcome-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
}

.welcome-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 15, 29, 0.86) 0%, rgba(13, 22, 38, 0.72) 45%, rgba(80, 197, 255, 0.16) 100%);
}

.welcome-hero-shell {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(16px);
    border-radius: 34px;
    padding: 2rem;
}

.welcome-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.4rem;
}

.welcome-feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.welcome-feature-chips .chip {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.welcome-feature-chips .chip:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}


/* ==========================================================
   SHARED CARDS
   ========================================================== */

.admin-panel-card,
.welcome-search-card,
.welcome-content-shell,
.welcome-gallery-card,
.pricing-card,
.thread-card,
.web-top-card,
.admin-feature-card,
.bottom-card-alt,
.admin-glass-stat,
.create-side {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--portal-border);
    border-radius: 28px;
    box-shadow: var(--portal-shadow-md);
    transition: var(--portal-transition);
    overflow: hidden;
}

.admin-panel-card:hover,
.welcome-search-card:hover,
.welcome-content-shell:hover,
.welcome-gallery-card:hover,
.pricing-card:hover,
.thread-card:hover,
.web-top-card:hover,
.admin-feature-card:hover,
.bottom-card-alt:hover,
.admin-glass-stat:hover,
.create-side:hover {
    transform: translateY(-6px);
    box-shadow: var(--portal-shadow-lg);
}

.admin-panel-card,
.welcome-content-shell,
.create-side {
    padding: 1.7rem;
}

.welcome-search-card,
.welcome-gallery-card {
    padding: 1.5rem;
}

.web-top-card,
.pricing-card,
.thread-card,
.bottom-card-alt,
.admin-glass-stat {
    padding: 1.4rem;
}


/* ==========================================================
   TOP STATS
   ========================================================== */

.web-top-cards {
    margin-bottom: 2rem;
}

.web-top-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.98));
}

.web-top-card::before,
.admin-glass-stat::before,
.pricing-card::before,
.admin-feature-card::before,
.bottom-card-alt::before,
.thread-card::before,
.create-side::before,
.admin-panel-card::before,
.welcome-content-shell::before,
.welcome-gallery-card::before,
.welcome-search-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(80, 197, 255, 0.16), transparent 70%);
    pointer-events: none;
}

.web-top-card-icon,
.management-title-icon,
.admin-feature-icon,
.admin-glass-icon,
.bottom-card-alt-icon,
.pricing-icon,
.contact-extra-icon,
.section-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(80, 197, 255, 0.16), rgba(80, 197, 255, 0.28));
    color: var(--portal-primary-dark);
    font-size: 1.35rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.web-top-card-content h4,
.admin-glass-content h4,
.bottom-card-alt h4,
.pricing-head-inline h4,
.management-title,
.dashboard-event-name,
.thread-title {
    color: var(--portal-dark);
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0.45rem;
}

.web-top-card-value,
.admin-glass-value {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1;
    font-weight: 800;
    color: var(--portal-primary-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}


/* ==========================================================
   MANAGEMENT HEADER / ACTIONS
   ========================================================== */

.management-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.management-header-left,
.section-head-main {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.management-title {
    font-size: 1.4rem;
}

.top-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
    align-items: center;
}

.admin-panel-note {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border-radius: 18px;
    padding: 1rem 1.1rem;
    background: rgba(80, 197, 255, 0.09);
    border: 1px solid rgba(80, 197, 255, 0.16);
    color: var(--portal-primary-dark);
    font-weight: 600;
}

.filter-bar {
    background: linear-gradient(180deg, #fbfeff, #f5fbff);
    border: 1px solid var(--portal-border);
    border-radius: 22px;
    padding: 1rem;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.alert-soft {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.18);
    color: #92400e;
    border-radius: 20px;
    padding: 1rem 1.1rem;
    font-weight: 500;
}


/* ==========================================================
   EVENT CARDS
   ========================================================== */

.dashboard-event-feature-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

.dashboard-event-image-wrap {
    position: relative;
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, #edf9ff, #f8fcff);
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.dashboard-event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s ease;
}


/* Use this if your uploaded images are getting cropped too much.
   Uncomment to show the full image area instead.
.dashboard-event-image {
    object-fit: contain;
    background: #eef8ff;
}
*/

.dashboard-event-feature-card:hover .dashboard-event-image {
    transform: scale(1.06);
}

.dashboard-event-image-wrap::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 90px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.18), transparent);
    pointer-events: none;
}

.dashboard-event-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff9ff, #f8fcff);
    color: var(--portal-primary-dark);
    font-size: 2rem;
}

.admin-feature-top {
    display: flex;
    justify-content: space-between;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1.2rem 1.3rem 0.8rem;
}

.dashboard-event-title-row {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    flex: 1;
}

.dashboard-event-title-wrap {
    min-width: 0;
}

.dashboard-event-name {
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 0.35rem;
}

.dashboard-event-subtext {
    color: var(--portal-muted);
    margin-bottom: 0;
    line-height: 1.65;
    font-size: 0.94rem;
}

.admin-feature-chip {
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(80, 197, 255, 0.12);
    color: var(--portal-primary-dark);
    border: 1px solid rgba(80, 197, 255, 0.18);
    white-space: nowrap;
}

.admin-feature-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
    padding: 0 1.3rem 1rem;
}

.admin-feature-stat {
    border-radius: 18px;
    padding: 1rem;
    background: linear-gradient(180deg, #fafdff, #f4fbff);
    border: 1px solid rgba(80, 197, 255, 0.12);
    text-align: center;
}

.admin-feature-stat span {
    display: block;
    color: var(--portal-muted);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.admin-feature-stat strong {
    font-size: 1.15rem;
    color: var(--portal-dark);
}

.admin-feature-list {
    list-style: none;
    padding: 0 1.3rem;
    margin: 0;
}

.admin-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
    color: var(--portal-text);
}

.admin-feature-list li:last-child {
    border-bottom: 0;
}

.admin-feature-list i {
    color: var(--portal-primary-dark);
    margin-top: 0.15rem;
    min-width: 16px;
}

.dashboard-event-mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 1rem 1.3rem 0;
}

.dashboard-mini-pill {
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: rgba(80, 197, 255, 0.1);
    border: 1px solid rgba(80, 197, 255, 0.15);
    color: var(--portal-primary-dark);
}

.dashboard-mini-pill span {
    display: block;
    font-size: 0.76rem;
    margin-bottom: 0.22rem;
    opacity: 0.85;
}

.dashboard-mini-pill strong {
    font-size: 0.98rem;
}

.dashboard-mini-pill.mine {
    background: rgba(14, 165, 164, 0.1);
    border-color: rgba(14, 165, 164, 0.15);
    color: #0f766e;
}

.dashboard-mini-pill.total {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}

.admin-feature-actions {
    padding: 1.2rem 1.3rem 1.3rem;
    margin-top: auto;
}


/* ==========================================================
   THREAD CARDS
   ========================================================== */

.admin-shortcuts {
    margin-top: 1.5rem;
}

.admin-shortcuts-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--portal-dark);
    margin-bottom: 1rem;
    font-family: "Poppins", sans-serif;
}

.thread-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.thread-title {
    font-size: 1.1rem;
}

.thread-preview {
    color: var(--portal-muted);
    line-height: 1.75;
    min-height: 70px;
}

.thread-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.soft-divider {
    border-color: rgba(15, 23, 42, 0.08);
}


/* ==========================================================
   FORMS / SEARCH CARD
   ========================================================== */

.form-label {
    font-weight: 700;
    color: var(--portal-dark);
    margin-bottom: 0.45rem;
}

.input-round,
.form-control.input-round,
.form-select.input-round {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
    box-shadow: none;
    padding-left: 1rem;
    padding-right: 1rem;
    transition: var(--portal-transition);
}

.input-round:focus,
.form-control.input-round:focus,
.form-select.input-round:focus {
    border-color: rgba(80, 197, 255, 0.52);
    box-shadow: 0 0 0 0.24rem rgba(80, 197, 255, 0.15);
}


/* ==========================================================
   GLASS STATS ON WELCOME PAGE
   ========================================================== */

.admin-glass-stat {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    min-height: 100%;
}

.admin-glass-content p {
    color: var(--portal-muted);
    margin-bottom: 0;
    line-height: 1.7;
}


/* ==========================================================
   STORY / SIDE PANEL
   ========================================================== */

.create-page {
    padding: 90px 0;
}

.create-side {
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.96), rgba(22, 32, 51, 0.94));
    border: 1px solid rgba(80, 197, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.create-side h3 {
    color: #fff;
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.create-side-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.create-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.create-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
}

.create-feature-item i {
    color: #7ad8ff;
    margin-top: 0.12rem;
}

.create-note {
    border-radius: 18px;
    padding: 1rem 1.1rem;
    background: rgba(80, 197, 255, 0.14);
    border: 1px solid rgba(80, 197, 255, 0.16);
    color: #dff8ff;
    line-height: 1.7;
}

.bobtechwaves-badge {
    display: block;
    text-decoration: none;
    border-radius: 18px;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: var(--portal-transition);
}

.bobtechwaves-badge:hover {
    color: #fff;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.bobtechwaves-url {
    display: block;
    margin-top: 0.3rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}


/* ==========================================================
   IMAGE SECTIONS
   ========================================================== */

.welcome-side-image-wrap,
.welcome-feature-image-wrap,
.welcome-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #eff8ff;
}

.welcome-side-image-wrap {
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.welcome-feature-image-wrap {
    height: 220px;
    border: 1px solid rgba(80, 197, 255, 0.1);
}

.welcome-gallery-item {
    height: 240px;
    border: 1px solid rgba(80, 197, 255, 0.12);
}

.welcome-side-image,
.welcome-feature-image,
.welcome-gallery-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.55s ease;
}


/* If you want each image to be shown fully instead of filling the box,
   uncomment this block.

.welcome-side-image,
.welcome-feature-image,
.welcome-gallery-image {
    object-fit: contain;
    background: #eff8ff;
}
*/

.welcome-side-image-wrap:hover .welcome-side-image,
.welcome-feature-image-wrap:hover .welcome-feature-image,
.welcome-gallery-item:hover .welcome-gallery-image {
    transform: scale(1.06);
}

.about-head-inline,
.bottom-card-alt-head,
.pricing-head-inline {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.bottom-card-alt p,
.pricing-subtitle {
    color: var(--portal-muted);
    line-height: 1.75;
}

.bottom-cards {
    margin-top: 0.2rem;
}


/* ==========================================================
   SECTION HEAD
   ========================================================== */

.section-head {
    margin-bottom: 1.8rem;
}

.section-kicker {
    display: inline-block;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--portal-primary-dark);
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.section-subtitle {
    color: var(--portal-muted);
    line-height: 1.7;
}


/* ==========================================================
   PRICING / GET STARTED
   ========================================================== */

.pricing-card {
    min-height: 100%;
    padding-top: 1.6rem;
}

.pricing-card.featured {
    border-color: rgba(80, 197, 255, 0.24);
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(80, 197, 255, 0.16);
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--portal-text);
    line-height: 1.65;
}

.pricing-list i {
    color: var(--portal-primary-dark);
    margin-top: 0.1rem;
}


/* ==========================================================
   DASHBOARD SHELL
   ========================================================== */

.dashboard-shell {
    padding: 90px 0;
}

.admin-panel-shell {
    background: transparent;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1399.98px) {
    .web-panel-hero,
    .welcome-hero {
        min-height: auto;
    }
}

@media (max-width: 1199.98px) {
    .web-panel-hero {
        padding: 165px 0 95px;
    }
    .welcome-hero {
        padding: 155px 0 80px;
    }
    .dashboard-event-image-wrap {
        height: 240px;
    }
}

@media (max-width: 991.98px) {
    .dashboard-shell,
    .create-page {
        padding: 75px 0;
    }
    .management-header,
    .thread-head {
        flex-direction: column;
        align-items: stretch;
    }
    .top-actions {
        justify-content: flex-start;
    }
    .welcome-hero-shell {
        padding: 1.5rem;
    }
    .create-side,
    .admin-panel-card,
    .welcome-content-shell {
        padding: 1.35rem;
    }
    .dashboard-event-image-wrap,
    .welcome-side-image-wrap,
    .welcome-gallery-item,
    .welcome-feature-image-wrap {
        height: 230px;
    }
}

@media (max-width: 767.98px) {
    .web-panel-hero {
        padding: 145px 0 78px;
    }
    .welcome-hero {
        padding: 140px 0 70px;
        min-height: auto;
    }
    .web-panel-hero h1,
    .welcome-hero h1 {
        font-size: 2.1rem;
    }
    .web-panel-hero p,
    .welcome-hero-subtitle {
        font-size: 1rem;
    }
    .welcome-hero-actions,
    .welcome-feature-chips,
    .filter-pills,
    .thread-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .management-header-left,
    .section-head-main,
    .dashboard-event-title-row {
        gap: 0.8rem;
    }
    .admin-feature-top {
        flex-direction: column;
    }
    .admin-feature-stats {
        grid-template-columns: 1fr;
    }
    .dashboard-event-mini-stats {
        flex-direction: column;
    }
    .dashboard-event-image-wrap,
    .welcome-side-image-wrap,
    .welcome-gallery-item,
    .welcome-feature-image-wrap {
        height: 215px;
    }
    .web-top-card {
        flex-direction: column;
    }
    .btn-1,
    .btn-2,
    .btn-3 {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .web-panel-hero,
    .welcome-hero {
        padding-top: 125px;
    }
    .web-panel-hero h1,
    .welcome-hero h1 {
        font-size: 1.85rem;
    }
    .welcome-hero-shell,
    .welcome-search-card,
    .admin-panel-card,
    .welcome-content-shell,
    .create-side,
    .pricing-card,
    .thread-card,
    .web-top-card,
    .admin-feature-card,
    .bottom-card-alt,
    .admin-glass-stat {
        border-radius: 22px;
    }
    .dashboard-event-image-wrap,
    .welcome-side-image-wrap,
    .welcome-gallery-item,
    .welcome-feature-image-wrap {
        height: 200px;
    }
    .admin-feature-actions,
    .admin-feature-top,
    .admin-feature-list,
    .dashboard-event-mini-stats {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .admin-feature-actions {
        padding-bottom: 1rem;
    }
}