﻿/* ============================================
   ULTRA-PREMIUM DASHBOARD THEME (2025)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* --- Core Palette --- */
    --bg-dark: #050511;
    /* Deepest background */
    --bg-panel: rgba(20, 20, 35, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.05);

    /* --- Neons & Accents --- */
    --neon-cyan: #00f3ff;
    --neon-purple: #bc13fe;
    --neon-pink: #ff0055;
    --neon-green: #0aff68;

    /* --- Gradients --- */
    --gradient-primary: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    --gradient-purple: linear-gradient(135deg, #b721ff 0%, #21d4fd 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(0, 243, 255, 0.15) 0%, transparent 70%);

    /* --- Text --- */
    --text-main: #ffffff;
    --text-muted: #cbd5e1;
    /* Lighter gray for better readability */
    --text-dimmed: #94a3b8;
    /* Old muted color for less important text */

    /* --- Effects --- */
    --blur-strength: 12px;
    --glow-spread: 0 0 20px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(188, 19, 254, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(0, 243, 255, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
}

/* --- Typography Overrides --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

a:hover {
    color: var(--neon-cyan);
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-dimmed {
    color: var(--text-dimmed) !important;
}

.text-muted.hover-white:hover {
    color: white !important;
}

/* --- Glassmorphism Components --- */
.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(var(--blur-strength));
    -webkit-backdrop-filter: blur(var(--blur-strength));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    color: white;
}

.glass-btn.primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.glass-btn.primary:hover {
    box-shadow: 0 0 25px rgba(0, 114, 255, 0.5);
}

.glass-btn.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* --- Global Content Styles --- */
.site-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.section-padding {
    padding: 80px 0;
}

.section-glass {
    position: relative;
    padding: 80px 0;
    margin: 40px 0;
    overflow: hidden;
    /* Prevent overflow */
}

.section-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100vw;
    right: -100vw;
    bottom: 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: -1;
    backdrop-filter: blur(5px);
}

/* Mobile optimization for section-glass */
@media (max-width: 991px) {
    .section-glass {
        padding: 40px 0;
        margin: 20px 0;
    }

    .section-glass::before {
        left: 0;
        right: 0;
    }
}

/* Feature Cards */
.feature-card {
    padding: 40px;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--neon-cyan);
}

/* --- Layout Specifics (Dashboard) --- */
.dashboard-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Navbar Customization */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 40px;
    border-radius: 24px;
}

.nav-links a {
    margin-left: 30px;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--neon-cyan);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Navbar mobile fixes - Updated for tablets */
@media (max-width: 991px) {
    .top-nav {
        padding: 5px 8px !important;
        margin: 5px !important;
        border-radius: 10px !important;
    }

    .top-nav.glass-panel {
        padding: 5px 8px !important;
    }

    .brand {
        flex-shrink: 0;
    }

    .brand img {
        height: 24px !important;
    }

    .user-profile {
        gap: 5px;
        flex-shrink: 0;
    }

    .glass-btn {
        padding: 5px 8px !important;
        font-size: 0.75rem !important;
        white-space: nowrap;
    }

    /* Remove body padding - spacer handles it */
    body {
        padding-top: 0 !important;
    }

    .dashboard-wrapper,
    .site-wrapper {
        padding-top: 10px !important;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 0 !important;
    }

    .top-nav {
        padding: 4px 6px !important;
        margin: 4px !important;
    }

    .top-nav.glass-panel {
        padding: 4px 6px !important;
    }

    .brand img {
        height: 22px !important;
    }

    .glass-btn {
        padding: 4px 7px !important;
        font-size: 0.7rem !important;
    }

    .glass-btn i {
        font-size: 0.95rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 60px 40px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0, 114, 255, 0.15), transparent 60%);
    z-index: -1;
}

