/* dashboard.css - orbits8 Dashboard Premium */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2962ff;
    --primary-glow: #2962ff;
    --accent: #00e676;
    --dark-bg: #0a0f1c;
    --card-bg: rgba(18, 28, 45, 0.95);
    --border-light: rgba(68, 255, 170, 0.15);
    --text-white: #ffffff;
    --text-gray: #a0aec0;
    --text-dark: #1a202c;
    --buy-color: #00e676;
    --sell-color: #ff4757;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body.no-scroll {
    overflow: hidden;
}

/* Animated Graph Background */
.graph-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.dashboard-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Header Styles */
.dashboard-header {
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.logo-area h1 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.95rem;
}

.header-nav a:hover {
    color: var(--accent);
}

.btn-outline-nav {
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent) !important;
}

.btn-outline-nav:hover {
    background: rgba(0, 230, 118, 0.1);
}

.btn-primary-nav {
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    background: var(--accent);
    color: var(--dark-bg) !important;
    font-weight: 600;
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 230, 118, 0.3);
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    z-index: 1002;
    position: relative;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.mobile-nav-dropdown {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: linear-gradient(135deg, #0f172a, #0a0f1c);
    z-index: 1001;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-dropdown.show {
    right: 0;
}

.mobile-nav-dropdown a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: 0.3s;
}

.mobile-nav-dropdown a:hover {
    color: var(--accent);
    padding-left: 10px;
}

.close-mobile-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Balance Section */
.hero-balance-section {
    padding: 2rem;
    position: relative;
    width: 100%;
}

.balance-card {
    background: linear-gradient(135deg, rgba(18, 28, 45, 0.98), rgba(10, 15, 28, 0.98));
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.salutation {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.user-name {
    color: var(--accent);
    font-weight: 600;
}

.balance-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.currency-sign {
    font-size: 2.5rem;
    font-weight: 700;
}

.balance-number {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: monospace;
}

.eye-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--accent);
    font-size: 1.3rem;
    transition: 0.3s;
}

.eye-toggle:hover {
    background: rgba(0, 230, 118, 0.2);
    transform: scale(1.05);
}

.balance-stats-note {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.update-badge {
    color: var(--accent);
    background: rgba(0, 230, 118, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
}

/* Action Buttons */
.action-buttons-section {
    padding: 1rem 2rem;
    width: 100%;
}

.button-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.action-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    width: 100%;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
}

.action-btn i {
    font-size: 1.1rem;
    color: var(--accent);
}

.action-btn:hover {
    background: rgba(0, 230, 118, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
    color: white;
}

/* Crypto Chart Section */
.crypto-chart-section {
    padding: 2rem;
    width: 100%;
}

.chart-header {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
}

.symbol-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.symbol-left {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.symbol-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}

.symbol-meta {
    font-size: 0.7rem;
    color: var(--text-gray);
}

.symbol-meta .separator {
    margin: 0 0.3rem;
}

.symbol-meta .perp,
.symbol-meta .leverage {
    color: var(--accent);
}

.price-container {
    text-align: right;
}

.current-price-section {
    margin-bottom: 0.3rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    margin-right: 0.8rem;
}

.change {
    font-size: 0.75rem;
}

.change.positive {
    color: var(--buy-color);
}

.change.negative {
    color: var(--sell-color);
}

.ohlc-data {
    display: flex;
    gap: 1rem;
    font-size: 0.7rem;
    flex-wrap: wrap;
}

.ohlc-item {
    display: flex;
    gap: 0.2rem;
}

.ohlc-label {
    color: var(--text-gray);
    font-weight: 500;
}

.ohlc-value {
    color: var(--text-white);
    font-family: monospace;
}

.chart-wrapper {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid var(--border-light);
    width: 100%;
}

.chart-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeframes {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.timeframe-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.7rem;
    transition: 0.3s;
    white-space: nowrap;
}

.timeframe-btn:hover,
.timeframe-btn.active {
    background: var(--accent);
    color: var(--dark-bg);
}

.chart-tools {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tool-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: 0.3s;
    white-space: nowrap;
}

.tool-btn:hover {
    background: rgba(0, 230, 118, 0.2);
    color: var(--accent);
}

.live-dot {
    color: var(--accent);
    font-size: 0.7rem;
    background: rgba(0, 230, 118, 0.15);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.live-dot::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.symbol-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.symbol-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-gray);
    padding: 0.4rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.8rem;
    white-space: nowrap;
}

.symbol-btn:hover,
.symbol-btn.active {
    background: var(--accent);
    color: var(--dark-bg);
    border-color: var(--accent);
}

.chart-container {
    position: relative;
    height: 500px;
    width: 100%;
    background: #131722;
    border-radius: 8px;
    overflow: hidden;
}

#tradingview-widget {
    width: 100%;
    height: 100%;
}

/* Customer Feedback */
.feedback-section {
    padding: 2rem;
    text-align: center;
    width: 100%;
}

.feedback-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.feedback-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 40px;
}

