/* ============================================================
   CineMax — style.css
   Design System & All Component Styles
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
    --bg-dark: #090b10;
    --bg-card: #111827;
    --bg-card2: #1a2234;
    --accent: #66fcf1;
    --accent2: #45a29e;
    --accent-dark: #0d7377;
    --text-main: #e2e8f0;
    --text-muted: #64748b;
    --red: #ef4444;
    --blue: #3b82f6;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-card);
}

::-webkit-scrollbar-thumb {
    background: var(--accent2);
    border-radius: 4px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: rgba(9, 11, 16, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 252, 241, 0.1);
    padding: 12px 0;
    transition: all var(--transition);
}

.navbar-brand {
    color: var(--accent) !important;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(102, 252, 241, 0.5);
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 16px !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.nav-link:hover::after {
    width: 70%;
}

.search-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(102, 252, 241, 0.2) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    transition: var(--transition);
    width: 260px;
}

.search-input:focus {
    border-color: var(--accent) !important;
    background: rgba(102, 252, 241, 0.05) !important;
    box-shadow: 0 0 0 3px rgba(102, 252, 241, 0.1) !important;
    outline: none !important;
}

.search-input::placeholder {
    color: var(--text-muted);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    min-height: 100vh;
    background:
        linear-gradient(105deg, #090b10 35%, rgba(9, 11, 16, 0.3) 100%),
        url('../img/one_piece.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(102, 252, 241, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--red);
    color: var(--red);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero-title span {
    color: var(--accent);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-meta .badge-meta {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
}

.hero-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 28px;
}

.btn-play {
    background: var(--accent);
    color: #090b10;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-size: 0.95rem;
    transition: all var(--transition);
    box-shadow: 0 0 20px rgba(102, 252, 241, 0.3);
    cursor: pointer;
}

.btn-play:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(102, 252, 241, 0.5);
}

.btn-info-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 32px;
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-info-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.hero-stat .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat .lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 252, 241, 0.25), transparent);
}

/* ============================================================
   CATALOG SECTION
   ============================================================ */
#katalog {
    padding: 60px 0;
}

.section-tag {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 6px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

/* ── Main Type Tabs ── */
.main-tabs-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 6px;
    display: inline-flex;
    gap: 6px;
    margin-bottom: 24px;
}

.main-tab-btn {
    background: transparent;
    border: none;
    padding: 10px 28px;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.main-tab-btn.active {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent2));
    color: #fff;
    box-shadow: 0 4px 15px rgba(13, 115, 119, 0.4);
}

.main-tab-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* ── Genre Filter Pills ── */
.genre-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.genre-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    border-radius: 50px;
    padding: 5px 18px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.genre-btn:hover,
.genre-btn.active {
    background: rgba(102, 252, 241, 0.12);
    border-color: var(--accent);
    color: var(--accent);
}

