
/* Login */

        :root {
            --main-color: #0f766e;
            --second-color: #14b8a6;
            --dark-color: #0f172a;
            --muted-color: #64748b;
            --soft-bg: #f8fafc;
        }

        * {
            box-sizing: border-box;
        }

        body {
            min-height: 100vh;
            margin: 0;
            font-family: Inter, Arial, sans-serif;
            background:
                radial-gradient(circle at top left, rgba(20,184,166,.24), transparent 32%),
                radial-gradient(circle at bottom right, rgba(56,189,248,.22), transparent 34%),
                linear-gradient(135deg, #f8fafc 0%, #ecfeff 48%, #ffffff 100%);
            color: var(--dark-color);
        }

        .auth-wrapper {
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            padding: 50px 0;
            display: flex;
            align-items: center;
        }

        .auth-shape {
            position: absolute;
            border-radius: 999px;
            filter: blur(80px);
            opacity: .35;
            pointer-events: none;
        }

        .auth-shape-1 {
            width: 320px;
            height: 320px;
            background: #14b8a6;
            left: -120px;
            top: 90px;
        }

        .auth-shape-2 {
            width: 360px;
            height: 360px;
            background: #38bdf8;
            right: -140px;
            bottom: -100px;
        }

        .auth-container {
            position: relative;
            z-index: 2;
        }

        .auth-main-card {
            overflow: hidden;
            border-radius: 36px;
            background: rgba(255,255,255,.74);
            border: 1px solid rgba(255,255,255,.78);
            backdrop-filter: blur(18px);
            box-shadow: 0 30px 90px rgba(15,23,42,.14);
        }

        .auth-left,
        .auth-right {
            min-height: 620px;
            padding: 50px;
        }

        .auth-left {
            background:
                radial-gradient(circle at top right, rgba(20,184,166,.32), transparent 36%),
                linear-gradient(135deg, #0f172a, #111827);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .auth-left::after {
            content: "";
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: rgba(255,255,255,.08);
            right: -100px;
            bottom: -100px;
        }

        .brand-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            text-decoration: none;
            font-weight: 900;
            font-size: 24px;
            margin-bottom: 70px;
        }

        .brand-link:hover {
            color: #ccfbf1;
        }

        .brand-icon {
            width: 44px;
            height: 44px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--main-color), var(--second-color));
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 16px 34px rgba(20,184,166,.35);
        }

        .auth-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 999px;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.14);
            color: #ccfbf1;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .auth-left h1 {
            font-size: clamp(36px, 4vw, 58px);
            line-height: 1.05;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .auth-left p {
            max-width: 460px;
            color: rgba(255,255,255,.78);
            line-height: 1.8;
            font-size: 17px;
            margin-bottom: 34px;
        }

        .auth-feature-list {
            display: grid;
            gap: 14px;
            position: relative;
            z-index: 2;
        }

        .auth-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255,255,255,.88);
            font-weight: 700;
        }

        .auth-feature-item i {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(20,184,166,.22);
            color: #5eead4;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .auth-right {
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: rgba(255,255,255,.78);
        }

        .auth-tabs-title {
            margin-bottom: 28px;
        }

        .auth-tabs-title span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--main-color);
            font-weight: 900;
            margin-bottom: 10px;
        }

        .auth-tabs-title h2 {
            font-size: 34px;
            font-weight: 900;
            margin-bottom: 8px;
            color: var(--dark-color);
        }

        .auth-tabs-title p {
            color: var(--muted-color);
            margin: 0;
            line-height: 1.7;
        }

        .form-control {
            height: 54px;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            background: #fff;
            padding: 0 16px;
            box-shadow: none !important;
        }

        .form-control:focus {
            border-color: var(--second-color);
        }

        .password-wrap {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            border: 0;
            background: transparent;
            color: #64748b;
            font-size: 18px;
        }

        .auth-submit-btn {
            width: 100%;
            height: 56px;
            border: 0;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--main-color), var(--second-color));
            color: #fff;
            font-weight: 900;
            box-shadow: 0 18px 36px rgba(20,184,166,.30);
            transition: .25s;
        }

        .auth-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 22px 46px rgba(20,184,166,.38);
        }

        .auth-link-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 18px;
        }

        .auth-link-row a {
            color: var(--main-color);
            text-decoration: none;
            font-weight: 800;
        }

        .register-box {
            margin-top: 24px;
            padding: 22px;
            border-radius: 24px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .register-box h3 {
            font-size: 18px;
            font-weight: 900;
            margin-bottom: 4px;
        }

        .register-box p {
            margin: 0;
            color: var(--muted-color);
            font-size: 14px;
        }

        .register-btn {
            white-space: nowrap;
            border-radius: 999px;
            padding: 12px 18px;
            background: #0f172a;
            color: #fff;
            text-decoration: none;
            font-weight: 900;
            transition: .25s;
        }

        .register-btn:hover {
            background: var(--main-color);
            color: #fff;
        }

        .auth-alert {
            border-radius: 18px;
            padding: 16px 18px;
            font-weight: 700;
        }

        .closed-box {
            padding: 28px;
            border-radius: 28px;
            background: #fff7ed;
            border: 1px solid #fed7aa;
            color: #c2410c;
            text-align: center;
        }

        .closed-box i {
            font-size: 42px;
            margin-bottom: 16px;
        }

        .closed-box h3 {
            font-size: 24px;
            font-weight: 900;
            margin-bottom: 10px;
        }

        .closed-box p {
            margin: 0;
            line-height: 1.7;
        }

        .back-home {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 22px;
            color: var(--main-color);
            font-weight: 900;
            text-decoration: none;
        }

        .disabled-register-note {
            margin-top: 24px;
            padding: 18px;
            border-radius: 20px;
            background: #fef2f2;
            color: #b91c1c;
            border: 1px solid #fecaca;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        @media (max-width: 991px) {
            .auth-left,
            .auth-right {
                min-height: auto;
                padding: 34px;
            }

            .brand-link {
                margin-bottom: 38px;
            }

            .auth-main-card {
                border-radius: 26px;
            }
        }

        @media (max-width: 575px) {
            .auth-wrapper {
                padding: 24px 0;
            }

            .auth-left,
            .auth-right {
                padding: 26px;
            }

            .register-box {
                flex-direction: column;
                align-items: flex-start;
            }

            .register-btn {
                width: 100%;
                text-align: center;
            }
        }
        
        
        /* register */
        
                :root {
            --main-color: #0f766e;
            --second-color: #14b8a6;
            --dark-color: #0f172a;
            --muted-color: #64748b;
        }

        body {
            margin: 0;
            min-height: 100vh;
            font-family: Inter, Arial, sans-serif;
            background:
                radial-gradient(circle at top left, rgba(20,184,166,.24), transparent 32%),
                radial-gradient(circle at bottom right, rgba(56,189,248,.22), transparent 34%),
                linear-gradient(135deg, #f8fafc 0%, #ecfeff 48%, #ffffff 100%);
            color: var(--dark-color);
        }

        .register-wrapper {
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            padding: 50px 0;
            display: flex;
            align-items: center;
        }

        .register-shape {
            position: absolute;
            border-radius: 999px;
            filter: blur(80px);
            opacity: .35;
            pointer-events: none;
        }

        .register-shape-1 {
            width: 320px;
            height: 320px;
            background: #14b8a6;
            left: -120px;
            top: 90px;
        }

        .register-shape-2 {
            width: 360px;
            height: 360px;
            background: #38bdf8;
            right: -140px;
            bottom: -100px;
        }

        .register-main-card {
            position: relative;
            z-index: 2;
            overflow: hidden;
            border-radius: 36px;
            background: rgba(255,255,255,.76);
            border: 1px solid rgba(255,255,255,.78);
            backdrop-filter: blur(18px);
            box-shadow: 0 30px 90px rgba(15,23,42,.14);
        }

        .register-left,
        .register-right {
            min-height: 680px;
            padding: 50px;
        }

        .register-left {
            background:
                radial-gradient(circle at top right, rgba(20,184,166,.32), transparent 36%),
                linear-gradient(135deg, #0f172a, #111827);
            color: #fff;
        }

        .brand-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            text-decoration: none;
            font-weight: 900;
            font-size: 24px;
            margin-bottom: 70px;
        }

        .brand-link:hover {
            color: #ccfbf1;
        }

        .brand-icon {
            width: 44px;
            height: 44px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--main-color), var(--second-color));
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .register-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 999px;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.14);
            color: #ccfbf1;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .register-left h1 {
            font-size: clamp(36px, 4vw, 58px);
            line-height: 1.05;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .register-left p {
            max-width: 460px;
            color: rgba(255,255,255,.78);
            line-height: 1.8;
            font-size: 17px;
            margin-bottom: 34px;
        }

        .register-feature-list {
            display: grid;
            gap: 14px;
        }

        .register-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255,255,255,.88);
            font-weight: 700;
        }

        .register-feature-item i {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(20,184,166,.22);
            color: #5eead4;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .register-right {
            background: rgba(255,255,255,.78);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .register-title {
            margin-bottom: 26px;
        }

        .register-title span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--main-color);
            font-weight: 900;
            margin-bottom: 10px;
        }

        .register-title h2 {
            font-size: 34px;
            font-weight: 900;
            margin-bottom: 8px;
        }

        .register-title p {
            color: var(--muted-color);
            margin: 0;
            line-height: 1.7;
        }

        .form-control {
            height: 54px;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            background: #fff;
            padding: 0 16px;
            box-shadow: none !important;
        }

        .form-control:focus {
            border-color: var(--second-color);
        }

        .password-wrap {
            position: relative;
        }

        .password-wrap .form-control {
            padding-right: 48px;
        }

        .password-toggle {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            border: 0;
            background: transparent;
            color: #64748b;
            font-size: 18px;
        }

        .register-submit-btn {
            width: 100%;
            height: 56px;
            border: 0;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--main-color), var(--second-color));
            color: #fff;
            font-weight: 900;
            box-shadow: 0 18px 36px rgba(20,184,166,.30);
            transition: .25s;
        }

        .register-submit-btn:hover {
            transform: translateY(-2px);
        }

        .login-box {
            margin-top: 22px;
            padding: 20px;
            border-radius: 22px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .login-box p {
            margin: 0;
            color: var(--muted-color);
            font-weight: 700;
        }

        .login-box a {
            white-space: nowrap;
            border-radius: 999px;
            padding: 12px 18px;
            background: #0f172a;
            color: #fff;
            text-decoration: none;
            font-weight: 900;
        }

        .login-box a:hover {
            background: var(--main-color);
        }

        .closed-box {
            padding: 30px;
            border-radius: 28px;
            background: #fff7ed;
            border: 1px solid #fed7aa;
            color: #c2410c;
            text-align: center;
        }

        .closed-box i {
            font-size: 44px;
            margin-bottom: 16px;
        }

        .closed-box h3 {
            font-size: 26px;
            font-weight: 900;
            margin-bottom: 10px;
        }

        .closed-box p {
            margin-bottom: 22px;
            line-height: 1.7;
        }

        .closed-box a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--main-color);
            text-decoration: none;
            font-weight: 900;
        }

        .alert {
            border-radius: 18px;
            font-weight: 700;
        }

        @media (max-width: 991px) {
            .register-left,
            .register-right {
                min-height: auto;
                padding: 34px;
            }

            .brand-link {
                margin-bottom: 38px;
            }

            .register-main-card {
                border-radius: 26px;
            }
        }

        @media (max-width: 575px) {
            .register-wrapper {
                padding: 24px 0;
            }

            .register-left,
            .register-right {
                padding: 26px;
            }

            .login-box {
                flex-direction: column;
                align-items: flex-start;
            }

            .login-box a {
                width: 100%;
                text-align: center;
            }
        }
        
        
        /*-- Dashboard Home --*/