.feedback-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    width: 100%;
}

.feedback-card {
    min-width: calc(33.333% - 1rem);
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: 0.3s;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feedback-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.feedback-card .stars {
    color: gold;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feedback-card p {
    color: var(--text-gray);
    margin: 0.8rem 0;
    font-style: italic;
    line-height: 1.6;
}

.feedback-card .author {
    color: var(--accent);
    font-weight: 600;
    margin-top: 0.5rem;
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.slide-nav:hover {
    background: var(--accent);
    color: var(--dark-bg);
}

.prev-feedback { left: 0; }
.next-feedback { right: 0; }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    margin-top: 1rem;
    width: 100%;
}

.stat-card {
    background: var(--card-bg);
    padding: 1.8rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-weight: 600;
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.stat-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Start Trading Section */
.start-trading-section {
    background: var(--card-bg);
    margin: 2rem;
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--border-light);
}

.start-trading-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.start-trading-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--accent);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.5;
}

.btn-large {
    display: inline-block;
    background: var(--accent);
    color: var(--dark-bg);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1rem;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}

.start-trading-image {
    display: flex;
    justify-content: center;
}

.start-trading-image img {
    max-width: 100%;
    border-radius: 20px;
}

/* Footer */
.footer {
    background: rgba(5, 10, 20, 0.98);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border-light);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--text-gray);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
    font-weight: 400;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--accent);
    padding-left: 5px;
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
    padding-left: 0;
}

.social-links a:hover i {
    color: var(--dark-bg);
}

.payment-methods {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

.payment-methods h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 2rem;
    color: var(--text-gray);
    flex-wrap: wrap;
}

.payment-icons i {
    transition: 0.3s;
}

.payment-icons i:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 400;
}

/* ============================================ */
/* RESPONSIVE MEDIA QUERIES - NO ZOOM NEEDED */
/* ============================================ */

/* Tablet Landscape (1024px - 1200px) */
@media (max-width: 1200px) {
    .dashboard-wrapper {
        padding: 0 1rem;
    }
    
    .action-btn {
        padding: 0.8rem;
        font-size: 0.85rem;
        white-space: normal;
        word-break: keep-all;
    }
    
    .chart-container {
        height: 450px;
    }
}

