/*--------------------------------------------------------------
# Bottom Cards (Alternative Style)
--------------------------------------------------------------*/

.bottom-card-alt {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    transition: all 0.25s ease;
    overflow: hidden;
}


/* left accent bar */

.bottom-card-alt::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #50c5ff, #27b1f2);
}

.bottom-card-alt:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(80, 197, 255, 0.25);
}


/*--------------------------------------------------------------
# Card Header
--------------------------------------------------------------*/

.bottom-card-alt-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.bottom-card-alt-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(80, 197, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #149ddd;
    font-size: 1.15rem;
}

.bottom-card-alt h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}


/*--------------------------------------------------------------
# Text
--------------------------------------------------------------*/

.bottom-card-alt p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #64748b;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 768px) {
    .bottom-card-alt {
        padding: 20px;
    }
    .bottom-card-alt-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/*--------------------------------------------------------------
# Admin Panel Main Card
--------------------------------------------------------------*/

.admin-panel-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 255, 0.98) 100%);
    border: 1px solid rgba(80, 197, 255, 0.16);
    border-radius: 32px;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08), 0 8px 24px rgba(80, 197, 255, 0.06);
    overflow: hidden;
    isolation: isolate;
}

.admin-panel-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -90px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(80, 197, 255, 0.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.admin-panel-card::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -100px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08), transparent 74%);
    pointer-events: none;
    z-index: 0;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.management-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(80, 197, 255, 0.08), rgba(255, 255, 255, 0.78));
    border: 1px solid rgba(80, 197, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.management-header-left {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.management-title-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #50c5ff 0%, #1eb4f3 100%);
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 16px 34px rgba(80, 197, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
}

.management-title {
    margin: 0;
    font-size: 1.85rem;
    line-height: 1.15;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.soft-muted {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 620px;
}


/*--------------------------------------------------------------
# Header Actions
--------------------------------------------------------------*/

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

.chip-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(80, 197, 255, 0.18);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.94rem;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.chip-stat i {
    color: #149ddd;
    font-size: 1rem;
}


/*--------------------------------------------------------------
# Secondary / Danger Buttons
--------------------------------------------------------------*/

.btn-2,
.admin-soft-danger {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.28s ease;
}

.btn-2 {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.btn-2:hover {
    background: #ffffff;
    border-color: rgba(80, 197, 255, 0.26);
    color: #149ddd;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(80, 197, 255, 0.1);
}

.admin-soft-danger {
    border: 1px solid rgba(239, 68, 68, 0.16);
    background: linear-gradient(180deg, #fff6f6 0%, #fff1f1 100%);
    color: #dc2626;
    box-shadow: 0 10px 22px rgba(239, 68, 68, 0.05);
}

.admin-soft-danger:hover {
    background: #ffeaea;
    border-color: rgba(239, 68, 68, 0.24);
    color: #b91c1c;
    transform: translateY(-2px);
}


/*--------------------------------------------------------------
# Note
--------------------------------------------------------------*/

.admin-panel-note {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    margin-bottom: 4px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eefaff 0%, #f8fcff 100%);
    border: 1px solid rgba(80, 197, 255, 0.18);
    color: #334155;
    font-size: 0.96rem;
    line-height: 1.65;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 24px rgba(80, 197, 255, 0.05);
}

.admin-panel-note i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(80, 197, 255, 0.12);
    color: #149ddd;
    font-size: 1rem;
    flex-shrink: 0;
}


/*--------------------------------------------------------------
# Feature Cards
--------------------------------------------------------------*/

.admin-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 249, 253, 0.96) 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    overflow: hidden;
    isolation: isolate;
}

.admin-feature-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #50c5ff 0%, #1eb4f3 60%, rgba(80, 197, 255, 0.2) 100%);
}

.admin-feature-card::after {
    content: "";
    position: absolute;
    top: -72px;
    right: -56px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(80, 197, 255, 0.1), transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.admin-feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(80, 197, 255, 0.28);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.09), 0 10px 30px rgba(80, 197, 255, 0.08);
}

.admin-feature-primary {
    background: linear-gradient(180deg, rgba(237, 249, 255, 0.98) 0%, rgba(247, 252, 255, 0.98) 100%);
    border-color: rgba(80, 197, 255, 0.26);
}


/*--------------------------------------------------------------
# Feature Top
--------------------------------------------------------------*/

.admin-feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.admin-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #50c5ff 0%, #27b1f2 100%);
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 14px 28px rgba(80, 197, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
}

.admin-feature-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #475569;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-feature-card h4 {
    margin: 0 0 10px;
    font-size: 1.28rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.admin-feature-card p {
    margin: 0 0 18px;
    color: #64748b;
    font-size: 0.96rem;
    line-height: 1.72;
    position: relative;
    z-index: 2;
}


/*--------------------------------------------------------------
# Feature Stats
--------------------------------------------------------------*/

.admin-feature-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.admin-feature-stat {
    padding: 14px 14px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035);
}

.admin-feature-stat span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
}

.admin-feature-stat strong {
    display: block;
    font-size: 1.14rem;
    font-weight: 800;
    color: #0f172a;
}


/*--------------------------------------------------------------
# Feature List
--------------------------------------------------------------*/