.dashboard-home-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    padding: 46px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(20,184,166,.18), transparent 34%),
        linear-gradient(135deg, #f8fafc 0%, #ecfeff 48%, #ffffff 100%);
}

.dashboard-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: .34;
    pointer-events: none;
}

.dashboard-shape-1 {
    width: 300px;
    height: 300px;
    background: #14b8a6;
    left: -110px;
    top: 80px;
}

.dashboard-shape-2 {
    width: 340px;
    height: 340px;
    background: #38bdf8;
    right: -130px;
    bottom: -90px;
}

.dashboard-hero-card,
.dash-stat-card,
.subscription-modern-card,
.quick-actions-card {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(255,255,255,.8);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(15,23,42,.10);
}

.dashboard-hero-card {
    border-radius: 34px;
    padding: 38px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.dashboard-badge,
.section-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f766e;
    background: #ecfdf5;
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.dashboard-hero-card h1 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 12px;
}

.dashboard-hero-card h1 strong {
    color: #0f766e;
}

.dashboard-hero-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.dashboard-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 22px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 18px 36px rgba(20,184,166,.30);
    transition: .25s;
    white-space: nowrap;
}

.dashboard-primary-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

.dash-stat-card {
    border-radius: 26px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
}

.dash-stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 16px 32px rgba(20,184,166,.26);
}

.dash-stat-card span {
    display: block;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 4px;
}

.dash-stat-card strong {
    display: block;
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

.subscription-modern-card,
.quick-actions-card {
    height: 100%;
    border-radius: 32px;
    padding: 32px;
}

.subscription-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 26px;
}

.subscription-header h2,
.quick-actions-card h2 {
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
}

.plan-pill {
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.plan-none {
    background: #fef2f2;
    color: #b91c1c;
}

.plan-basic {
    background: #eff6ff;
    color: #1d4ed8;
}

.plan-premium {
    background: #ecfdf5;
    color: #0f766e;
}

.plan-ultra {
    background: #fff1f2;
    color: #be123c;
}

.plan-experience-card {
    height: auto;
    overflow: hidden;
}

.plan-experience-card::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -80px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(37,99,235,.08);
    pointer-events: none;
}

.plan-experience-card.plan-ultra::after {
    background: rgba(244,63,94,.14);
}

.empty-subscription {
    text-align: center;
    padding: 28px 10px;
}

.empty-subscription i {
    font-size: 48px;
    color: #ef4444;
    margin-bottom: 18px;
}

.empty-subscription h3 {
    font-size: 24px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
}

.empty-subscription p,
.subscription-note {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 24px;
}

.subscription-progress-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.time-box {
    border-radius: 24px;
    padding: 24px 18px;
    text-align: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.time-box strong {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #0f766e;
    line-height: 1;
}

.time-box span {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-weight: 800;
}

.subscription-note {
    margin-top: 22px;
    margin-bottom: 0;
}

.quick-action-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.quick-action-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    text-decoration: none;
    font-weight: 800;
    transition: .25s;
}

.quick-action-list a i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: #ecfdf5;
    color: #0f766e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.quick-action-list a span {
    flex: 1;
}

.quick-action-list a em {
    color: #94a3b8;
    font-style: normal;
}

.quick-action-list a:hover {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    transform: translateX(4px);
}

.quick-action-list a:hover i {
    background: rgba(255,255,255,.18);
    color: #fff;
}

.quick-action-list a:hover em {
    color: #fff;
}

@media (max-width: 991px) {
    .dashboard-home-section {
        padding: 30px 0 50px;
    }

    .dashboard-hero-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
        border-radius: 26px;
    }

    .subscription-progress-area {
        grid-template-columns: 1fr;
    }

    .subscription-modern-card,
    .quick-actions-card {
        padding: 26px;
        border-radius: 26px;
    }
}

@media (max-width: 575px) {
    .dash-stat-card {
        padding: 20px;
        border-radius: 22px;
    }

    .dashboard-primary-btn {
        width: 100%;
    }

    .subscription-header {
        flex-direction: column;
    }
}

/*-- Global Dashboard --*/

:root {
    --main-color: #0f766e;
    --second-color: #14b8a6;
    --dark-color: #0f172a;
    --muted-color: #64748b;
    --soft-bg: #f8fafc;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: Inter, Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(20,184,166,.10), transparent 34%),
        linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    color: var(--dark-color);
}

