@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&display=swap');
:root {
    --primary: #E50914;
    --primary-dark: #b5070f;
    --primary-light: #ff2d38;
    --secondary: #0B1F3A;
    --secondary-light: #142d52;
    --bg: #FFFFFF;
    --card-bg: #F7F7F7;
    --text: #111111;
    --text-muted: #6c757d;
    --text-light: #999;
    --border: #e8e8e8;
    --success: #28a745;
    --danger: #E50914;
    --warning: #ffc107;
    --info: #17a2b8;
    --shadow: 0 2px 16px rgba(11, 31, 58, 0.08);
    --shadow-lg: 0 8px 32px rgba(11, 31, 58, 0.12);
    --shadow-hover: 0 12px 40px rgba(11, 31, 58, 0.16);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --sidebar-width: 260px;
    --header-height: 64px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Jost', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    list-style: none;
}
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
.navbar-main {
    background: var(--secondary);
    padding: 0 2rem;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}
.navbar-brand span {
    color: var(--primary);
}
.navbar-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.navbar-links a {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
}
.navbar-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
    color: #fff;
}
.btn-secondary-custom {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-secondary-custom:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 31, 58, 0.3);
    color: #fff;
}
.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 8px 26px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.btn-sm {
    padding: 6px 16px;
    font-size: 0.85rem;
}
.btn-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
}
.btn-block {
    width: 100%;
    justify-content: center;
}
.hero-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #0d2847 50%, #091a30 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 80px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero-content h1 span {
    color: var(--primary);
}
.hero-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2.5rem;
}
.hero-badge {
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.25);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-badge i {
    color: var(--primary);
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.section {
    padding: 80px 2rem;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
}
.section-title .title-bar {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 12px auto 0;
    border-radius: 2px;
}
.how-it-works {
    background: var(--card-bg);
}
.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}
.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 1.2rem;
}
.step-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}
.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(229, 9, 20, 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: var(--primary);
}
.service-card h4 {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.features-section {
    background: var(--secondary);
    color: #fff;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}
.feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 40px;
    text-align: center;
}
.feature-item span {
    font-weight: 500;
}
.faq-item {
    background: #fff;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}
.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary);
    transition: var(--transition);
}
.faq-question:hover {
    color: var(--primary);
}
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
    line-height: 1.8;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.2rem;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, 0.6);
    padding: 3rem 2rem 1.5rem;
}
.footer a {
    color: rgba(255, 255, 255, 0.6);
}
.footer a:hover {
    color: var(--primary);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, #0d2847 100%);
    padding: 2rem;
}
.auth-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-lg);
}
.auth-card h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.3rem;
}
.auth-card .subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--secondary);
    font-size: 0.9rem;
}
.form-control-custom {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: #fff;
    transition: var(--transition);
    outline: none;
}
.form-control-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.1);
}
.form-control-custom::placeholder {
    color: var(--text-light);
}
select.form-control-custom {
    cursor: pointer;
    appearance: auto;
}
.input-icon-wrapper {
    position: relative;
}
.input-icon-wrapper i:first-child {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}
.input-icon-wrapper .form-control-custom {
    padding-left: 42px;
}
.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-check input {
    accent-color: var(--primary);
}
.form-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.dash-header {
    background: var(--secondary);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: fixed;
    top: 0;
    left: var(--sidebar-width);
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}
.dash-header .header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.dash-header .header-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: none;
    padding: 6px;
}
.header-search {
    position: relative;
}
.header-search input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 16px 8px 38px;
    border-radius: 50px;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    width: 240px;
    outline: none;
    transition: var(--transition);
}
.header-search input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    width: 300px;
}
.header-search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.header-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}
.header-notification {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 6px;
}
.header-notification:hover {
    color: #fff;
}
.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.header-user {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.header-user:hover {
    background: rgba(255, 255, 255, 0.1);
}
.header-user img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.header-user span {
    font-weight: 500;
    font-size: 0.9rem;
}
.sidebar {
    width: var(--sidebar-width);
    background: #fff;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow-y: auto;
}
.sidebar-brand {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    height: var(--header-height);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.sidebar-brand h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
}
.sidebar-brand span {
    color: var(--primary);
}
.sidebar-nav {
    padding: 1rem 0;
    flex: 1;
}
.sidebar-nav .nav-label {
    padding: 0.8rem 1.5rem 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.92rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.sidebar-nav a:hover {
    color: var(--primary);
    background: rgba(229, 9, 20, 0.04);
    border-left-color: var(--primary);
}
.sidebar-nav a.active {
    color: var(--primary);
    background: rgba(229, 9, 20, 0.06);
    border-left-color: var(--primary);
    font-weight: 600;
}
.sidebar-nav a i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}
.sidebar-close {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-muted);
    cursor: pointer;
}
.main-content {
    margin-left: var(--sidebar-width);
    padding: calc(var(--header-height) + 1.5rem) 1.5rem 2rem;
    min-height: 100vh;
    background: var(--card-bg);
    transition: var(--transition);
}
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.page-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}
.page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.page-header .breadcrumb a {
    color: var(--primary);
}
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.glass-card:hover {
    box-shadow: var(--shadow-hover);
}
.stat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
}
.stat-card.green::before {
    background: var(--success);
}
.stat-card.blue::before {
    background: var(--info);
}
.stat-card.yellow::before {
    background: var(--warning);
}
.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.stat-card .stat-icon.red {
    background: rgba(229, 9, 20, 0.1);
    color: var(--primary);
}
.stat-card .stat-icon.green {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}
.stat-card .stat-icon.blue {
    background: rgba(23, 162, 184, 0.1);
    color: var(--info);
}
.stat-card .stat-icon.yellow {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning);
}
.stat-card .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.stat-card .stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 4px;
}
.card-custom {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: none;
    overflow: hidden;
}
.card-custom .card-header-custom {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
}
.card-custom .card-header-custom h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
}
.card-custom .card-body-custom {
    padding: 1.5rem;
}
.table-custom {
    width: 100%;
    border-collapse: collapse;
}
.table-custom thead th {
    background: var(--card-bg);
    padding: 12px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.table-custom tbody td {
    padding: 12px 16px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.table-custom tbody tr:hover {
    background: rgba(229, 9, 20, 0.02);
}
.table-custom tbody tr:last-child td {
    border-bottom: none;
}
.table-responsive-custom {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.badge {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
}
.badge.bg-warning {
    color: #111 !important;
}
.task-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}
.task-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}
.task-card .task-thumb {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.task-card .task-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.task-card .task-thumb .task-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
.task-card .task-body {
    padding: 1.2rem;
}
.task-card .task-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}
.task-card .task-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.task-card .task-reward {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
}
.task-card .task-reward .reward {
    font-weight: 700;
    color: var(--success);
    font-size: 1.1rem;
}
.task-card .task-progress {
    margin-top: 0.8rem;
}
.progress-custom {
    height: 6px;
    background: var(--card-bg);
    border-radius: 3px;
    overflow: hidden;
}
.progress-custom .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 3px;
    transition: width 0.6s ease;
}
.progress-custom.green .progress-fill {
    background: linear-gradient(90deg, var(--success), #34ce57);
}
.watch-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.watch-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.watch-modal {
    background: #fff;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 750px;
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition);
}
.watch-modal-overlay.active .watch-modal {
    transform: scale(1);
}
.watch-modal-header {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--secondary);
    color: #fff;
}
.watch-modal-header h5 {
    font-weight: 600;
    margin: 0;
}
.watch-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
}
.watch-modal-body {
    padding: 0;
}
.watch-modal-body iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}
.watch-modal-footer {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg);
}
.countdown-timer {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
}
.countdown-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}
.empty-state i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}
.empty-state h4 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}
.empty-state p {
    color: var(--text-muted);
}
.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.notification-item:hover {
    background: rgba(229, 9, 20, 0.02);
}
.notification-item.unread {
    background: rgba(229, 9, 20, 0.04);
}
.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}
.notification-icon.red {
    background: rgba(229, 9, 20, 0.1);
    color: var(--primary);
}
.notification-icon.green {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}
.notification-icon.blue {
    background: rgba(23, 162, 184, 0.1);
    color: var(--info);
}
.notification-content h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.notification-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}
.notification-time {
    font-size: 0.75rem;
    color: var(--text-light);
    white-space: nowrap;
}
.screenshot-preview {
    width: 100px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.screenshot-preview:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}
