/* 
 * Lupin Trade - Stylesheet
 * Modern Vanilla CSS with Custom Properties, Dark Mode, and Glassmorphism
 */

 :root[data-theme="dark"] {
    --bg-base: #0f172a;
    --bg-surface: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    
    --accent-primary: #3b82f6;
    --accent-hover: #2563eb;
    
    --color-up: #10b981;
    --color-down: #ef4444;
    --color-up-bg: rgba(16, 185, 129, 0.15);
    --color-down-bg: rgba(239, 68, 68, 0.15);
    
    --glow: 0 0 20px rgba(59, 130, 246, 0.3);
}

:root[data-theme="light"] {
    --bg-base: #f1f5f9;
    --bg-surface: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(0, 0, 0, 0.1);
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    
    --accent-primary: #2563eb;
    --accent-hover: #1d4ed8;
    
    --color-up: #059669;
    --color-down: #dc2626;
    --color-up-bg: rgba(5, 150, 105, 0.15);
    --color-down-bg: rgba(220, 38, 38, 0.15);
    
    --glow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background Animated Shapes */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: float 20s infinite alternate;
    will-change: transform;
    pointer-events: none;
}

.bg-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.2);
    top: -100px;
    left: -100px;
}

.bg-shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(16, 185, 129, 0.15);
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(100px, 50px, 0); }
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--bg-surface);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glow);
    transform: translateZ(0);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

/* Navigation */
#navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    border-radius: 0 0 16px 16px;
    border-top: none;
    border-left: none;
    border-right: none;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-primary), #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:active {
    transform: scale(0.96);
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-success {
    background: var(--color-up);
    color: white;
}

.btn-success:hover {
    background: #059669;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.btn-buy {
    background: var(--color-up);
    color: white;
    font-size: 1.1rem;
    padding: 0.8rem;
}

.btn-sell {
    background: var(--color-down);
    color: white;
    font-size: 1.1rem;
    padding: 0.8rem;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

/* Ticker */
.market-ticker {
    margin: 1.5rem auto;
    max-width: 1400px;
    border-radius: 8px;
    padding: 0.8rem;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 2rem;
    font-weight: 500;
}

.up { color: var(--color-up); }
.down { color: var(--color-down); }

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Dashboard Layout */
.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.portfolio-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 2rem;
}

.stats-overview-grid {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-item .balance {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
:root[data-theme="light"] .stat-item .balance {
    background: linear-gradient(135deg, #0f172a, #64748b);
    -webkit-background-clip: text;
}

.stat-item.border-left {
    border-left: 1px solid var(--glass-border);
    padding-left: 2.2rem;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.6rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.text-up { color: var(--color-up); }
.text-down { color: var(--color-down); }

.stat-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
}
.stat-badge.positive {
    background: var(--color-up-bg);
    color: var(--color-up);
}

.stat-subtext {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.stat-subtext.positive {
    color: var(--color-up);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 300px 350px;
    gap: 1.5rem;
    align-items: start;
}

/* Common Panel Header */
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    border-bottom: 1px solid var(--glass-border);
}

.panel-header h3 {
    font-size: 1.1rem;
}

/* Chart Section */
.chart-section {
    height: 600px;
    display: flex;
    flex-direction: column;
}

.timeframes {
    display: flex;
    gap: 0.5rem;
}

.time-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.time-btn:hover {
    background: var(--glass-border);
}

.time-btn.active {
    background: var(--accent-primary);
    color: white;
}

.chart-container {
    flex: 1;
    padding: 1rem;
    position: relative;
}

.mock-chart {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mock-chart svg {
    width: 100%;
    height: 100%;
}

.chart-line {
    animation: drawArea 3s ease-out forwards;
}

.chart-stroke {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s ease-out forwards;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}
@keyframes drawArea {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.candles {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 80%;
    pointer-events: none;
}

.candle {
    position: absolute;
    width: 8px;
    border-radius: 4px;
    opacity: 0.8;
}

.candle::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 140%;
    top: -20%;
    z-index: -1;
}

.candle.up {
    background: var(--color-up);
}
.candle.up::before { background: var(--color-up); }

.candle.down {
    background: var(--color-down);
}
.candle.down::before { background: var(--color-down); }

.candle.active {
    animation: pulseCandle 2s infinite;
}

@keyframes pulseCandle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; box-shadow: 0 0 10px var(--color-up); }
}

/* Order Book */
.order-book {
    height: 600px;
    display: flex;
    flex-direction: column;
}

.order-table-container {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
}

.order-table-container::-webkit-scrollbar {
    width: 4px;
}
.order-table-container::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 4px;
}

.order-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.order-table th, .order-table td {
    padding: 0.5rem;
    text-align: right;
}

.order-table th:first-child, .order-table td:first-child {
    text-align: left;
}

.order-table th {
    color: var(--text-secondary);
    font-weight: 500;
    position: sticky;
    top: 0;
    background: var(--bg-surface);
}

.order-table tr {
    position: relative;
    cursor: pointer;
}

.order-table tr:hover {
    background: var(--glass-border);
}

/* Visual Depth Bar for Order Book */
.asks tr::after, .bids tr::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: var(--depth, 0%);
    height: 100%;
    z-index: -1;
    opacity: 0.2;
    pointer-events: none;
}

.asks tr::after { background: var(--color-down); }
.bids tr::after { background: var(--color-up); }

.asks td:first-child { color: var(--color-down); }
.bids td:first-child { color: var(--color-up); }

