/* ============================================
   ROOT VARIABLES - PREMIUM COLOR GRADING
   ============================================ */

:root {
    /* Primary Colors */
    --primary: #ff6b00;
    --primary-light: #ff8c33;
    --primary-dark: #cc5500;
    --primary-gradient: linear-gradient(135deg, #ff6b00 0%, #ff8c33 50%, #ff5500 100%);
    
    /* Secondary Colors */
    --secondary: #1a1a2e;
    --secondary-light: #2a2a4e;
    --secondary-dark: #0a0a1a;
    
    /* Background Colors */
    --bg-dark: #0a0a0f;
    --bg-card: #12121f;
    --bg-card-hover: #1a1a2e;
    --bg-glass: rgba(255,255,255,0.03);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b0b0c8;
    --text-muted: #6a6a8a;
    --text-accent: #ff6b00;
    
    /* Status Colors */
    --success: #00d4aa;
    --success-dark: #00997a;
    --error: #ff4757;
    --error-dark: #cc0033;
    --warning: #ffa502;
    --warning-dark: #cc8400;
    
    /* Border & Shadow */
    --border-color: rgba(255,255,255,0.06);
    --border-glow: rgba(255,107,0,0.3);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 40px rgba(255,107,0,0.15);
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Font Sizes */
    --font-xs: 10px;
    --font-sm: 12px;
    --font-md: 14px;
    --font-lg: 18px;
    --font-xl: 24px;
    --font-xxl: 32px;
}

/* ============================================
   GLOBAL RESET & BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    background: var(--bg-dark);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

::selection {
    background: var(--primary);
    color: #fff;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
    padding: 14px 0;
    border-bottom: 2px solid var(--primary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    height: 64px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    height: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

.logo span {
    color: var(--text-primary);
    font-weight: 300;
}

.nav {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.nav .user-greeting {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 400;
}

.nav .user-greeting strong {
    color: var(--text-primary);
    font-weight: 600;
}

.nav .btn-primary {
    padding: 8px 20px;
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition-normal);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255,107,0,0.25);
}

.nav .btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255,107,0,0.4);
}

.nav .btn-secondary {
    padding: 8px 20px;
    background: rgba(255,255,255,0.06);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.nav .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
    border-color: var(--primary);
}

/* ============================================
   SUBSCRIPTION BADGE
   ============================================ */

.subscription-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscription-badge.active {
    background: rgba(0, 212, 170, 0.15);
    color: var(--success);
    border: 1px solid rgba(0, 212, 170, 0.25);
}

.subscription-badge.active::before {
    content: '●';
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.subscription-badge.inactive {
    background: rgba(255, 71, 87, 0.12);
    color: var(--error);
    border: 1px solid rgba(255, 71, 87, 0.2);
}

/* ============================================
   PAGE WRAPPER
   ============================================ */

.page-wrapper {
    padding-top: 64px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.page-wrapper .container {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    padding-top: 12px;
    padding-bottom: 12px;
}

/* ============================================
   PLAYER SECTION
   ============================================ */

.player-section {
    background: linear-gradient(145deg, #0a0a12, #12121f);
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    margin-bottom: 12px;
    position: relative;
}

.player-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    min-height: 300px;
    max-height: 450px;
}

.player-wrapper video {
    width: 100%;
    height: 100%;
    max-height: 450px;
    min-height: 300px;
    display: block;
    background: #000;
}

.player-wrapper .player-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a12, #12121f);
}

.player-wrapper .player-placeholder .icon {
    font-size: 56px;
    color: var(--text-muted);
    margin-bottom: 12px;
    opacity: 0.3;
}

.player-wrapper .player-placeholder h3 {
    color: var(--text-secondary);
    font-size: 20px;
    font-weight: 600;
}

.player-wrapper .player-placeholder p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 4px;
}

/* ============================================
   CHANNEL INFO BAR
   ============================================ */

.channel-info-bar {
    background: rgba(0,0,0,0.92);
    padding: 10px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 6px;
    min-height: 48px;
    backdrop-filter: blur(10px);
}

.channel-info-bar .left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.channel-info-bar .channel-name {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
}

.channel-info-bar .channel-category {
    color: var(--text-muted);
    font-size: 12px;
    padding: 2px 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.channel-info-bar .now-playing {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.channel-info-bar .now-playing::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.channel-info-bar .expiry-info {
    color: var(--text-muted);
    font-size: 12px;
}

.channel-info-bar .expiry-info strong {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   SUBSCRIPTION OVERLAY
   ============================================ */

.subscription-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 30px;
    text-align: center;
    border-radius: var(--radius-lg);
    min-height: 300px;
}

.subscription-overlay .lock-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 12px;
    opacity: 0.8;
}

.subscription-overlay h2 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.subscription-overlay p {
    color: var(--text-secondary);
    font-size: 14px;
    max-width: 420px;
    margin-bottom: 20px;
}

.subscription-overlay .sub-plans {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.subscription-overlay .sub-plans .plan-btn {
    padding: 10px 24px;
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    min-width: 120px;
}

.subscription-overlay .sub-plans .plan-btn:hover {
    background: rgba(255,107,0,0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.subscription-overlay .sub-plans .plan-btn .price {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   CHANNEL LIST SECTION
   ============================================ */

.channel-list-section {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
    min-height: 0;
}

.channel-list-section::-webkit-scrollbar {
    width: 4px;
}

.channel-list-section::-webkit-scrollbar-track {
    background: transparent;
}

.channel-list-section::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.channel-list-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 12px 0;
    flex-wrap: wrap;
    gap: 8px;
    position: sticky;
    top: 0;
    background: var(--bg-dark);
    z-index: 5;
}

.channel-list-section .section-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.channel-list-section .section-header .channel-count {
    color: var(--text-muted);
    font-size: 12px;
    background: rgba(255,255,255,0.04);
    padding: 3px 14px;
    border-radius: 20px;
    font-weight: 400;
}

/* ============================================
   CHANNEL GRID
   ============================================ */

.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
    padding-bottom: 16px;
}

/* ============================================
   CHANNEL ITEM
   ============================================ */

.channel-item {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-card-hover));
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    text-decoration: none;
    display: block;
}

.channel-item:hover:not(.locked) {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(255,107,0,0.15);
}

.channel-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(255,107,0,0.2);
    background: linear-gradient(145deg, #1a1a2e, #12121f);
}

.channel-item.active .thumb {
    background: rgba(255,107,0,0.06);
}

.channel-item.locked {
    opacity: 0.5;
    cursor: not-allowed;
}

.channel-item .thumb {
    width: 100%;
    height: 95px;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.channel-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.channel-item:hover:not(.locked) .thumb img {
    transform: scale(1.05);
}

.channel-item .thumb .lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    backdrop-filter: blur(4px);
}

.channel-item .thumb .active-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    animation: pulse-bar 1.5s ease-in-out infinite;
}

@keyframes pulse-bar {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.channel-item .info {
    padding: 8px 12px 10px;
}

.channel-item .info .name {
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.channel-item:hover:not(.locked) .info .name {
    color: var(--primary);
}

.channel-item .info .category {
    color: var(--text-muted);
    font-size: 10px;
    margin-top: 2px;
}

.channel-item .info .watch-indicator {
    display: inline-block;
    padding: 2px 10px;
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    margin-top: 4px;
    animation: pulse-text 1.5s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   LOADING SPINNER
   ============================================ */

.loading-spinner {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 5;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    backdrop-filter: blur(4px);
}

.loading-spinner.show {
    display: flex;
}

.loading-spinner .spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(255,255,255,0.08);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner span {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 400;
}

/* ============================================
   EMPTY STATE
   ============================================ */

.empty-channels {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-card-hover));
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-color);
}

.empty-channels .icon {
    font-size: 40px;
    color: var(--text-muted);
    margin-bottom: 10px;
    opacity: 0.4;
}

.empty-channels h3 {
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 600;
}

.empty-channels p {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 4px;
}

/* ============================================
   ALERTS
   ============================================ */

.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(0, 212, 170, 0.12);
    border: 1px solid rgba(0, 212, 170, 0.2);
    color: var(--success);
}