/* scrollbar */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    border-radius: 999px;
}

/* selection */

::selection {
    background: #14b8a6;
    color: #fff;
}

/* links */

a {
    transition: .25s;
}

/* bootstrap fixes */

.container {
    position: relative;
    z-index: 2;
}

.btn:focus,
.form-control:focus {
    box-shadow: none !important;
}

/* cards */

.glass-card {
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(15,23,42,.10);
}

/* titles */

.section-title-modern {
    margin-bottom: 26px;
}

.section-title-modern span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #0f766e;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 12px;
}

.section-title-modern h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
}

.section-title-modern p {
    color: #64748b;
    line-height: 1.8;
}

/* inputs */

.form-control {
    height: 54px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0 16px;
    color: #0f172a;
}

.form-control:focus {
    border-color: #14b8a6;
}

textarea.form-control {
    min-height: 130px;
    padding-top: 14px;
}

/* buttons */

.dashboard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 36px rgba(20,184,166,.28);
    transition: .25s;
}

.dashboard-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* tables */

.table-modern {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15,23,42,.08);
}

.table-modern table {
    margin: 0;
}

.table-modern thead {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
}

.table-modern thead th {
    border: 0 !important;
    padding: 18px;
    font-weight: 800;
}

.table-modern tbody td {
    padding: 18px;
    border-color: #f1f5f9;
    vertical-align: middle;
}

/* badges */

.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.badge-success-modern {
    background: #ecfdf5;
    color: #0f766e;
}

.badge-danger-modern {
    background: #fef2f2;
    color: #b91c1c;
}

.badge-warning-modern {
    background: #fff7ed;
    color: #c2410c;
}

/* responsive */

@media (max-width: 991px) {

    body {
        overflow-x: hidden;
    }

}


/*-- Dashboard Footer --*/

.dashboard-footer {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    background:
        radial-gradient(circle at top left, rgba(20,184,166,.22), transparent 32%),
        linear-gradient(135deg, #0f172a 0%, #111827 52%, #020617 100%);
    color: #fff;
    padding-top: 44px;
}

.dashboard-footer-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: .28;
    pointer-events: none;
}

.dashboard-footer-glow-1 {
    width: 260px;
    height: 260px;
    background: #14b8a6;
    left: -100px;
    top: 20px;
}

.dashboard-footer-glow-2 {
    width: 320px;
    height: 320px;
    background: #38bdf8;
    right: -120px;
    bottom: -120px;
}

.dashboard-footer-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.dashboard-footer-left {
    max-width: 500px;
}

.dashboard-footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-logo-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 18px 34px rgba(20,184,166,.28);
}

.dashboard-footer-logo strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
}

.dashboard-footer-logo span {
    display: block;
    color: rgba(255,255,255,.64);
    font-size: 14px;
    margin-top: 4px;
}

.dashboard-footer-left p {
    color: rgba(255,255,255,.74);
    line-height: 1.8;
    margin: 0;
}

.dashboard-footer-right {
    display: flex;
    align-items: center;
}

.dashboard-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.dashboard-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.84);
    text-decoration: none;
    font-weight: 800;
    transition: .25s;
}

.dashboard-footer-links a:hover {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    transform: translateY(-3px);
}

.dashboard-footer-bottom {
    position: relative;
    z-index: 2;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.64);
    font-size: 14px;
}

.dashboard-footer-version {
    color: #5eead4;
    font-weight: 800;
}

.dashboard-scrollup {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 18px 36px rgba(20,184,166,.32);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: .25s;
}

.dashboard-scrollup.show {
    opacity: 1;
    visibility: visible;
}

.dashboard-scrollup:hover {
    color: #fff;
    transform: translateY(-4px);
}

@media (max-width: 991px) {

    .dashboard-footer-inner {
        flex-direction: column;
    }

    .dashboard-footer-links {
        width: 100%;
    }

    .dashboard-footer-links a {
        flex: 1 1 calc(50% - 10px);
        justify-content: center;
    }

}

@media (max-width: 575px) {

    .dashboard-footer {
        margin-top: 40px;
    }

    .dashboard-footer-links {
        flex-direction: column;
    }

    .dashboard-footer-links a {
        width: 100%;
    }

    .dashboard-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}


/*-- Dashboard Channels --*/

.dashboard-channel-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    padding: 46px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(20,184,166,.18), transparent 34%),
        linear-gradient(135deg, #f8fafc 0%, #ecfeff 48%, #ffffff 100%);
}

.dashboard-page-hero {
    position: relative;
    z-index: 2;
    padding: 38px;
    border-radius: 34px;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(255,255,255,.8);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(15,23,42,.10);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.dashboard-page-hero h1 {
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
}

.dashboard-page-hero p {
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.channel-locked-card {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 30px auto 0;
    padding: 48px;
    border-radius: 34px;
    text-align: center;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(15,23,42,.10);
}

.locked-icon {
    width: 84px;
    height: 84px;
    border-radius: 28px;
    margin: 0 auto 24px;
    background: #fef2f2;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.channel-locked-card h2 {
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 14px;
}

.channel-locked-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 28px;
}

.channel-toolbar {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    padding: 28px;
    border-radius: 30px;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(255,255,255,.8);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(15,23,42,.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.channel-toolbar h2 {
    font-size: 30px;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
}

.channel-search-box {
    width: 320px;
    height: 54px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
}

.channel-search-box i {
    color: #0f766e;
}

.channel-search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #0f172a;
    font-weight: 700;
}

.channel-card {
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 24px 70px rgba(15,23,42,.10);
    transition: .25s;
}

.channel-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 90px rgba(15,23,42,.16);
}

.channel-image {
    position: relative;
    display: block;
    height: 190px;
    background: #f8fafc;
    overflow: hidden;
}

.channel-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 28px;
    transition: .35s;
}

.channel-card:hover .channel-image img {
    transform: scale(1.06);
}

.channel-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(15,23,42,.50));
    opacity: 0;
    transition: .25s;
}

.channel-card:hover .channel-image::after {
    opacity: 1;
}

.channel-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(.8);
    opacity: 0;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 36px rgba(20,184,166,.34);
    transition: .25s;
}

.channel-card:hover .channel-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.channel-card-body {
    padding: 22px;
}

.channel-card-body h3 {
    font-size: 20px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 16px;
}

.channel-watch-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #0f766e;
    text-decoration: none;
    font-weight: 900;
    transition: .25s;
}

.channel-watch-btn:hover {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
}

.channel-watch-card {
    position: relative;
    z-index: 2;
    padding: 32px;
    border-radius: 34px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(15,23,42,.10);
}

.channel-watch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    margin-bottom: 24px;
}

.channel-watch-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #0f172a;
    margin: 0;
}

.channel-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: 999px;
    background: #f8fafc;
    color: #0f766e;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid #e2e8f0;
    white-space: nowrap;
}

.channel-back-btn:hover {
    background: #0f766e;
    color: #fff;
}

.channel-player-box {
    overflow: hidden;
    border-radius: 26px;
    background: #020617;
    min-height: 420px;
}

.channel-player-box iframe,
.channel-player-box video,
.channel-player-box embed,
.channel-player-box object {
    width: 100%;
    min-height: 420px;
    border: 0;
}

.no-channel-result {
    display: none;
    position: relative;
    z-index: 2;
    margin-top: 24px;
    text-align: center;
    padding: 38px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15,23,42,.08);
}

.no-channel-result i {
    font-size: 40px;
    color: #0f766e;
    margin-bottom: 14px;
}

.no-channel-result h3 {
    font-weight: 900;
    color: #0f172a;
}

.no-channel-result p {
    color: #64748b;
    margin: 0;
}

@media (max-width: 991px) {
    .dashboard-page-hero,
    .channel-toolbar,
    .channel-watch-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-page-action,
    .dashboard-page-action .dashboard-primary-btn,
    .channel-search-box,
    .channel-back-btn {
        width: 100%;
    }

    .channel-watch-card,
    .channel-locked-card {
        padding: 26px;
        border-radius: 26px;
    }
}