.current-price-row td {
    text-align: center !important;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

/* Quick Trade Section */
.quick-trade {
    height: fit-content;
}

.trade-tabs {
    display: flex;
    border-bottom: 1px solid var(--glass-border);
}

.trade-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

.trade-tab.active[data-type="buy"] {
    color: var(--color-up);
    border-bottom: 2px solid var(--color-up);
}

.trade-tab.active[data-type="sell"] {
    color: var(--color-down);
    border-bottom: 2px solid var(--color-down);
}

.trade-form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.glass-input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}
:root[data-theme="light"] .glass-input {
    background: rgba(255, 255, 255, 0.5);
}

.glass-input:focus {
    border-color: var(--accent-primary);
}

.form-summary {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px dashed var(--glass-border);
    font-weight: 600;
    font-size: 1.1rem;
}

footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: 1fr 300px;
    }
    .quick-trade {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .quick-trade {
        grid-column: span 1;
    }
    
    .nav-container {
        flex-wrap: wrap;
        padding: 0.7rem 1rem;
        gap: 0.6rem;
    }
    
    .nav-links {
        display: flex;
        overflow-x: auto;
        width: 100%;
        gap: 0.5rem;
        padding: 0.5rem 0 0.2rem 0;
        border-top: 1px solid var(--glass-border);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .nav-links::-webkit-scrollbar {
        display: none;
    }
    .nav-links li {
        flex-shrink: 0;
    }
    .nav-links a {
        font-size: 0.85rem;
        padding: 0.35rem 0.75rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        display: inline-block;
        white-space: nowrap;
    }
    .nav-links a.active::after {
        display: none;
    }
    .nav-links a.active {
        background: var(--accent-primary);
        color: #fff;
    }

    .portfolio-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 1.2rem;
    }
    .summary-actions {
        width: 100%;
        display: flex;
        gap: 0.8rem;
    }
    .summary-actions .btn {
        flex: 1;
    }
}

@media (max-width: 600px) {
    .dashboard-container {
        padding: 0 0.8rem 1.5rem 0.8rem;
        gap: 1rem;
    }
    .logo-text {
        font-size: 1.2rem;
    }
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
    .summary-info .balance {
        font-size: 1.8rem;
    }
    .chart-section, .order-book {
        height: 450px;
    }
    .order-table th, .order-table td {
        padding: 0.35rem 0.25rem;
        font-size: 0.8rem;
    }
    .timeframes {
        gap: 0.2rem;
    }
    .time-btn {
        padding: 0.25rem 0.4rem;
        font-size: 0.8rem;
    }
}

/* Authentication Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 26, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    transform: translateZ(0);
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    padding: 2.5rem 2rem;
    text-align: center;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--text-primary);
}

.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
}

.google-icon {
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   LANDING PAGE & FEATURE SHOWCASE STYLES
   ========================================================================== */

.landing-section {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-header-center {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 1.5rem auto;
}

.gradient-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-primary) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    margin-bottom: 0.6rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Ecosystem Pillars Grid */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.pillar-card {
    padding: 1.8rem 1.5rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 12px 30px rgba(0, 229, 255, 0.15);
}

.pillar-icon {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.pillar-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.pillar-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pillar-link {
    margin-top: auto;
    font-weight: 600;
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pillar-link:hover {
    text-decoration: underline;
}

/* Showcase Large Cards (Gems) */
.showcase-banner-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem;
    border-radius: 24px;
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.9) 100%);
    border: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(251, 191, 36, 0.15);
    color: var(--color-gold);
    border: 1px solid rgba(251, 191, 36, 0.4);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    width: fit-content;
}

.showcase-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
}

.showcase-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.roi-stats-row {
    display: flex;
    gap: 1.5rem;
    margin: 0.5rem 0;
}

.roi-stat {
    display: flex;
    flex-direction: column;
}

.roi-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-gold);
}

.roi-lbl {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.showcase-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border: 1px solid var(--glass-border);
}

.showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.showcase-banner-card:hover .showcase-media img {
    transform: scale(1.03);
}

/* Dual Grid Showcase (Sports & Casino) */
.dual-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.feature-mini-card {
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.feature-mini-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
}

.feature-mini-media {
    border-radius: 14px;
    overflow: hidden;
    height: 200px;
    border: 1px solid var(--glass-border);
}

.feature-mini-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trust & Security Section */
.security-trust-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
    border-radius: 24px;
    align-items: center;
    background: rgba(10, 15, 26, 0.9);
    border: 1px solid rgba(0, 229, 255, 0.35);
}

.security-media img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

.trust-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.trust-icon {
    font-size: 1.4rem;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-primary);
    padding: 0.5rem;
    border-radius: 10px;
}

/* Stats Counter Grid */
.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 1rem;
}

.stat-counter-card {
    text-align: center;
    padding: 1.8rem 1rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
}

.counter-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.counter-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

/* Motivational Call To Action Banner */
.motivational-cta-card {
    text-align: center;
    padding: 3.5rem 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15) 0%, rgba(15, 23, 42, 0.95) 50%, rgba(251, 191, 36, 0.15) 100%);
    border: 1px solid rgba(0, 229, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    max-width: 650px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Responsive Landing Page */
@media (max-width: 1000px) {
    .showcase-banner-card {
        grid-template-columns: 1fr;
    }
    .dual-showcase-grid {
        grid-template-columns: 1fr;
    }
    .security-trust-card {
        grid-template-columns: 1fr;
    }
    .stats-counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .stats-counter-grid {
        grid-template-columns: 1fr;
    }
    .showcase-title {
        font-size: 1.6rem;
    }
    .gradient-title {
        font-size: 1.7rem;
    }
}