.hero-title {
    font-size: 3.5rem;
    background: linear-gradient(to right, #fff, #a5b4fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: 0.3s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

/* Bot Grid */
.bot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.bot-card {
    position: relative;
    padding: 25px;
    border-radius: 20px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.bot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: 0.3s;
}

.bot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.bot-card:hover::before {
    opacity: 1;
}

.bot-icon-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    /* Enforce landscape 16:9 ratio */
    height: auto;
    /* Allow height to adjust based on width */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bot-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the area completely */
    transition: transform 0.5s ease;
}

.bot-card:hover .bot-icon-wrapper img {
    transform: scale(1.05);
    /* Zoom effect on hover */
}

.bot-status {
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: gray;
    box-shadow: 0 0 5px gray;
}

.status-active .status-dot {
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
    animation: pulse 2s infinite;
}

.status-stopped .status-dot {
    background: var(--neon-pink);
    box-shadow: 0 0 8px var(--neon-pink);
}

.status-deploying .status-dot {
    background: #fbbf24;
    /* Amber/yellow */
    box-shadow: 0 0 8px #fbbf24;
    animation: pulse 2s infinite;
}

.status-error .status-dot {
    background: #ef4444;
    /* Red */
    box-shadow: 0 0 8px #ef4444;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.bot-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.bot-id {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: monospace;
    opacity: 0.7;
}

.bot-actions {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.2s;
    display: grid;
    place-items: center;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.action-btn.start:hover {
    background: rgba(10, 255, 104, 0.2);
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.action-btn.stop:hover {
    background: rgba(255, 0, 85, 0.2);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* ============================================
   MOBILE RESPONSIVE DESIGN
   ============================================ */

/* Responsive Utilities */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

/* Touch-friendly button sizes */
.btn-mobile-lg {
    min-height: 48px;
    min-width: 48px;
}

/* Responsive table wrapper */
.table-responsive-mobile {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -15px;
    padding: 0 15px;
}

/* Mobile: 320px - 991px (includes tablets) */
@media (max-width: 991px) {

    /* Visibility */
    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }

    /* Typography */
    .hero-title {
        font-size: 2rem !important;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Layout */
    .site-wrapper,
    .dashboard-wrapper {
        padding: 0 15px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .page-hero {
        min-height: 40vh;
        padding-top: 60px !important;
        /* Account for navbar */
    }

    /* Glass panels - reduce padding on mobile */
    .glass-panel {
        padding: 20px !important;
        border-radius: 16px;
    }

    /* Feature cards */
    .feature-card {
        padding: 25px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    /* Bot grid - single column on mobile */
    .bot-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Stat cards - stack vertically */
    .stat-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Stats section - 2 columns on mobile */
    .section-glass .display-4 {
        font-size: 2.5rem;
    }

    .section-glass .text-uppercase {
        font-size: 0.75rem;
    }

    /* Buttons - full width on mobile */
    .glass-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        min-height: 48px;
    }

    .glass-btn.btn-sm {
        width: auto;
        min-height: 40px;
    }

    /* Navigation */
    .top-nav {
        padding: 15px 20px;
        margin-bottom: 20px;
        border-radius: 16px;
    }

    .nav-links a {
        margin-left: 15px;
        font-size: 0.9rem;
    }

    /* Hero section */
    .hero-section {
        padding: 40px 20px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    /* Bot cards */
    .bot-card {
        padding: 20px;
    }

    .bot-actions {
        flex-direction: column;
        gap: 8px;
    }

    .action-btn {
        width: 100%;
    }

    /* Admin content - remove fixed margin */
    .admin-content {
        margin-left: 0 !important;
        padding: 15px;
    }

    /* Tables - horizontal scroll */
    .table-responsive {
        margin: 0 -20px;
        padding: 0 20px;
    }

    table {
        font-size: 0.85rem;
    }

    table th,
    table td {
        padding: 8px !important;
        white-space: nowrap;
    }

    /* Modals */
    .modal-dialog {
        margin: 10px;
    }

    .modal-content {
        border-radius: 16px;
    }

    .modal-body {
        padding: 20px;
    }

    /* Forms */
    .form-control,
    .form-select {
        min-height: 48px;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    /* Dropdowns */
    .dropdown-menu {
        font-size: 0.9rem;
    }

    .dropdown-item {
        padding: 12px 16px;
    }
}

/* Tablet: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {

    .site-wrapper,
    .dashboard-wrapper {
        padding: 0 30px;
    }

    .bot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-content {
        margin-left: 240px !important;
    }
}

/* Small mobile devices */
@media (max-width: 375px) {
    .glass-panel {
        padding: 15px !important;
    }

    .hero-title {
        font-size: 1.75rem !important;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* Landscape mobile */
@media (max-width: 991px) and (orientation: landscape) {
    .page-hero {
        min-height: 50vh;
    }

    .hero-section {
        padding: 30px 20px;
    }

    /* Navbar optimization for landscape */
    .top-nav {
        padding: 4px 8px !important;
    }

    .brand img {
        height: 22px !important;
    }

    .glass-btn {
        padding: 4px 8px !important;
        font-size: 0.75rem !important;
    }
}

/* Original landscape mobile for very small screens */
@media (max-width: 767px) and (orientation: landscape) {
    .page-hero {
        min-height: 60vh;
    }
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.rz-toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.rz-toast {
    min-width: 300px;
    max-width: 450px;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    animation: toastSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.rz-toast.hiding {
    animation: toastSlideOut 0.3s ease-in forwards;
}

.rz-toast-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.rz-toast-content {
    flex-grow: 1;
}

.rz-toast-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.rz-toast-message {
    font-size: 0.85rem;
    opacity: 0.9;
}

.rz-toast-close {
    background: none;
    border: none;
    color: inherit;
    opacity: 0.7;
    cursor: pointer;
    padding: 4px;
    font-size: 1.2rem;
    transition: opacity 0.2s;
}

.rz-toast-close:hover {
    opacity: 1;
}

.rz-toast.success {
    background: linear-gradient(135deg, rgba(10, 255, 104, 0.2) 0%, rgba(10, 180, 80, 0.15) 100%);
    color: #0aff68;
    border-color: rgba(10, 255, 104, 0.3);
}

.rz-toast.error {
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.2) 0%, rgba(200, 0, 60, 0.15) 100%);
    color: #ff5588;
    border-color: rgba(255, 0, 85, 0.3);
}

.rz-toast.warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(200, 150, 0, 0.15) 100%);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.3);
}

.rz-toast.info {
    background: linear-gradient(135deg, rgba(0, 114, 255, 0.2) 0%, rgba(0, 80, 180, 0.15) 100%);
    color: #00c6ff;
    border-color: rgba(0, 114, 255, 0.3);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

@media (max-width: 576px) {
    .rz-toast-container {
        left: 10px;
        right: 10px;
        top: 10px;
    }

    .rz-toast {
        min-width: unset;
        width: 100%;
    }
}

/* Market Link Styling in Navbar */
.market-link {
    font-size: 1.1rem !important;
    /* Larger than standard links */
    font-weight: 700 !important;
    color: var(--neon-cyan) !important;
    /* Distinct color */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 243, 255, 0.1);
    padding: 6px 12px !important;
    border-radius: 8px;
    border: 1px solid rgba(0, 243, 255, 0.3);
    margin: 0 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.market-link:hover {
    background: var(--neon-cyan) !important;
    color: #000 !important;
    box-shadow: 0 0 15px var(--neon-cyan);
    transform: translateY(-2px);
}

.market-link i {
    font-size: 1.2rem;
}/ *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =  
       M O B I L E   P E R F O R M A N C E   O P T I M I Z A T I O N S  
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /  
 @ m e d i a   ( m a x - w i d t h :   9 9 1 p x )   {  
  
         / *   C r i t i c a l :   D i s a b l e   h e a v y   G P U   b l u r   o n   m o b i l e   t o   p r e v e n t   s c r o l l   l a g   &   c h e c k e r b o a r d i n g   * /  
         . g l a s s - p a n e l ,  
         . g l a s s - b t n ,  
         . s e c t i o n - g l a s s : : b e f o r e ,  
         . b o t - c a r d ,  
         . h e r o - s e c t i o n ,  
         . n a v - l i n k ,  
         . n a v b a r ,  
         . m o d a l - c o n t e n t ,  
         . o f f c a n v a s ,  
         . p r i c i n g - c a r d   {  
                 b a c k d r o p - f i l t e r :   n o n e   ! i m p o r t a n t ;  
                 - w e b k i t - b a c k d r o p - f i l t e r :   n o n e   ! i m p o r t a n t ;  
                 b a c k g r o u n d :   r g b a ( 1 5 ,   1 5 ,   2 5 ,   0 . 9 5 )   ! i m p o r t a n t ;  
                 b o x - s h a d o w :   n o n e   ! i m p o r t a n t ;  
         }  
  
         / *   R e s t o r e   b u t t o n   g r a d i e n t / t r a n s p a r e n c y   s a f e l y   * /  
         . g l a s s - b t n   {  
                 b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 )   ! i m p o r t a n t ;  
         }  
  
         . g l a s s - b t n . p r i m a r y   {  
                 b a c k g r o u n d :   v a r ( - - g r a d i e n t - p r i m a r y )   ! i m p o r t a n t ;  
         }  
  
         / *   R e m o v e   e n t r y   a n i m a t i o n s   o n   m o b i l e   t o   e n s u r e   i m m e d i a t e   v i s i b i l i t y   * /  
         . a n i m a t e - i n   {  
                 a n i m a t i o n :   n o n e   ! i m p o r t a n t ;  
                 o p a c i t y :   1   ! i m p o r t a n t ;  
                 t r a n s f o r m :   n o n e   ! i m p o r t a n t ;  
                 t r a n s i t i o n :   n o n e   ! i m p o r t a n t ;  
         }  
  
         / *   F i x   s e c t i o n - g l a s s   b a c k g r o u n d   s p e c i f i c a l l y   * /  
         . s e c t i o n - g l a s s : : b e f o r e   {  
                 b a c k g r o u n d :   r g b a ( 2 5 ,   2 5 ,   3 5 ,   0 . 9 5 )   ! i m p o r t a n t ;  
                 w i d t h :   1 0 0 v w   ! i m p o r t a n t ;  
         }  
  
         / *   E n s u r e   B o t   C a r d s   r e n d e r   s i m p l y   * /  
         . b o t - c a r d   {  
                 t r a n s f o r m :   n o n e   ! i m p o r t a n t ;  
                 t r a n s i t i o n :   n o n e   ! i m p o r t a n t ;  
                 b a c k g r o u n d :   r g b a ( 2 5 ,   2 5 ,   3 5 ,   0 . 9 5 )   ! i m p o r t a n t ;  
         }  
  
         . b o t - c a r d : : b e f o r e   {  
                 d i s p l a y :   n o n e   ! i m p o r t a n t ;  
                 / *   R e m o v e   g r a d i e n t   b o r d e r   a n i m a t i o n   * /  
         }  
 }  
 