/* Vortex Shop - Enhanced Responsive CSS */
/* Mobile-first responsive design with advanced breakpoints */

/* Base Mobile Styles (320px and up) */
@media (max-width: 479px) {
    /* Typography Enhancements */
    html { 
        font-size: 14px; 
    }
    
    .hero-title h1 { 
        font-size: 2.8rem; 
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .title-subtitle { 
        font-size: 1.1rem; 
        margin-bottom: 1.5rem;
    }
    
    .hero-description { 
        font-size: 1rem; 
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .section-header h2 { 
        font-size: 2rem; 
        margin-bottom: 1rem;
    }
    
    .section-subtitle { 
        font-size: 1rem; 
        line-height: 1.5;
    }
    
    /* Enhanced Navigation */
    .nav-container { 
        padding: 0 1rem; 
        height: 70px;
    }
    
    .nav-logo { 
        font-size: 1.3rem; 
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem 1rem;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-right: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 1.25rem;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
        border-radius: var(--border-radius);
    }
    
    /* Enhanced Hero Section */
    .hero-section { 
        padding: 1rem; 
        min-height: 90vh; 
    }
    
    .hero-content { 
        padding: 2rem 0; 
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .stat-item { 
        padding: 1.25rem; 
    }
    
    .stat-number { 
        font-size: 2.2rem; 
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    /* Enhanced Crypto Ticker */
    .crypto-ticker { 
        padding: 1.5rem; 
        margin: 2rem 0;
    }
    
    .ticker-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .ticker-item { 
        min-width: auto; 
        width: 100%; 
        padding: 1.25rem;
    }
    
    .crypto-symbol {
        font-size: 1.3rem;
    }
    
    .crypto-price {
        font-size: 1.5rem;
    }
    
    /* Enhanced CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        min-width: auto;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Enhanced Content Sections */
    .content-section { 
        padding: 4rem 1rem; 
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    /* Enhanced Dashboard */
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dashboard-item { 
        padding: 1.5rem; 
    }
    
    .dashboard-icon {
        font-size: 2.5rem;
    }
    
    .dashboard-value { 
        font-size: 2rem; 
    }
    
    .stats-mini {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-mini {
        min-width: auto;
    }
    
    /* Enhanced Feature Grid */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card { 
        padding: 2rem; 
    }
    
    .feature-card .feature-icon {
        font-size: 3rem;
    }
    
    .feature-card h4 {
        font-size: 1.3rem;
    }
    
    .feature-stats {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-stats .stat-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Enhanced About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-features {
        gap: 1.5rem;
    }
    
    .feature-highlight {
        padding: 1.5rem;
    }
    
    .feature-highlight .feature-icon {
        font-size: 2.2rem;
    }
    
    .feature-highlight h4 {
        font-size: 1.2rem;
    }
    
    /* Enhanced Crypto Currencies */
    .crypto-currencies {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .currency-card { 
        padding: 2rem; 
    }
    
    .currency-header { 
        flex-direction: column; 
        gap: 1.5rem; 
        align-items: flex-start;
    }
    
    .currency-icon { 
        font-size: 2.5rem; 
    }
    
    .currency-price {
        margin-left: 0;
        text-align: left;
    }
    
    .currency-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .currency-tools {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tool-btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    /* Enhanced Trading Tools */
    .trading-tools {
        padding: 2rem 1.5rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tool-card {
        padding: 1.5rem;
    }
    
    /* Enhanced Converter */
    .converter {
        flex-direction: column;
        gap: 1rem;
    }
    
    .converter-input,
    .converter-output {
        width: 100%;
        min-width: auto;
    }
    
    .converter-arrow {
        transform: rotate(90deg);
        font-size: 1.3rem;
    }
    
    .converter input,
    .converter select {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Enhanced Fee Calculator */
    .fee-input {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fee-input input,
    .fee-input select {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .fee-result {
        padding: 1.25rem;
    }
    
    /* Enhanced Vendor Process */
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step-content h4 {
        font-size: 1.2rem;
    }
    
    .step-features {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .step-features .feature-item {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Enhanced Vendor Stats */
    .vendor-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .metric-card {
        padding: 1.5rem;
    }
    
    .metric-icon {
        font-size: 2.2rem;
    }
    
    .metric-value {
        font-size: 1.8rem;
    }
    
    /* Enhanced Registration Steps */
    .registration-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reg-step { 
        padding: 2rem 1.5rem; 
    }
    
    .step-icon {
        font-size: 2.5rem;
    }
    
    .reg-step h4 {
        font-size: 1.2rem;
    }
    
    .registration-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    /* Enhanced Mirror Container */
    .mirror-item { 
        padding: 1.5rem; 
    }
    
    .mirror-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .mirror-info h4 {
        font-size: 1.2rem;
    }
    
    .mirror-link-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .mirror-link { 
        word-break: break-all; 
        font-size: 0.9rem;
    }
    
    .copy-btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }
    
    .mirror-security {
        padding: 1.5rem;
    }
    
    /* Enhanced FAQ */
    .faq-question { 
        padding: 1.25rem; 
        font-size: 1.1rem; 
    }
    
    .faq-answer { 
        padding: 0 1.25rem 1.25rem; 
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Enhanced Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 1rem 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .footer-section p {
        font-size: 0.95rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
    }
    
    .disclaimer-content {
        padding: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-security {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .security-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    /* Enhanced Modals and Overlays */
    .modal-content {
        width: 95%;
        margin: 1rem;
        padding: 1.5rem;
    }
    
    /* Enhanced Notifications */
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        margin: 0 10px;
    }
}

/* Small Devices (phones, 480px and up) */
@media (min-width: 480px) and (max-width: 767px) {
    /* Typography Improvements */
    html { 
        font-size: 15px; 
    }
    
    .hero-title h1 { 
        font-size: 3.2rem; 
    }
    
    .title-subtitle { 
        font-size: 1.2rem; 
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    /* Enhanced Navigation */
    .nav-container { 
        padding: 0 1.5rem; 
    }
    
    .nav-logo {
        font-size: 1.4rem;
    }
    
    /* Enhanced Hero Section */
    .hero-section { 
        padding: 1.5rem; 
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.4rem;
    }
    
    /* Enhanced Dashboard */
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .dashboard-value {
        font-size: 2.2rem;
    }
    
    /* Enhanced Content Sections */
    .content-section { 
        padding: 4.5rem 1.5rem; 
    }
    
    .section-header {
        margin-bottom: 3.5rem;
    }
    
    /* Enhanced Feature Grid */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2.25rem;
    }
    
    /* Enhanced Crypto Currencies */
    .crypto-currencies {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .currency-header {
        flex-direction: row;
        align-items: center;
    }
    
    .currency-price {
        margin-left: auto;
        text-align: right;
    }
    
    .currency-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .currency-tools {
        flex-direction: row;
    }
    
    /* Enhanced Trading Tools */
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Enhanced Converter */
    .converter {
        flex-direction: row;
        gap: 1rem;
    }
    
    .converter-arrow {
        transform: none;
    }
    
    /* Enhanced Fee Calculator */
    .fee-input {
        flex-direction: row;
        gap: 1rem;
    }
    
    /* Enhanced Vendor Process */
    .process-step {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    /* Enhanced Vendor Metrics */
    .vendor-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .metric-value {
        font-size: 1.9rem;
    }
    
    /* Enhanced Registration Steps */
    .registration-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Enhanced Mirror Container */
    .mirror-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .mirror-link-container {
        flex-direction: row;
        gap: 1rem;
    }
    
    .copy-btn {
        width: auto;
    }
    
    /* Enhanced Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        padding: 3.5rem 1.5rem 2rem;
    }
    
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Typography Enhancements */
    html { 
        font-size: 15px; 
    }
    
    .hero-title h1 { 
        font-size: 4.5rem; 
    }
    
    .title-subtitle { 
        font-size: 1.4rem; 
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    /* Enhanced Navigation */
    .nav-container { 
        padding: 0 2rem; 
    }
    
    .nav-menu {
        display: flex;
        position: static;
        width: auto;
        height: auto;
        background: none;
        flex-direction: row;
        padding: 0;
        transform: none;
        backdrop-filter: none;
        border-right: none;
    }
    
    .nav-toggle { 
        display: none; 
    }
    
    .nav-link {
        padding: 0.75rem 1.25rem;
        border-bottom: none;
        width: auto;
        margin-bottom: 0;
    }
    
    /* Enhanced Hero Section */
    .hero-section { 
        padding: 2rem; 
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    /* Enhanced Dashboard */
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .dashboard-item {
        padding: 2rem;
    }
    
    .dashboard-value {
        font-size: 2.5rem;
    }
    
    /* Enhanced Content Sections */
    .content-section {
        padding: 5rem 2rem;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    /* Enhanced About Section */
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .about-text {
        font-size: 1.05rem;
    }
    
    .feature-highlight {
        padding: 2rem;
    }
    
    /* Enhanced Feature Grid */
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2.5rem;
    }
    
    .feature-card .feature-icon {
        font-size: 3.2rem;
    }
    
    /* Enhanced Crypto Currencies */
    .crypto-currencies {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .currency-card {
        padding: 2.5rem;
    }
    
    .currency-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Enhanced Trading Tools */
    .trading-tools {
        padding: 3rem 2rem;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .tool-card {
        padding: 2rem;
    }
    
    /* Enhanced Converter */
    .converter {
        flex-direction: row;
        gap: 1rem;
    }
    
    .converter-arrow { 
        transform: none; 
    }
    
    /* Enhanced Fee Calculator */
    .fee-input {
        flex-direction: row;
        gap: 1rem;
    }
    
    /* Enhanced Vendor Process */
    .process-step {
        flex-direction: row;
        text-align: left;
        gap: 2rem;
        padding: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Enhanced Vendor Metrics */
    .vendor-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .metric-card {
        padding: 2rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    /* Enhanced Registration Steps */
    .registration-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .reg-step {
        padding: 2.5rem;
    }
    
    .registration-cta {
        padding: 3rem 2rem;
    }
    
    /* Enhanced Mirror Container */
    .mirror-item {
        padding: 2rem;
    }
    
    .mirror-header {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .mirror-link-container {
        flex-direction: row;
        gap: 1rem;
    }
    
    .mirror-security {
        padding: 2rem;
    }
    
    /* Enhanced Footer */
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        padding: 4rem 2rem 2rem;
    }
    
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

/* Large Devices (desktops, 1024px and up) */
@media (min-width: 1024px) and (max-width: 1199px) {
    /* Typography Enhancements */
    html { 
        font-size: 16px; 
    }
    
    .hero-title h1 { 
        font-size: 5.5rem; 
    }
    
    .title-subtitle { 
        font-size: 1.6rem; 
    }
    
    .section-header h2 {
        font-size: 3.2rem;
    }
    
    /* Enhanced Navigation */
    .nav-container {
        height: 80px;
    }
    
    .nav-logo {
        font-size: 1.6rem;
    }
    
    .nav-link {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
    }
    
    /* Enhanced Hero Section */
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    /* Enhanced Dashboard */
    .dashboard-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .dashboard-value {
        font-size: 2.8rem;
    }
    
    /* Enhanced Content Sections */
    .content-section {
        padding: 6rem 2rem;
    }
    
    /* Enhanced Feature Grid */
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2.5rem;
    }
    
    .feature-card .feature-icon {
        font-size: 3.5rem;
    }
    
    /* Enhanced Crypto Currencies */
    .crypto-currencies {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Enhanced Trading Tools */
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Enhanced Vendor Metrics */
    .vendor-metrics {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .metric-value {
        font-size: 2.2rem;
    }
    
    /* Enhanced Registration Steps */
    .registration-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Enhanced Footer */
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    /* Typography Enhancements */
    html { 
        font-size: 16px; 
    }
    
    .hero-title h1 { 
        font-size: 6.5rem; 
    }
    
    .title-subtitle { 
        font-size: 1.8rem; 
    }
    
    .section-header h2 {
        font-size: 3.5rem;
    }
    
    /* Enhanced Navigation */
    .nav-container {
        max-width: 1400px;
    }
    
    /* Enhanced Hero Section */
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3.2rem;
    }
    
    /* Enhanced Dashboard */
    .dashboard-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .dashboard-value {
        font-size: 3rem;
    }
    
    /* Enhanced Feature Grid */
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .feature-card .feature-icon {
        font-size: 3.8rem;
    }
    
    /* Enhanced Crypto Currencies */
    .crypto-currencies {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    /* Enhanced Trading Tools */
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    /* Enhanced Registration Steps */
    .registration-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Ultra Wide Screens (1400px and up) */
@media (min-width: 1400px) {
    /* Container Max Width */
    .main-container,
    .nav-container,
    .content-section .section-content,
    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    /* Enhanced Typography */
    .hero-title h1 {
        font-size: 7rem;
    }
    
    .title-subtitle {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 4rem;
    }
    
    /* Enhanced Feature Grid */
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    /* Enhanced Dashboard */
    .dashboard-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    /* Enhanced Stats */
    .stat-number {
        font-size: 3.5rem;
    }
    
    .dashboard-value {
        font-size: 3.2rem;
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Enhanced text rendering for high DPI */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Sharper borders and shadows */
    .feature-card,
    .currency-card,
    .dashboard-item,
    .mirror-item,
    .reg-step,
    .metric-card {
        border-width: 0.5px;
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 600px) {
    .hero-section {
        min-height: 100vh;
        padding: 1rem;
    }
    
    .hero-title h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .hero-stats {
        margin: 2rem 0;
    }
    
    .nav-container {
        height: 60px;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
}

/* Print Styles */
@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .nav-menu,
    .loading-screen,
    .background-effects,
    .cta-buttons,
    .demo-btn,
    .tool-btn,
    .copy-btn {
        display: none !important;
    }
    
    .content-section {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        page-break-after: avoid;
    }
    
    .feature-card,
    .currency-card,
    .process-step {
        page-break-inside: avoid;
        margin-bottom: 1rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .animate-in {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #ffffff;
        --secondary-color: #00ff00;
        --accent-color: #00ffff;
        --background-color: #000000;
        --text-primary: #ffffff;
        --text-secondary: #ffffff;
        --border-color: #ffffff;
    }
    
    .feature-card,
    .currency-card,
    .dashboard-item,
    .mirror-item {
        border: 2px solid var(--border-color);
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Already optimized for dark mode */
}

/* Light Mode Override (if needed) */
@media (prefers-color-scheme: light) {
    :root {
        --background-color: #ffffff;
        --surface-color: #f8f9fa;
        --text-primary: #000000;
        --text-secondary: #333333;
        --text-muted: #666666;
        --border-color: rgba(176, 109, 242, 0.2);
    }
    
    body::before {
        background: 
            radial-gradient(circle at 20% 80%, rgba(176, 109, 242, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(19, 164, 6, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(0, 255, 204, 0.02) 0%, transparent 50%);
    }
}