.admin-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.admin-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #334155;
    font-size: 0.94rem;
    line-height: 1.65;
}

.admin-feature-list li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(80, 197, 255, 0.1);
    color: #149ddd;
    font-size: 0.9rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.admin-feature-actions {
    margin-top: auto;
    position: relative;
    z-index: 2;
}


/*--------------------------------------------------------------
# Shortcuts
--------------------------------------------------------------*/

.admin-shortcuts {
    margin-top: 30px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #f3f8fc 0%, #edf4f8 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.admin-shortcuts-title {
    margin-bottom: 16px;
    font-size: 1.02rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
}

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

.admin-shortcut-item {
    min-height: 112px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    border: 1px solid rgba(15, 23, 42, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #334155;
    text-align: center;
    padding: 18px 12px;
    transition: all 0.28s ease;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.admin-shortcut-item i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(80, 197, 255, 0.12);
    color: #149ddd;
    font-size: 1.2rem;
    transition: all 0.28s ease;
}

.admin-shortcut-item span {
    font-size: 0.93rem;
    font-weight: 700;
    line-height: 1.4;
}

.admin-shortcut-item:hover {
    transform: translateY(-5px);
    border-color: rgba(80, 197, 255, 0.24);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08), 0 10px 24px rgba(80, 197, 255, 0.06);
    color: #0f172a;
    background: #ffffff;
}

.admin-shortcut-item:hover i {
    transform: scale(1.06);
    background: linear-gradient(135deg, #50c5ff 0%, #27b1f2 100%);
    color: #ffffff;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 1199.98px) {
    .admin-shortcuts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .admin-panel-card {
        padding: 28px;
    }
    .management-header {
        flex-direction: column;
        align-items: stretch;
    }
    .top-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .admin-panel-card {
        border-radius: 24px;
        padding: 20px;
    }
    .management-header {
        padding: 18px;
        border-radius: 20px;
        gap: 18px;
    }
    .management-header-left {
        align-items: flex-start;
        gap: 14px;
    }
    .management-title-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        font-size: 1.2rem;
    }
    .management-title {
        font-size: 1.42rem;
    }
    .soft-muted {
        font-size: 0.94rem;
    }
    .admin-panel-note {
        align-items: flex-start;
        padding: 14px 16px;
        border-radius: 16px;
    }
    .admin-feature-card {
        padding: 20px;
        border-radius: 22px;
    }
    .admin-feature-icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
        font-size: 1.15rem;
    }
    .admin-feature-stats {
        grid-template-columns: 1fr;
    }
    .admin-shortcuts {
        padding: 18px;
        border-radius: 20px;
    }
    .admin-shortcuts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    .admin-shortcut-item {
        min-height: 96px;
        border-radius: 16px;
    }
    .admin-shortcut-item i {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 1.05rem;
    }
}

@media (max-width: 575.98px) {
    .top-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .chip-stat,
    .btn-2,
    .admin-soft-danger {
        width: 100%;
        justify-content: center;
    }
    .admin-shortcuts-grid {
        grid-template-columns: 1fr;
    }
    .admin-feature-card h4 {
        font-size: 1.16rem;
    }
    .admin-feature-card p,
    .admin-feature-list li,
    .admin-panel-note,
    .soft-muted {
        font-size: 0.92rem;
    }
}


/*--------------------------------------------------------------
# Sponsor Card
--------------------------------------------------------------*/

.sponsor-section {
    position: relative;
}

.sponsor-card {
    position: relative;
    background: linear-gradient(135deg, #f2fbff 0%, #f9fdff 100%);
    border: 1px solid rgba(80, 197, 255, 0.25);
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(80, 197, 255, 0.12), 0 10px 30px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}


/* subtle glow */

.sponsor-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(80, 197, 255, 0.18), transparent 70%);
    pointer-events: none;
}

.sponsor-card::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08), transparent 72%);
    pointer-events: none;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.sponsor-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.sponsor-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #50c5ff, #27b1f2);
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 14px 30px rgba(80, 197, 255, 0.3);
}

.sponsor-card h4 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}


/*--------------------------------------------------------------
# Text
--------------------------------------------------------------*/

.sponsor-card p {
    margin: 0;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.75;
    max-width: 800px;
    position: relative;
    z-index: 2;
}


/*--------------------------------------------------------------
# Actions
--------------------------------------------------------------*/

.sponsor-actions {
    position: relative;
    z-index: 2;
}


/*--------------------------------------------------------------
# Hover Effect
--------------------------------------------------------------*/

.sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(80, 197, 255, 0.18), 0 16px 40px rgba(15, 23, 42, 0.08);
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 767.98px) {
    .sponsor-card {
        padding: 22px;
        border-radius: 22px;
    }
    .sponsor-icon {
        width: 50px;
        height: 50px;
        font-size: 1.15rem;
        border-radius: 16px;
    }
    .sponsor-card h4 {
        font-size: 1.2rem;
    }
    .sponsor-card p {
        font-size: 0.94rem;
        line-height: 1.65;
    }
    .sponsor-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .sponsor-actions .btn-1,
    .sponsor-actions .btn-3 {
        width: 100%;
        justify-content: center;
    }
}