@media (max-width: 575px) {
    .dashboard-channel-section {
        padding: 30px 0 50px;
    }

    .dashboard-page-hero,
    .channel-toolbar {
        padding: 24px;
        border-radius: 24px;
    }

    .channel-image {
        height: 160px;
    }

    .channel-player-box,
    .channel-player-box iframe,
    .channel-player-box video,
    .channel-player-box embed,
    .channel-player-box object {
        min-height: 260px;
    }
}



/*-- Premium Channels --*/

/* =========================================================
   PREMIUM CHANNEL PAGE
========================================================= */

.premium-channel-section{
    position:relative;
    min-height:100vh;
    padding:70px 0;
    background:
        radial-gradient(circle at top left, rgba(245,158,11,.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(37,99,235,.14), transparent 32%),
        linear-gradient(135deg,#f8fafc 0%,#eef2ff 100%);
    overflow:hidden;
}

.premium-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(6px);
    opacity:.55;
    pointer-events:none;
}

.premium-shape-1{
    width:260px;
    height:260px;
    top:80px;
    right:-90px;
    background:rgba(245,158,11,.22);
}

.premium-shape-2{
    width:220px;
    height:220px;
    left:-80px;
    bottom:90px;
    background:rgba(37,99,235,.16);
}

.premium-page-hero{
    position:relative;
    z-index:1;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
    padding:34px;
    margin-bottom:32px;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(16px);
    border:1px solid rgba(226,232,240,.9);
    border-radius:28px;
    box-shadow:0 22px 55px rgba(15,23,42,.08);
}

.premium-badge,
.premium-mini-title{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#b45309;
    background:#fffbeb;
    border:1px solid #fde68a;
    padding:8px 13px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:14px;
}

.premium-page-hero h1{
    font-size:38px;
    font-weight:800;
    color:#0f172a;
    margin:0 0 10px;
}

.premium-page-hero p{
    max-width:650px;
    color:#64748b;
    font-size:16px;
    line-height:1.7;
    margin:0;
}

.premium-primary-btn,
.premium-watch-btn,
.premium-back-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:none;
    text-decoration:none;
    border-radius:999px;
    font-weight:700;
    transition:.25s ease;
}

.premium-primary-btn{
    color:#fff;
    background:linear-gradient(135deg,#f59e0b,#d97706);
    padding:13px 20px;
    box-shadow:0 12px 26px rgba(217,119,6,.22);
}

.premium-primary-btn:hover{
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 18px 34px rgba(217,119,6,.3);
}

.premium-channel-toolbar{
    position:relative;
    z-index:1;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:26px;
}

.premium-channel-toolbar h2{
    font-size:28px;
    font-weight:800;
    color:#0f172a;
    margin:0;
}

.premium-search-box{
    min-width:290px;
    height:50px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 16px;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(15,23,42,.06);
}

.premium-search-box i{
    color:#94a3b8;
}

.premium-search-box input{
    width:100%;
    border:none;
    outline:none;
    color:#0f172a;
    font-size:14px;
    background:transparent;
}

.premium-channel-card{
    height:100%;
    background:#fff;
    border-radius:26px;
    overflow:hidden;
    border:1px solid #e2e8f0;
    box-shadow:0 18px 44px rgba(15,23,42,.08);
    transition:.25s ease;
}

.premium-channel-card:hover{
    transform:translateY(-6px);
    box-shadow:0 28px 65px rgba(15,23,42,.14);
}

.premium-channel-image{
    position:relative;
    display:block;
    height:190px;
    overflow:hidden;
    background:#0f172a;
}

.premium-channel-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s ease;
}

.premium-channel-card:hover .premium-channel-image img{
    transform:scale(1.07);
    opacity:.78;
}

.premium-ribbon{
    position:absolute;
    top:14px;
    left:14px;
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:7px 11px;
    border-radius:999px;
    background:rgba(245,158,11,.94);
    color:#fff;
    font-size:12px;
    font-weight:800;
    z-index:2;
}

.premium-channel-play{
    position:absolute;
    inset:0;
    margin:auto;
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.92);
    color:#d97706;
    font-size:20px;
    transform:scale(.88);
    opacity:0;
    transition:.25s ease;
}

.premium-channel-card:hover .premium-channel-play{
    opacity:1;
    transform:scale(1);
}

.premium-channel-card-body{
    padding:20px;
}

.premium-channel-card-body h3{
    min-height:46px;
    color:#0f172a;
    font-size:18px;
    font-weight:800;
    line-height:1.35;
    margin:0 0 18px;
}

.premium-watch-btn{
    width:100%;
    padding:12px 16px;
    color:#92400e;
    background:#fffbeb;
    border:1px solid #fde68a;
}

.premium-watch-btn:hover{
    color:#fff;
    background:#f59e0b;
}

.premium-watch-card{
    position:relative;
    z-index:1;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 22px 60px rgba(15,23,42,.1);
}

.premium-watch-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:26px;
    border-bottom:1px solid #e2e8f0;
    background:linear-gradient(135deg,#ffffff,#fffbeb);
}

.premium-watch-header h2{
    color:#0f172a;
    font-size:26px;
    font-weight:800;
    margin:0;
}

.premium-back-btn{
    padding:11px 17px;
    color:#334155;
    background:#fff;
    border:1px solid #e2e8f0;
}

.premium-back-btn:hover{
    color:#d97706;
    border-color:#fbbf24;
}

.premium-player-box{
    padding:24px;
    background:#0f172a;
}

.premium-player-box iframe,
.premium-player-box video{
    width:100%;
    min-height:480px;
    border:0;
    border-radius:20px;
}

.premium-player-box audio{
    width:100%;
}

.premium-locked-card,
.premium-empty-card,
.premium-no-result{
    position:relative;
    z-index:1;
    max-width:760px;
    margin:35px auto 0;
    padding:42px;
    text-align:center;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:30px;
    box-shadow:0 22px 55px rgba(15,23,42,.08);
}

.premium-locked-icon,
.premium-empty-card i,
.premium-no-result i{
    width:74px;
    height:74px;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:24px;
    background:#fffbeb;
    color:#d97706;
    font-size:30px;
}

.premium-locked-card h2,
.premium-empty-card h3,
.premium-no-result h3{
    color:#0f172a;
    font-size:26px;
    font-weight:800;
    margin-bottom:12px;
}

.premium-locked-card p,
.premium-empty-card p,
.premium-no-result p{
    color:#64748b;
    font-size:15px;
    line-height:1.7;
    margin-bottom:22px;
}

.premium-no-result{
    display:none;
}

@media(max-width:992px){
    .premium-page-hero,
    .premium-channel-toolbar,
    .premium-watch-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .premium-search-box{
        width:100%;
        min-width:100%;
    }

    .premium-page-hero h1{
        font-size:32px;
    }
}

@media(max-width:576px){
    .premium-channel-section{
        padding:45px 0;
    }

    .premium-page-hero{
        padding:24px;
        border-radius:24px;
    }

    .premium-page-hero h1{
        font-size:28px;
    }

    .premium-channel-image{
        height:170px;
    }

    .premium-player-box{
        padding:14px;
    }

    .premium-player-box iframe,
    .premium-player-box video{
        min-height:260px;
    }

    .premium-locked-card,
    .premium-empty-card,
    .premium-no-result{
        padding:28px 20px;
        border-radius:24px;
    }
}


/*-- Edit Profile --*/

.dashboard-profile-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    padding: 46px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(20,184,166,.16), transparent 34%),
        linear-gradient(135deg, #f8fafc 0%, #ecfeff 48%, #ffffff 100%);
}

.profile-hero-card {
    align-items: center;
}

.profile-hero-avatar {
    width: 110px;
    height: 110px;
    border-radius: 34px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 900;
    box-shadow: 0 24px 60px rgba(20,184,166,.30);
}

.profile-side-card,
.profile-form-card {
    position: relative;
    z-index: 2;
    border-radius: 34px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(15,23,42,.10);
}

.profile-side-card {
    padding: 34px;
    text-align: center;
    height: 100%;
}