.alert-error {
    background: rgba(255, 71, 87, 0.12);
    border: 1px solid rgba(255, 71, 87, 0.2);
    color: var(--error);
}

.alert-warning {
    background: rgba(255, 165, 2, 0.12);
    border: 1px solid rgba(255, 165, 2, 0.2);
    color: var(--warning);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
        padding: 0 32px;
    }
    
    .channel-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .channel-item .thumb {
        height: 120px;
    }
    
    .player-wrapper {
        max-height: 550px;
        min-height: 400px;
    }
    
    .player-wrapper video {
        max-height: 550px;
        min-height: 400px;
    }
}

/* Desktop */
@media (min-width: 1025px) and (max-width: 1399px) {
    .channel-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 14px;
    }
    
    .channel-item .thumb {
        height: 105px;
    }
    
    .player-wrapper {
        max-height: 480px;
        min-height: 340px;
    }
    
    .player-wrapper video {
        max-height: 480px;
        min-height: 340px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .channel-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .channel-item .thumb {
        height: 85px;
        font-size: 24px;
    }
    
    .player-wrapper {
        min-height: 250px;
        max-height: 350px;
    }
    
    .player-wrapper video {
        min-height: 250px;
        max-height: 350px;
    }
    
    .channel-info-bar .channel-name {
        font-size: 15px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .header {
        height: 56px;
        padding: 10px 0;
    }
    
    .page-wrapper {
        padding-top: 56px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .nav .user-greeting {
        font-size: 11px;
    }
    
    .nav .btn-primary {
        padding: 6px 14px;
        font-size: 11px;
    }
    
    .container {
        padding: 0 14px;
    }
    
    .player-wrapper {
        min-height: 200px;
        max-height: 260px;
    }
    
    .player-wrapper video {
        min-height: 200px;
        max-height: 260px;
    }
    
    .player-wrapper .player-placeholder .icon {
        font-size: 40px;
    }
    
    .player-wrapper .player-placeholder h3 {
        font-size: 17px;
    }
    
    .channel-info-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 14px;
        min-height: 44px;
        gap: 4px;
    }
    
    .channel-info-bar .channel-name {
        font-size: 14px;
    }
    
    .channel-info-bar .channel-category {
        font-size: 10px;
    }
    
    .channel-info-bar .now-playing {
        font-size: 11px;
    }
    
    .channel-info-bar .expiry-info {
        font-size: 10px;
    }
    
    .channel-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 8px;
    }
    
    .channel-item .thumb {
        height: 75px;
        font-size: 22px;
    }
    
    .channel-item .info .name {
        font-size: 11px;
    }
    
    .channel-item .info .category {
        font-size: 9px;
    }
    
    .channel-list-section .section-header h2 {
        font-size: 15px;
    }
    
    .channel-list-section .section-header .channel-count {
        font-size: 10px;
        padding: 2px 10px;
    }
    
    .subscription-overlay {
        min-height: 200px;
        padding: 20px;
    }
    
    .subscription-overlay .lock-icon {
        font-size: 36px;
    }
    
    .subscription-overlay h2 {
        font-size: 18px;
    }
    
    .subscription-overlay p {
        font-size: 13px;
    }
    
    .subscription-overlay .sub-plans {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }
    
    .subscription-overlay .sub-plans .plan-btn {
        width: 100%;
        text-align: center;
        padding: 10px;
        font-size: 13px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .header {
        height: 50px;
        padding: 8px 0;
    }
    
    .page-wrapper {
        padding-top: 50px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .nav .user-greeting {
        font-size: 10px;
    }
    
    .nav .btn-primary {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .player-wrapper {
        min-height: 160px;
        max-height: 200px;
    }
    
    .player-wrapper video {
        min-height: 160px;
        max-height: 200px;
    }
    
    .channel-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 6px;
    }
    
    .channel-item .thumb {
        height: 60px;
        font-size: 18px;
    }
    
    .channel-item .info {
        padding: 4px 8px 6px;
    }
    
    .channel-item .info .name {
        font-size: 10px;
    }
    
    .channel-item .info .category {
        font-size: 8px;
    }
    
    .channel-item .info .watch-indicator {
        font-size: 7px;
        padding: 1px 6px;
    }
    
    .channel-list-section .section-header h2 {
        font-size: 13px;
    }
    
    .channel-info-bar .channel-name {
        font-size: 13px;
    }
    
    .subscription-overlay h2 {
        font-size: 16px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.5s ease forwards;
}

/* ============================================
   GLOW EFFECTS
   ============================================ */

.glow-orange {
    box-shadow: 0 0 30px rgba(255,107,0,0.1);
}

.glow-orange:hover {
    box-shadow: 0 0 50px rgba(255,107,0,0.2);
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .header, .player-section, .channel-list-section {
        display: none !important;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}