/* ── Top Bar ── */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.result-count {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.result-count span {
    color: var(--accent);
    font-weight: 700;
}

.sort-select {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-radius: var(--radius-sm);
    padding: 6px 14px;
    font-size: 0.8rem;
    outline: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: border-color var(--transition);
}

.sort-select:focus {
    border-color: var(--accent);
}

/* ============================================================
   MOVIE CARD
   ============================================================ */
.movie-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.movie-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(102, 252, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(102, 252, 241, 0.1);
}

.movie-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.movie-card img {
    height: 290px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.movie-card:hover img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 11, 16, 0.95) 0%, rgba(9, 11, 16, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.movie-card:hover .card-overlay {
    opacity: 1;
}

.overlay-play {
    width: 56px;
    height: 56px;
    background: rgba(102, 252, 241, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #090b10;
    font-size: 1.2rem;
    transform: scale(0.7);
    transition: var(--transition);
}

.movie-card:hover .overlay-play {
    transform: scale(1);
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    color: #f5c518;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.78rem;
    border: 1px solid rgba(245, 197, 24, 0.2);
    z-index: 2;
}

.type-pin {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.type-pin.movie {
    background: rgba(239, 68, 68, 0.85);
    color: #fff;
}

.type-pin.tv {
    background: rgba(59, 130, 246, 0.85);
    color: #fff;
}

.card-body-custom {
    padding: 12px;
    background: var(--bg-card);
}

.card-title-custom {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.card-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination .page-link {
    background: var(--bg-card);
    border-color: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--accent2);
    border-color: var(--accent2);
    color: #fff;
}

.pagination .active .page-link {
    background: var(--accent);
    border-color: var(--accent);
    color: #090b10;
    font-weight: 700;
}

.pagination .disabled .page-link {
    background: rgba(255, 255, 255, 0.02);
    color: #333;
    border-color: rgba(255, 255, 255, 0.04);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-content {
    background: #0f131c;
    border: 1px solid rgba(102, 252, 241, 0.15);
    border-radius: 18px;
    color: #fff;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 28px;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.modal-body {
    padding: 24px 28px;
}

.modal-poster {
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    width: 100%;
    object-fit: cover;
    max-height: 420px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
}

.info-label {
    color: var(--text-muted);
    min-width: 90px;
}

.info-value {
    color: var(--text-main);
    font-weight: 500;
}

.genre-chip {
    background: rgba(102, 252, 241, 0.1);
    border: 1px solid rgba(102, 252, 241, 0.2);
    color: var(--accent);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    display: inline-block;
    margin: 2px;
}

.plot-text {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 0.88rem;
}

/* Modal custom tab nav */
.modal-nav-tab {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.modal-nav-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.modal-nav-tab:hover:not(.active) {
    color: #fff;
}

/* Gallery Tab */
.gallery-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.gallery-scroll::-webkit-scrollbar {
    height: 5px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--accent2);
    border-radius: 4px;
}

.gallery-img {
    height: 180px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: var(--transition);
}

.gallery-img:hover {
    border-color: var(--accent);
    transform: scale(1.02);
}

/* Video Tab */
.video-card {
    background: var(--bg-card2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.video-card:hover {
    border-color: var(--accent2);
    transform: translateY(-4px);
}

.video-thumb-wrap {
    position: relative;
    overflow: hidden;
}

.video-thumb {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.video-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.video-card:hover .video-play-icon {
    opacity: 1;
}

.video-card-body {
    padding: 10px 12px;
}

.video-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-type-badge {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.preview-img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

.preview-img:hover {
    border-color: var(--accent);
}

/* ============================================================
   SKELETON LOADER
   ============================================================ */
.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card2) 50%, var(--bg-card) 75%);
    background-size: 200%;
    animation: shimmer 1.4s infinite;
    border-radius: var(--radius-md);
}

.skeleton-card {
    height: 350px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 3.5rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    opacity: 0.4;
}

.empty-state h5 {
    color: #fff;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #07090d;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 0 28px;
    margin-top: 60px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(102, 252, 241, 0.3);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    display: block;
    margin-bottom: 8px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    margin-right: 8px;
}

.footer-social a:hover {
    background: rgba(102, 252, 241, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.05);
    margin: 28px 0 20px;
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadein {
    animation: fadeInUp 0.4s ease forwards;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-stats {
        gap: 18px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .search-input {
        width: 100%;
        margin-top: 12px;
    }

    .main-tabs-wrapper {
        width: 100%;
        justify-content: center;
    }

    .modal-body {
        padding: 16px;
    }

    .about-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .about-stat-divider {
        display: none;
    }
}

/* ============================================================
   ABOUT US SECTION
   ============================================================ */
.about-section {
    padding: 80px 0;
}

.about-desc {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.85;
}

/* ── Visual Wrap ── */
.about-visual-wrap {
    position: relative;
    padding: 20px;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(102, 252, 241, 0.15);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}

.about-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-visual-wrap:hover .about-img {
    transform: scale(1.04);
}

/* floating badge */
.about-img-badge {
    position: absolute;
    bottom: 30px;
    right: 5px;
    background: var(--accent);
    color: #090b10;
    border-radius: 14px;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(102, 252, 241, 0.35);
    line-height: 1.4;
}

.about-img-badge i {
    font-size: 1.6rem;
}

/* ambient glow orb */
.about-glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 252, 241, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* ── Stats Row ── */
.about-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 28px 0 32px;
}

.about-stat-item {
    flex: 1;
    text-align: center;
}

.about-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.01);
}

/* ── Feature Card ── */
.why-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 32px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.why-card:hover {
    border-color: rgba(102, 252, 241, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* shine on hover */
.why-card-shine {
    position: absolute;
    top: -60%;
    left: -60%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(102, 252, 241, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
    pointer-events: none;
}

.why-card:hover .why-card-shine {
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
}

/* icon wrap */
.why-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(var(--icon-color, 102, 252, 241), 0.1);
    background: color-mix(in srgb, var(--icon-color) 15%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--icon-color);
    margin-bottom: 20px;
    border: 1px solid color-mix(in srgb, var(--icon-color) 25%, transparent);
    transition: var(--transition);
}

.why-card:hover .why-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.why-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.why-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* ── Highlighted card (last / CTA) ── */
.why-card-highlight {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(102, 252, 241, 0.2);
}

.why-card-highlight:hover {
    box-shadow: 0 20px 60px rgba(102, 252, 241, 0.35);
    border-color: #fff;
}

.why-card-highlight .why-icon-wrap {
    background: rgba(9, 11, 16, 0.15);
    border-color: rgba(9, 11, 16, 0.2);
}

.why-card-highlight .why-card-shine {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

/* "Soon" badge on highlight card */
.why-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(9, 11, 16, 0.2);
    color: #090b10;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(9, 11, 16, 0.25);
}