/* Tablet Portrait (768px - 1024px) */
@media (max-width: 1024px) {
    /* Maintain 2 rows for buttons */
    .button-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .action-btn {
        padding: 0.9rem;
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feedback-card {
        min-width: calc(50% - 0.75rem);
    }
    
    .start-trading-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .symbol-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-container {
        text-align: left;
    }
    
    .ohlc-data {
        justify-content: flex-start;
    }
    
    .chart-container {
        height: 400px;
    }
    
    .hero-balance-section,
    .action-buttons-section,
    .crypto-chart-section,
    .feedback-section,
    .stats-grid {
        padding: 1.5rem;
    }
    
    .start-trading-section {
        margin: 1.5rem;
        padding: 2rem;
    }
}

/* Mobile Landscape (480px - 768px) */
@media (max-width: 768px) {
    /* Header */
    .header-nav {
        display: none;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .dashboard-header {
        padding: 0.8rem 1rem;
    }
    
    /* Maintain 2 rows for buttons on larger mobile */
    .button-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .action-btn {
        padding: 0.7rem;
        font-size: 0.8rem;
    }
    
    .action-btn i {
        font-size: 0.9rem;
    }
    
    /* Balance Section */
    .hero-balance-section {
        padding: 1rem;
    }
    
    .balance-card {
        padding: 1.5rem;
    }
    
    .balance-number {
        font-size: 2rem;
    }
    
    .currency-sign {
        font-size: 1.8rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    /* Feedback */
    .feedback-card {
        min-width: 100%;
    }
    
    .feedback-slider-container {
        padding: 0 30px;
    }
    
    .feedback-section {
        padding: 1rem;
    }
    
    .feedback-section h2 {
        font-size: 1.5rem;
    }
    
    /* Chart */
    .chart-container {
        height: 350px;
    }
    
    .start-trading-section {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .chart-top-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .timeframes {
        justify-content: center;
    }
    
    .chart-tools {
        justify-content: center;
    }
    
    .live-dot {
        align-self: center;
    }
    
    .symbol-selector {
        justify-content: center;
    }
    
    /* Start Trading */
    .start-trading-steps h2 {
        font-size: 1.5rem;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
    }
    
    .step-icon i {
        font-size: 1.3rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
}

/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) {
    /* Reduce padding on all sections */
    .hero-balance-section,
    .action-buttons-section,
    .crypto-chart-section,
    .feedback-section,
    .stats-grid {
        padding: 0.8rem;
    }
    
    /* Maintain 2 rows - still 2 columns */
    .button-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .action-btn {
        padding: 0.6rem 0.4rem;
        font-size: 0.7rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .action-btn i {
        font-size: 1rem;
        margin: 0;
    }
    
    /* Balance section adjustments */
    .balance-display {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .balance-number {
        font-size: 1.5rem;
    }
    
    .currency-sign {
        font-size: 1.5rem;
    }
    
    .eye-toggle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .salutation {
        font-size: 1rem;
        text-align: center;
    }
    
    .balance-card {
        padding: 1rem;
    }
    
    .balance-stats-note {
        font-size: 0.7rem;
    }
    
    /* Chart */
    .chart-container {
        height: 280px;
    }
    
    .chart-wrapper {
        padding: 0.8rem;
    }
    
    .timeframe-btn {
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
    }
    
    .tool-btn {
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
    }
    
    .symbol-btn {
        padding: 0.3rem 0.7rem;
        font-size: 0.7rem;
    }
    
    /* OHLC Data */
    .ohlc-data {
        gap: 0.5rem;
        justify-content: flex-start;
    }
    
    .ohlc-item {
        font-size: 0.6rem;
    }
    
    /* Symbol Info */
    .symbol-name {
        font-size: 1rem;
    }
    
    .price {
        font-size: 1rem;
    }
    
    /* Stats Cards */
    .stat-card {
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stat-card p {
        font-size: 0.7rem;
    }
    
    /* Start Trading */
    .start-trading-section {
        margin: 0.8rem;
        padding: 1rem;
    }
    
    .start-trading-steps h2 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .step {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Feedback */
    .feedback-card {
        padding: 1rem;
        min-height: 150px;
    }
    
    .feedback-card .stars {
        font-size: 0.9rem;
    }
    
    .feedback-card p {
        font-size: 0.8rem;
    }
    
    .feedback-card .author {
        font-size: 0.8rem;
    }
    
    .slide-nav {
        width: 30px;
        height: 30px;
    }
    
    /* Footer */
    .footer {
        padding: 1.5rem 0.8rem 0.8rem;
    }
    
    .footer-column h3 {
        font-size: 0.9rem;
    }
    
    .footer-column a {
        font-size: 0.75rem;
    }
    
    .payment-icons {
        gap: 1rem;
        font-size: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
    }
}

/* Extra Small Devices (under 360px) */
@media (max-width: 360px) {
    .button-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
    }
    
    .action-btn {
        font-size: 0.65rem;
        padding: 0.5rem 0.3rem;
    }
    
    .action-btn i {
        font-size: 0.8rem;
    }
    
    .balance-number {
        font-size: 1.2rem;
    }
    
    .currency-sign {
        font-size: 1.2rem;
    }
    
    .chart-container {
        height: 250px;
    }
}

/* Very Small Devices (under 320px) */
@media (max-width: 320px) {
    .button-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .action-btn {
        flex-direction: row;
        padding: 0.6rem;
        font-size: 0.8rem;
        justify-content: center;
    }
}

/* Animation Keyframes */
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}