.profile-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 36px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    font-weight: 900;
    box-shadow: 0 24px 60px rgba(20,184,166,.30);
}

.profile-side-card h3 {
    font-size: 30px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 8px;
}

.profile-username {
    display: inline-block;
    margin-bottom: 28px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #0f766e;
    font-size: 14px;
    font-weight: 900;
}

.profile-mini-info {
    display: grid;
    gap: 16px;
}

.profile-mini-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    padding: 18px;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.profile-mini-item i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #ecfdf5;
    color: #0f766e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-mini-item strong {
    display: block;
    font-size: 15px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 4px;
}

.profile-mini-item span {
    display: block;
    color: #64748b;
    word-break: break-word;
}

.profile-form-card {
    padding: 34px;
}

.profile-form-header {
    margin-bottom: 28px;
}

.profile-form-header h2 {
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
}

.profile-label {
    display: block;
    margin-bottom: 10px;
    color: #0f172a;
    font-weight: 800;
}

.profile-input-wrap,
.profile-disabled-input {
    position: relative;
}

.profile-input-wrap i,
.profile-disabled-input i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #0f766e;
    z-index: 2;
}

.profile-input-wrap .form-control,
.profile-disabled-input input {
    height: 58px;
    border-radius: 18px;
    padding-left: 52px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-weight: 700;
}

.profile-disabled-input input {
    width: 100%;
    background: #f8fafc;
    color: #64748b;
    cursor: not-allowed;
}

.profile-save-btn {
    width: 100%;
    height: 58px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 20px 40px rgba(20,184,166,.30);
    transition: .25s;
}

.profile-save-btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 991px) {

    .profile-side-card,
    .profile-form-card {
        border-radius: 28px;
    }

    .profile-form-card {
        padding: 28px;
    }

    .profile-hero-card {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 575px) {

    .dashboard-profile-section {
        padding: 30px 0 50px;
    }

    .profile-side-card,
    .profile-form-card {
        padding: 22px;
        border-radius: 24px;
    }

    .profile-avatar-large {
        width: 100px;
        height: 100px;
        font-size: 38px;
    }

    .profile-form-header h2 {
        font-size: 28px;
    }

}


/*-- Change Password --*/

.dashboard-password-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    padding: 46px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(20,184,166,.16), transparent 34%),
        linear-gradient(135deg, #f8fafc 0%, #ecfeff 48%, #ffffff 100%);
}

.password-hero-card {
    align-items: center;
}

.password-hero-icon {
    width: 110px;
    height: 110px;
    border-radius: 34px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: 0 24px 60px rgba(20,184,166,.30);
}

.password-info-card,
.password-form-card {
    position: relative;
    z-index: 2;
    height: 100%;
    border-radius: 34px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(15,23,42,.10);
}

.password-info-card {
    padding: 34px;
}

.password-info-icon {
    width: 76px;
    height: 76px;
    border-radius: 26px;
    background: #ecfdf5;
    color: #0f766e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 24px;
}

.password-info-card h3 {
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 22px;
}

.password-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.password-info-card li {
    display: flex;
    gap: 12px;
    color: #475569;
    line-height: 1.7;
    font-weight: 700;
}

.password-info-card li i {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #ecfdf5;
    color: #0f766e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.password-form-card {
    padding: 34px;
}

.password-form-header {
    margin-bottom: 28px;
}

.password-form-header h2 {
    font-size: 34px;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
}

.password-label {
    display: block;
    margin-bottom: 10px;
    color: #0f172a;
    font-weight: 800;
}

.password-input-wrap {
    position: relative;
}

.password-input-wrap > i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #0f766e;
    z-index: 2;
}

.password-input-wrap .form-control {
    height: 58px;
    border-radius: 18px;
    padding-left: 52px;
    padding-right: 52px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-weight: 700;
}

.password-eye-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #ecfdf5;
    color: #0f766e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-save-btn {
    width: 100%;
    height: 58px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 20px 40px rgba(20,184,166,.30);
    transition: .25s;
}

.password-save-btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .password-hero-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .password-info-card,
    .password-form-card {
        border-radius: 28px;
        padding: 28px;
    }
}

@media (max-width: 575px) {
    .dashboard-password-section {
        padding: 30px 0 50px;
    }

    .password-info-card,
    .password-form-card {
        padding: 22px;
        border-radius: 24px;
    }

    .password-form-header h2 {
        font-size: 28px;
    }
}

/*-- NAV MENU --*/
.dashboard-navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 9999;
    overflow: visible;
}


/*-- Upgrade Plans --*/

.dashboard-upgrade-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    padding: 46px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(20,184,166,.16), transparent 34%),
        linear-gradient(135deg, #f8fafc 0%, #ecfeff 48%, #ffffff 100%);
}

.upgrade-hero-card {
    align-items: center;
}

.upgrade-hero-icon {
    width: 110px;
    height: 110px;
    border-radius: 34px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: 0 24px 60px rgba(20,184,166,.30);
}

.upgrade-top-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 28px 0;
}

.upgrade-info-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(15,23,42,.08);
}

.upgrade-info-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: #ecfdf5;
    color: #0f766e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.upgrade-info-box strong {
    display: block;
    color: #0f172a;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 4px;
}

.upgrade-info-box span {
    display: block;
    color: #64748b;
    line-height: 1.6;
}

.upgrade-plan-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 34px 28px;
    border-radius: 34px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(15,23,42,.10);
    transition: .30s;
}

.upgrade-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 90px rgba(15,23,42,.16);
}

.featured-plan {
    border: 2px solid rgba(20,184,166,.30);
    transform: scale(1.03);
}

.featured-plan:hover {
    transform: scale(1.03) translateY(-8px);
}

.featured-badge {
    position: absolute;
    right: -34px;
    top: 24px;
    transform: rotate(45deg);
    width: 160px;
    text-align: center;
    padding: 8px 0;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(20,184,166,.30);
}

.upgrade-plan-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.upgrade-plan-icon {
    width: 68px;
    height: 68px;
    border-radius: 24px;
    background: #ecfdf5;
    color: #0f766e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.upgrade-plan-badge {
    padding: 10px 14px;
    border-radius: 999px;
    background: #f8fafc;
    color: #0f766e;
    font-size: 12px;
    font-weight: 900;
}

.upgrade-plan-card h3 {
    font-size: 30px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 14px;
}

.upgrade-plan-price {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 12px;
}

.upgrade-plan-price strong {
    font-size: 56px;
    line-height: 1;
    font-weight: 900;
    color: #0f172a;
}

.upgrade-plan-price span {
    color: #64748b;
    font-weight: 800;
    margin-bottom: 10px;
}

.upgrade-plan-duration {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f8fafc;
    color: #475569;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 24px;
}

.upgrade-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 14px;
}

.upgrade-feature-list li {
    display: flex;
    gap: 12px;
    color: #475569;
    font-weight: 700;
    line-height: 1.7;
}

.upgrade-feature-list li i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #0f766e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.upgrade-plan-btn {
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 18px 36px rgba(20,184,166,.28);
    transition: .25s;
}

.upgrade-plan-btn:hover {
    transform: translateY(-3px);
}

.starter .upgrade-plan-icon {
    background: #fef3c7;
    color: #d97706;
}

.standard .upgrade-plan-icon {
    background: #dbeafe;
    color: #2563eb;
}

.premium .upgrade-plan-icon {
    background: #ede9fe;
    color: #7c3aed;
}

.ultra .upgrade-plan-icon {
    background: #fee2e2;
    color: #dc2626;
}

@media (max-width: 1199px) {

    .upgrade-top-info {
        grid-template-columns: 1fr;
    }

    .featured-plan {
        transform: none;
    }

    .featured-plan:hover {
        transform: translateY(-8px);
    }

}