.pagination .page-item .page-link {
    color: var(--secondary);
    border: 1px solid var(--border);
    padding: 8px 14px;
    font-size: 0.9rem;
    font-family: 'Jost', sans-serif;
    transition: var(--transition);
}
.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.pagination .page-item .page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.referral-link-box {
    background: var(--card-bg);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.referral-link-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
}
.upload-box {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--card-bg);
}
.upload-box:hover {
    border-color: var(--primary);
    background: rgba(229, 9, 20, 0.02);
}
.upload-box i {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.upload-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.upload-box.has-file {
    border-color: var(--success);
    background: rgba(40, 167, 69, 0.04);
}
.admin-sidebar {
    background: var(--secondary);
}
.admin-sidebar .sidebar-brand {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}
.admin-sidebar .sidebar-brand h3 {
    color: #fff;
}
.admin-sidebar .sidebar-nav .nav-label {
    color: rgba(255, 255, 255, 0.4);
}
.admin-sidebar .sidebar-nav a {
    color: rgba(255, 255, 255, 0.6);
    border-left-color: transparent;
}
.admin-sidebar .sidebar-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--primary);
}
.admin-sidebar .sidebar-nav a.active {
    color: #fff;
    background: rgba(229, 9, 20, 0.15);
    border-left-color: var(--primary);
}
.screenshot-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.screenshot-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.screenshot-modal-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
    }
    .sidebar.open {
        transform: translateX(0);
    }
    .sidebar-close {
        display: block;
    }
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .main-content {
        margin-left: 0;
    }
    .dash-header {
        left: 0;
    }
    .menu-toggle {
        display: block;
    }
    .header-search input {
        width: 160px;
    }
    .header-search input:focus {
        width: 200px;
    }
}
@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-section {
        padding: 100px 1rem 60px;
    }
    .section {
        padding: 50px 1rem;
    }
    .section-title h2 {
        font-size: 1.6rem;
    }
    .auth-card {
        padding: 1.5rem;
    }
    .stat-card .stat-value {
        font-size: 1.3rem;
    }
    .main-content {
        padding: calc(var(--header-height) + 1rem) 1rem 1.5rem;
    }
    .page-header h1 {
        font-size: 1.2rem;
    }
    .header-search {
        display: none;
    }
    .header-user span {
        display: none;
    }
    .watch-modal-body iframe {
        height: 250px;
    }
}
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }
    .navbar-links a {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}
.delay-1 {
    animation-delay: 0.1s;
}
.delay-2 {
    animation-delay: 0.2s;
}
.delay-3 {
    animation-delay: 0.3s;
}
.delay-4 {
    animation-delay: 0.4s;
}
.stat-info {
    display: flex !important;
    flex-direction: column !important;
}