@media (max-width: 991px) {

    .upgrade-hero-card {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 575px) {

    .dashboard-upgrade-section {
        padding: 30px 0 50px;
    }

    .upgrade-plan-card {
        padding: 26px 22px;
        border-radius: 28px;
    }

    .upgrade-plan-price strong {
        font-size: 46px;
    }

}



/* Dashboard Channel Library - Bootstrap 5 compatible */

.dashboard-channel-section {
    position: relative;
    min-height: 100vh;
    padding: 40px 0 70px;
    background: linear-gradient(135deg, #07111f 0%, #101827 45%, #1b1027 100%);
    overflow: hidden;
    color: #fff;
}

.dashboard-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .35;
    pointer-events: none;
}

.dashboard-shape-1 {
    width: 320px;
    height: 320px;
    background: #0d6efd;
    top: -90px;
    left: -80px;
}

.dashboard-shape-2 {
    width: 280px;
    height: 280px;
    background: #dc3545;
    right: -80px;
    bottom: 80px;
}

.glass-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 22px;
}

.dashboard-page-hero {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    padding: 28px 30px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
}

.dashboard-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.dashboard-page-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -.5px;
}

.dashboard-page-hero p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
}

.search-section-title {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.search-section-title h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.search-section-title h3::after {
    content: "";
    display: block;
    width: 55px;
    height: 4px;
    margin-top: 9px;
    border-radius: 20px;
    background: #0d6efd;
}

.search-channel-grid {
    position: relative;
    z-index: 2;
}

.search-channel-card {
    height: 100%;
    overflow: hidden;
    transition: all .25s ease;
}

.search-channel-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 255, 255, .25);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

.search-channel-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(0, 0, 0, .25);
}

.search-channel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.search-channel-card:hover .search-channel-image img {
    transform: scale(1.06);
}

.search-live-dot {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #dc3545;
    box-shadow: 0 0 0 6px rgba(220, 53, 69, .22);
}

.search-channel-body {
    padding: 18px;
}

.search-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.search-card-badges span {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 700;
}

.search-card-badges .is-premium {
    background: rgba(255, 193, 7, .18);
    color: #ffc107;
}

.search-card-badges .is-basic {
    background: rgba(13, 110, 253, .18);
    color: #7eb2ff;
}

.search-channel-body h3 {
    min-height: 48px;
    margin: 0 0 16px;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
}

.search-watch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 14px;
    border-radius: 14px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    transition: all .2s ease;
}

.search-watch-btn:hover {
    background: #0b5ed7;
    color: #fff;
    transform: translateY(-1px);
}

.search-empty-state {
    position: relative;
    z-index: 2;
    padding: 45px 25px;
    text-align: center;
    color: #fff;
}

.search-empty-state i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #ff4d6d;
    font-size: 34px;
}

.search-empty-state h2 {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 800;
}

.search-empty-state p {
    max-width: 520px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
}

/* Responsive */
@media (max-width: 767px) {
    .dashboard-channel-section {
        padding: 25px 0 50px;
    }

    .dashboard-page-hero {
        padding: 22px;
        margin-bottom: 28px;
    }

    .dashboard-page-hero h1 {
        font-size: 28px;
    }

    .dashboard-page-hero p {
        font-size: 14px;
    }

    .search-section-title h3 {
        font-size: 21px;
    }

    .search-channel-body h3 {
        min-height: auto;
        font-size: 18px;
    }
}
body{
    padding-bottom:env(safe-area-inset-bottom);
}

.dashboard-mobile-bottom-nav{
    display:none;
}

@media(max-width:768px){
    .dashboard-mobile-bottom-nav{
        position:fixed;
        left:0;
        right:0;
        bottom:0;
        z-index:1004;
        display:grid;
        grid-template-columns:repeat(4,1fr);
        padding:8px 10px calc(8px + env(safe-area-inset-bottom));
        background:rgba(15,23,42,.92);
        backdrop-filter:blur(18px);
    }

    .dashboard-mobile-bottom-nav a{
        color:#fff;
        text-align:center;
        font-size:12px;
        text-decoration:none;
        font-weight:800;
    }

    .dashboard-mobile-bottom-nav i{
        display:block;
        margin-bottom:3px;
        font-size:17px;
    }
}

/*
 * billing-modern.css
 * Dashboard checkout / manual-payment / invoices sayfaları için modern ödeme tasarımı.
 */

.billing-page {
    position: relative;
    overflow: hidden;
}

.billing-bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: .45;
    pointer-events: none;
}

.billing-bg-orb-1 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(37,99,235,.28), transparent 68%);
    left: -80px;
    top: 40px;
}

.billing-bg-orb-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(16,185,129,.2), transparent 68%);
    right: -110px;
    top: 160px;
}

.billing-page .container {
    position: relative;
    z-index: 1;
}

.billing-hero {
    background: linear-gradient(135deg, rgba(15,23,42,.96), rgba(30,41,59,.92));
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    padding: 28px;
    margin-bottom: 24px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    box-shadow: 0 24px 70px rgba(15,23,42,.22);
}

.billing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    color: #bfdbfe;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.billing-hero h1 {
    color: #fff;
    margin: 14px 0 8px;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
}

.billing-hero p {
    margin: 0;
    color: #cbd5e1;
    max-width: 680px;
}

.billing-provider-card {
    min-width: 260px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.billing-provider-card span,
.billing-provider-card small {
    color: #cbd5e1;
}

.billing-provider-card strong {
    color: #fff;
    font-size: 20px;
    margin: 8px 0 5px;
}

.billing-checkout-grid {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
    gap: 20px;
    align-items: start;
}

.billing-card {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 24px;
    box-shadow: 0 18px 55px rgba(15,23,42,.09);
    padding: 22px;
}

.billing-card-head {
    margin-bottom: 18px;
}

.billing-card-head.horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.billing-card-head span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.billing-card-head h2 {
    margin: 6px 0 0;
    color: #0f172a;
    font-weight: 900;
    font-size: 23px;
}

.billing-price-box {
    background: linear-gradient(135deg, #eff6ff, #ecfdf5);
    border: 1px solid #dbeafe;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 18px;
}

.billing-price-box strong {
    display: block;
    color: #0f172a;
    font-size: 32px;
    font-weight: 900;
}

.billing-price-box span {
    color: #64748b;
    font-weight: 700;
}

.billing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 10px;
}

.billing-feature-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #334155;
    font-weight: 700;
}

.billing-feature-list i {
    color: #16a34a;
}

.billing-manual-info,
.billing-iban-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 18px;
    padding: 16px;
    color: #78350f;
    line-height: 1.6;
}

.billing-manual-info strong {
    display: block;
    margin-bottom: 8px;
}

.billing-form {
    display: grid;
    gap: 14px;
}

.billing-form-row label {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 6px;
}

.billing-coupon-row {
    display: flex;
    gap: 8px;
}

.billing-coupon-row input {
    flex: 1;
}

.billing-total-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 16px;
    display: grid;
    gap: 10px;
}

.billing-total-box div {
    display: flex;
    justify-content: space-between;
    color: #475569;
}

.billing-total-box strong {
    color: #0f172a;
}

.billing-total-box .total {
    border-top: 1px solid #e5e7eb;
    padding-top: 12px;
    margin-top: 4px;
    font-size: 18px;
}

.billing-total-box .total strong {
    color: #16a34a;
    font-size: 24px;
}

.billing-primary-btn,
.billing-link-btn,
.billing-small-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 900;
    transition: .2s ease;
}

.billing-primary-btn {
    width: 100%;
    padding: 13px 18px;
    background: linear-gradient(135deg, #2563eb, #16a34a);
    color: #fff;
}

.billing-primary-btn:hover,
.billing-link-btn:hover,
.billing-small-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.billing-link-btn {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    padding: 10px 13px;
    margin-top: 12px;
}

.billing-small-btn {
    background: #f0fdf4;
    color: #047857;
    border: 1px solid #bbf7d0;
    padding: 7px 10px;
    font-size: 12px;
}

.billing-alert {
    border-radius: 16px;
    margin-bottom: 18px;
}

.billing-table {
    margin-bottom: 0;
}

.billing-table thead th {
    background: #f8fafc;
    color: #475569;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-bottom: 1px solid #e5e7eb;
    padding: 13px 14px;
    white-space: nowrap;
}

.billing-table tbody td {
    padding: 14px;
    vertical-align: middle;
    border-bottom: 1px solid #eef2f7;
}

.billing-table tbody tr:hover {
    background: #f8fafc;
}

.billing-status {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 900;
    font-size: 12px;
}

.status-paid,
.status-approved {
    background: #dcfce7;
    color: #166534;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-rejected,
.status-cancelled,
.status-failed {
    background: #fee2e2;
    color: #991b1b;
}

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

.billing-mini-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 14px 40px rgba(15,23,42,.06);
}

.billing-mini-card i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    color: #fff;
    margin-bottom: 12px;
}

.billing-mini-card span {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
}

.billing-mini-card strong {
    display: block;
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
    margin-top: 4px;
}

@media (max-width: 992px) {
    .billing-hero,
    .billing-card-head.horizontal {
        flex-direction: column;
        align-items: flex-start;
    }

    .billing-provider-card {
        width: 100%;
    }

    .billing-checkout-grid,
    .billing-summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .billing-hero {
        padding: 22px;
        border-radius: 22px;
    }

    .billing-card {
        padding: 18px;
    }

    .billing-coupon-row {
        flex-direction: column;
    }
}

.user-invoice-page {
    background: #f4f7fb;
}

.user-invoice-actions {
    max-width: 1080px;
    margin: 0 auto 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.primary-print-btn {
    border: 0;
    cursor: pointer;
}

.user-invoice-shell {
    max-width: 1080px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.user-invoice-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.25), transparent 34%), linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
}

.user-invoice-logo {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.user-invoice-logo i {
    font-size: 25px;
}

.user-invoice-hero h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.user-invoice-hero p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.user-invoice-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.user-invoice-meta strong {
    display: block;
    margin-top: 12px;
    font-size: 21px;
}

.user-invoice-meta small {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
}

.user-invoice-status {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-invoice-status.status-paid {
    color: #dcfce7;
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.user-invoice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 24px 32px 0;
}

.user-invoice-card {
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 22px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.user-invoice-card span,
.user-invoice-note span {
    display: block;
    margin-bottom: 9px;
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.user-invoice-card h3 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

.user-invoice-card p {
    margin: 8px 0 0;
    color: #475569;
    font-size: 14px;
}

.user-invoice-card i {
    width: 22px;
    color: #2563eb;
}

.user-invoice-table-card {
    margin: 22px 32px;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
}

.user-invoice-section-title {
    padding: 20px 22px;
    border-bottom: 1px solid #e5e7eb;
    background: #f8fafc;
}

.user-invoice-section-title span {
    color: #2563eb;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.user-invoice-section-title h2 {
    margin: 5px 0 0;
    font-size: 20px;
    color: #0f172a;
    font-weight: 900;
}

.user-invoice-table {
    margin: 0;
}

.user-invoice-table thead th {
    padding: 14px 22px;
    background: #ffffff;
    color: #64748b;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    border-bottom: 1px solid #e5e7eb;
}

.user-invoice-table tbody td {
    padding: 18px 22px;
    color: #334155;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
}

.user-invoice-table tbody td strong {
    display: block;
    color: #0f172a;
    font-size: 15px;
}

.user-invoice-table tbody td small {
    display: block;
    margin-top: 4px;
    color: #94a3b8;
}

.user-invoice-total-box {
    width: 340px;
    margin-left: auto;
    padding: 18px 22px 22px;
}

.user-invoice-total-box > div {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    color: #475569;
}

.user-invoice-total-box strong {
    color: #0f172a;
}

.user-invoice-total-box .grand {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
}

.user-invoice-total-box .grand span {
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
}

.user-invoice-total-box .grand strong {
    font-size: 24px;
    font-weight: 900;
    color: #2563eb;
}

.user-invoice-note {
    margin: 0 32px 22px;
    padding: 20px 22px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.user-invoice-note p {
    margin: 0;
    color: #334155;
    line-height: 1.7;
}

.user-invoice-footer {
    padding: 18px 32px 28px;
    color: #94a3b8;
    font-size: 13px;
    text-align: center;
}

.billing-small-btn-warning {
    background: #f59e0b !important;
    color: #fff !important;
}

.billing-small-btn-success {
    background: #16a34a !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .user-invoice-hero {
        flex-direction: column;
        padding: 26px;
    }

    .user-invoice-meta {
        text-align: left;
        align-items: flex-start;
    }

    .user-invoice-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .user-invoice-table-card {
        margin: 20px;
    }

    .user-invoice-total-box {
        width: 100%;
    }

    .user-invoice-note {
        margin: 0 20px 20px;
    }
}

@page {
    size: A4;
    margin: 10mm;
}

@media print {
    html,
    body {
        width: 210mm;
        height: 297mm;
        background: #fff !important;
        overflow: hidden !important;
    }

    body {
        zoom: 0.82;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    body * {
        visibility: hidden;
    }

    .invoice-print-area,
    .invoice-print-area * {
        visibility: visible;
    }

    .invoice-print-area {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        max-width: none;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
    }

    .no-print,
    .sidebar,
    .leftpanel,
    .headerbar,
    .navbar,
    .menu,
    .btn,
    footer {
        display: none !important;
    }

    .dashboard-channel-section,
    .billing-page,
    .user-invoice-page,
    .container {
        margin: 0 !important;
        padding: 0 !important;
        max-width: none !important;
        background: #fff !important;
    }

    .user-invoice-hero {
        padding: 20px !important;
        background: #111827 !important;
        color: #fff !important;
    }

    .user-invoice-logo {
        width: 42px !important;
        height: 42px !important;
        margin-bottom: 10px !important;
    }

    .user-invoice-logo i {
        font-size: 18px !important;
    }

    .user-invoice-hero h1 {
        font-size: 26px !important;
    }

    .user-invoice-hero p,
    .user-invoice-meta small {
        font-size: 11px !important;
    }

    .user-invoice-meta strong {
        font-size: 18px !important;
        margin-top: 8px !important;
    }

    .user-invoice-grid {
        gap: 12px !important;
        padding: 14px 18px 0 !important;
    }

    .user-invoice-card {
        padding: 14px !important;
        border-radius: 12px !important;
    }

    .user-invoice-card h3 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }

    .user-invoice-card p {
        margin: 4px 0 0 !important;
        font-size: 12px !important;
    }

    .user-invoice-table-card {
        margin: 14px 18px !important;
        border-radius: 12px !important;
    }

    .user-invoice-section-title {
        padding: 12px 16px !important;
    }

    .user-invoice-section-title h2 {
        font-size: 16px !important;
    }

    .user-invoice-table thead th {
        padding: 10px 14px !important;
        font-size: 11px !important;
    }

    .user-invoice-table tbody td {
        padding: 12px 14px !important;
        font-size: 12px !important;
    }

    .user-invoice-total-box {
        width: 280px !important;
        padding: 10px 14px 14px !important;
    }

    .user-invoice-total-box > div {
        padding: 4px 0 !important;
        font-size: 12px !important;
    }

    .user-invoice-total-box .grand strong {
        font-size: 22px !important;
    }

    .user-invoice-footer {
        padding: 10px 18px 16px !important;
        font-size: 10px !important;
    }

    table,
    tr,
    td,
    th,
    .user-invoice-card,
    .user-invoice-table-card {
        page-break-inside: avoid !important;
    }
}

/* DEVICES */

.devices-page {
    position: relative;
    overflow: hidden;
    background: #f5f7fb;
    min-height: 100vh;
}

.devices-bg {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.22;
    pointer-events: none;
}

.devices-bg-1 {
    top: 40px;
    left: -120px;
    background: #2563eb;
}

.devices-bg-2 {
    right: -120px;
    bottom: 80px;
    background: #7c3aed;
}

.devices-page .container {
    position: relative;
    z-index: 2;
}

.devices-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 24px;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.devices-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.devices-hero h1 {
    margin: 16px 0 8px;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.7px;
}

.devices-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.7;
}

.devices-hero-card {
    min-width: 210px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.devices-hero-card span,
.devices-hero-card small {
    color: rgba(255, 255, 255, 0.68);
}

.devices-hero-card strong {
    font-size: 38px;
    line-height: 1;
    margin: 10px 0;
}

.devices-alert {
    border-radius: 18px;
    border: none;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.devices-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.devices-mini-card {
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.devices-mini-card i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 18px;
    margin-bottom: 14px;
}

.devices-mini-card.success i {
    background: #dcfce7;
    color: #16a34a;
}

.devices-mini-card.danger i {
    background: #fee2e2;
    color: #dc2626;
}

.devices-mini-card.dark i {
    background: #f1f5f9;
    color: #0f172a;
}

.devices-mini-card span {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.devices-mini-card strong {
    display: block;
    margin-top: 6px;
    font-size: 24px;
    font-weight: 900;
    color: #0f172a;
}

.devices-action-card,
.devices-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.devices-action-card {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 24px;
    margin-bottom: 24px;
}

.devices-action-card h2,
.devices-card-head h2 {
    margin: 0;
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
}

.devices-action-card p {
    margin: 7px 0 0;
    color: #64748b;
    line-height: 1.6;
}

.devices-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 15px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff !important;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
    text-decoration: none;
}

.devices-primary-btn.full {
    width: 100%;
}

.devices-card {
    overflow: hidden;
}

.devices-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
    background: #f8fafc;
}

.devices-card-head.compact {
    padding: 22px;
}

.devices-card-head span {
    display: block;
    margin-bottom: 6px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.devices-table-wrap {
    overflow-x: auto;
}

.devices-table {
    margin: 0;
}

.devices-table thead th {
    padding: 16px 20px;
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}

.devices-table tbody td {
    padding: 18px 20px;
    vertical-align: middle;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.device-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.device-name > i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
}

.device-name strong {
    display: block;
    color: #0f172a;
}

.device-name small {
    display: block;
    margin-top: 2px;
    color: #16a34a;
    font-weight: 800;
}

.device-status,
.device-current-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
}

.device-status.active {
    color: #166534;
    background: #dcfce7;
}

.device-status.closed {
    color: #991b1b;
    background: #fee2e2;
}

.device-current-pill {
    color: #1d4ed8;
    background: #dbeafe;
}

.devices-small-btn {
    border: none;
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 900;
}

.devices-small-btn.danger {
    color: #fff;
    background: #ef4444;
}

.side-card {
    padding-bottom: 22px;
}

.badges-wrap {
    padding: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
}

.twofa-box {
    padding: 22px;
    text-align: center;
}

.twofa-box img {
    width: 164px;
    height: 164px;
    padding: 10px;
    background: #fff;
    border-radius: 22px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.twofa-box code {
    display: block;
    margin-top: 16px;
    padding: 12px;
    border-radius: 14px;
    background: #f8fafc;
    color: #0f172a;
    word-break: break-all;
}

.twofa-form {
    padding: 0 22px 22px;
}

.twofa-switch {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #0f172a;
    font-weight: 800;
    cursor: pointer;
}

.twofa-switch input {
    display: none;
}

.twofa-switch span {
    width: 46px;
    height: 26px;
    border-radius: 999px;
    background: #cbd5e1;
    position: relative;
    transition: 0.2s ease;
}

.twofa-switch span::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 3px;
    left: 3px;
    border-radius: 999px;
    background: #fff;
    transition: 0.2s ease;
}

.twofa-switch input:checked + span {
    background: #2563eb;
}

.twofa-switch input:checked + span::after {
    transform: translateX(20px);
}

@media (max-width: 992px) {
    .devices-hero,
    .devices-action-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .devices-hero-card {
        width: 100%;
        text-align: left;
    }

    .devices-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .devices-hero {
        padding: 24px;
        border-radius: 22px;
    }

    .devices-hero h1 {
        font-size: 28px;
    }

    .devices-summary-grid {
        grid-template-columns: 1fr;
    }

    .devices-action-card,
    .devices-card {
        border-radius: 20px;
    }
}


/* DASHBOARD V2 */


.dashboard-home-v2 {
    background: #f4f7fb;
    position: relative;
    overflow: hidden;
}
.home-hero-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.home-kicker {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.home-hero-left h1 {
    font-size: 34px;
    font-weight: 900;
    margin: 16px 0 10px;
}
.home-hero-left p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}
.home-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}
.home-primary-btn,
.home-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 800;
    text-decoration: none !important;
}
.home-primary-btn {
    background: #2563eb;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}
.home-secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.home-plan-card {
    min-width: 230px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-align: right;
}
.home-plan-card span,
.home-plan-card small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
}
.home-plan-card strong {
    display: block;
    font-size: 34px;
    font-weight: 900;
    margin: 8px 0;
}
.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}
.home-stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}
.home-stat-card i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.home-stat-card.success i {
    background: #dcfce7;
    color: #16a34a;
}
.home-stat-card.warning i {
    background: #fef3c7;
    color: #d97706;
}
.home-stat-card.info i {
    background: #e0f2fe;
    color: #0284c7;
}
.home-stat-card.danger i {
    background: #fee2e2;
    color: #dc2626;
}
.home-stat-card span {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.home-stat-card strong {
    display: block;
    margin-top: 6px;
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
}
.home-panel-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.07);
    padding: 24px;
}
.home-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}
.home-card-head span {
    display: block;
    color: #2563eb;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.home-card-head h2 {
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
    margin: 6px 0 0;
}
.home-card-head em {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 22px;
}
.home-card-head.compact {
    align-items: center;
    border-bottom: 1px solid #eef2f7;
    padding-bottom: 16px;
}
.home-card-head.compact a {
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    color: #2563eb;
}
.home-panel-card p {
    color: #64748b;
    line-height: 1.7;
}
.home-progress-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}
.home-progress-row div {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px;
}
.home-progress-row span {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}
.home-progress-row strong {
    display: block;
    margin-top: 6px;
    color: #0f172a;
    font-weight: 900;
}
.home-channel-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.home-channel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border-radius: 18px;
    border: 1px solid #eef2f7;
    background: #f8fafc;
    text-decoration: none !important;
    color: #0f172a;
}
.channel-thumb {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 44px;
}
.channel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}
.home-channel-item strong {
    font-size: 14px;
    font-weight: 900;
    flex: 1;
}
.home-channel-item small {
    color: #64748b;
    font-size: 12px;
}
.home-empty {
    grid-column: 1/-1;
    padding: 24px;
    border-radius: 18px;
    background: #f8fafc;
    color: #64748b;
    text-align: center;
    font-weight: 700;
}
.home-empty.small {
    padding: 18px;
}
.home-quick-list,
.home-invoice-list,
.home-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.home-quick-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    text-decoration: none !important;
    color: #0f172a;
}
.home-quick-list i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-quick-list span {
    flex: 1;
    font-weight: 800;
}
.home-quick-list em {
    font-style: normal;
    color: #64748b;
    font-weight: 900;
}
.home-invoice-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    text-decoration: none !important;
    color: #0f172a;
}
.home-invoice-item strong,
.home-invoice-item small {
    display: block;
}
.home-invoice-item small {
    color: #64748b;
    margin-top: 4px;
}
.home-invoice-item em {
    grid-column: 1/-1;
    font-style: normal;
    font-weight: 900;
    color: #2563eb;
}
.invoice-status {
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}
.invoice-status.paid {
    background: #dcfce7;
    color: #15803d;
}
.invoice-status.pending {
    background: #fef3c7;
    color: #b45309;
}
.invoice-status.failed,
.invoice-status.cancelled {
    background: #fee2e2;
    color: #b91c1c;
}
.home-info-list div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 13px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
}
.home-info-list i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-row: span 2;
}
.home-info-list span {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}
.home-info-list strong {
    color: #0f172a;
    font-size: 13px;
    word-break: break-word;
}
.home-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.home-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}
@media (max-width: 1199px) {
    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .home-hero-v2 {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
    .home-plan-card {
        text-align: left;
        width: 100%;
    }
    .home-stats-grid,
    .home-progress-row,
    .home-channel-list {
        grid-template-columns: 1fr;
    }
    .home-hero-left h1 {
        font-size: 27px;
    }
}

.welcome-title {
    color: #ffffff;
}

.welcome-title strong {
    color: #ffffff;
}


