              :root {
            /* Warm coral/rose color scheme for Macorpose */
            --bg-dark: #0f0a0a; 
            --bg-medium: #1c1415; 
            --bg-light: #2d2224;
            --border-color: rgba(251, 113, 133, 0.2);
            --primary-accent: #f43f5e; 
            --secondary-accent: #fb7185; 
            --tertiary-accent: #fda4af;
            --text-primary: #fef2f2; 
            --text-secondary: #a8a29e; 
            --positive-color: #4ade80; 
            --negative-color: #fb923c; 
        }

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

        
        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 10% 20%, rgba(244, 63, 94, 0.15) 0%, transparent 45%),
                        radial-gradient(ellipse at 90% 80%, rgba(251, 113, 133, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }


        .modal, .contact-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(15, 10, 10, 0.92);
            backdrop-filter: blur(12px);
        }

        .modal.show, .contact-modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        
        .modal-content, .contact-modal-content {
            background: var(--bg-medium);
            padding: 48px;
            border-radius: 20px;
            width: 460px;
            max-width: 90vw;
            border: 1px solid var(--border-color);
            box-shadow: 0 25px 80px rgba(244, 63, 94, 0.25);
        }

        
        .modal-header, .contact-modal-header {
            text-align: left;
            margin-bottom: 32px;
            border-left: 3px solid var(--primary-accent);
            padding-left: 16px;
            border-bottom: none;
            padding-bottom: 16px;
        }

        .modal-header h2, .contact-modal-header h2 {
            color: var(--text-primary);
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }

        .modal-header p {
            color: var(--text-secondary);
            font-size: 15px;
        }

        .form-group, .contact-form-group {
            margin-bottom: 24px;
        }

        
        .form-group label, .contact-form-group label {
            display: block;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: 0px;
        }

        
        .form-group input, .contact-form-group input, .contact-form-group select, .contact-form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-primary);
            font-size: 15px;
            transition: all 0.3s ease-in-out;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        
        .form-group input:focus, .contact-form-group input:focus, .contact-form-group select:focus, .contact-form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-accent);
            box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.15);
        }
        
        .modal-buttons {
            display: flex;
            gap: 14px;
            margin-top: 32px;
        }

        
        .modal-btn {
            flex: 1;
            padding: 14px 24px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            border: none;
            text-transform: none;
            letter-spacing: 0px;
        }

        
        .btn-login, .contact-submit-btn {
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            color: white;
        }

        .btn-login:hover, .contact-submit-btn:hover {
            background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(244, 63, 94, 0.4);
        }

        .btn-cancel {
            background: var(--bg-light);
            color: var(--text-primary);
            border: 1px solid var(--border-color);
        }

        .btn-cancel:hover {
            background: var(--bg-dark);
            border-color: var(--primary-accent);
            color: var(--text-primary);
        }

        .close-modal, .contact-close {
            position: absolute;
            top: 20px;
            right: 24px;
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 32px;
            cursor: pointer;
            transition: color 0.3s ease;
            font-weight: 300;
        }

        .close-modal:hover, .contact-close:hover {
            color: var(--secondary-accent);
        }

        
        .header {
            background: linear-gradient(180deg, rgba(10, 1, 24, 0.8) 0%, rgba(26, 15, 46, 0.6) 100%);
            border-bottom: 1px solid var(--border-color);
            padding: 0;
            backdrop-filter: blur(20px);
            z-index: 100;
        }

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

        
        .logo {
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            border-radius: 12px;
        }

        
        .brand-name {
            font-size: 24px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }

        .nav-menu a {
            color: var(--text-secondary);
            font-size: 15px;
            font-weight: 600;
        }
        
        
        .nav-menu a::after {
            background: var(--secondary-accent);
        }

        .nav-menu a:hover {
            color: var(--primary-accent);
        }

        
        .nav-button {
            padding: 11px 22px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 700;
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
        }

        .btn-secondary:hover {
            background: var(--bg-light);
            border-color: var(--primary-accent);
            color: var(--text-primary);
        }

        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--secondary-accent), var(--primary-accent));
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(244, 63, 94, 0.3);
        }


        .market-stats {
            background: var(--bg-dark);
            border-bottom: 1px solid var(--border-color);
            padding: 14px 0;
            font-size: 13px;
            color: var(--text-secondary);
        }

        
        .stat-item {
            gap: 10px;
            padding: 8px 16px;
            background: var(--bg-light);
            border-radius: 10px;
            border: 1px solid var(--border-color);
            font-weight: 500;
        }

        .stat-positive { color: var(--positive-color); }
        .stat-negative { color: var(--negative-color); }


        .main-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 90px 40px;
            position: relative;
            z-index: 1;
        }

        
        .page-title {
            font-size: 58px;
            font-weight: 900;
            margin-bottom: 18px;
            background: linear-gradient(135deg, var(--text-primary), var(--primary-accent), var(--secondary-accent));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -2px;
        }

        .page-subtitle {
            color: var(--text-secondary);
            margin-bottom: 60px;
            font-size: 19px;
            max-width: 700px;
            line-height: 1.7;
        }

        .page-subtitle a {
            color: var(--secondary-accent);
            text-decoration: none;
            font-weight: 600;
        }
        

        .tabs {
            gap: 12px;
            margin-bottom: 45px;
        }
        
        
        .tab {
            padding: 14px 28px;
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 15px;
            font-weight: 700;
            border-radius: 12px;
        }

        
        .tab.active {
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            color: white;
            border-color: var(--secondary-accent);
            box-shadow: 0 8px 20px rgba(244, 63, 94, 0.3);
        }

        .tab:hover:not(.active) {
            background: var(--bg-medium);
            border-color: var(--primary-accent);
            color: var(--text-primary);
        }

        
        .exchanges-table {
            background: var(--bg-medium);
            border-radius: 16px;
            border: 1px solid var(--border-color);
        }

        th {
            background: rgba(45, 27, 78, 0.6);
            padding: 22px;
            font-weight: 700;
            font-size: 12px;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-color);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        td {
            padding: 22px;
            border-bottom: 1px solid var(--border-color);
            font-size: 15px;
        }
        
        tr:hover {
            background: var(--bg-light);
        }

        
        .rank {
            font-weight: 800;
            font-size: 18px;
            color: var(--primary-accent);
            font-family: 'IBM Plex Mono', monospace;
        }

        
        .exchange-logo {
            border-radius: 12px;
            background: var(--bg-light);
            border: 1px solid var(--border-color);
        }

        .exchange-name {
            font-weight: 700;
            font-size: 16px;
            color: var(--text-primary);
        }
        
        
        .trading-volume {
            font-weight: 700;
            font-size: 16px;
            color: var(--secondary-accent);
            font-family: 'IBM Plex Mono', monospace;
        }

        .liquidity-score {
            font-weight: 700;
            color: var(--primary-accent);
            font-size: 16px;
            font-family: 'IBM Plex Mono', monospace;
        }

        .weekly-visits, .markets-count, .coins-count, .fiat-supported {
            color: var(--text-secondary);
            font-weight: 500;
        }

        
        .volume-chart {
            background: var(--bg-light);
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }
        
        .chart-line {
            background: linear-gradient(180deg, rgba(251, 113, 133, 0.5) 0%, rgba(251, 113, 133, 0.05) 100%);
        }

        .chart-line::before {
            background: var(--primary-accent);
        }
        
        .chart-red .chart-line {
            background: linear-gradient(180deg, rgba(251, 146, 60, 0.5) 0%, rgba(251, 146, 60, 0.05) 100%);
        }
        
        .chart-red .chart-line::before {
            background: var(--negative-color);
        }

        .footer {
            background: var(--bg-medium);
            border-top: 1px solid var(--border-color);
            margin-top: 90px;
        }
        
        .footer-section h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .footer-section a {
            color: var(--text-secondary);
            font-size: 15px;
        }
        
        .footer-section a:hover {
            color: var(--secondary-accent);
            padding-left: 6px;
        }
        
        .footer-bottom {
            background: var(--bg-dark);
            border-top: 1px solid var(--border-color);
        }

        .company-info p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .monitoring-section {
            background: var(--bg-medium);
            padding: 90px 32px;
        }

        .monitoring-title {
            font-size: 44px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .monitoring-subtitle {
            font-size: 19px;
            color: var(--text-secondary);
        }
        
        
        .monitoring-features li::before {
            content: '✓';
            background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
        }

        .content h2, .content h3 {
            color: var(--primary-accent);
        }

        .content a { 
            color: var(--secondary-accent); 
        }

        .disclaimer h4 {
            color: var(--negative-color);
        }

        .disclaimer p {
            color: var(--text-secondary);
        }
    
        .chart2 {
            height: 640px;
            margin: 45px 0;
            background: var(--bg-medium);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            overflow: hidden;
        }
        
      


        .nav-left { display: flex; align-items: center; gap: 70px; }
        .logo-container { display: flex; align-items: center; gap: 14px; }
        .logo { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-weight: 900; color: white; font-size: 18px; }
        .nav-menu { display: flex; gap: 40px; list-style: none; }
        .nav-menu a { text-decoration: none; transition: all 0.3s ease; position: relative; }
        .nav-menu a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -8px; left: 0; transition: width 0.3s ease; border-radius: 2px; }
        .nav-menu a:hover::after { width: 100%; }
        .nav-right { display: flex; align-items: center; gap: 16px; }
        .nav-button { text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer; }
        .stats-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; gap: 40px; flex-wrap: wrap; }
        .exchanges-table { overflow: hidden; }
        table { width: 100%; border-collapse: collapse; }
        th:first-child { width: 60px; }
        tr:last-child td { border-bottom: none; }
        .exchange-info { display: flex; align-items: center; gap: 16px; }
        .exchange-logo img { max-width: 40px; max-height: 40px; border-radius: 12px; }
        .volume-chart { width: 100px; height: 45px; position: relative; overflow: hidden; }
        .chart-line { position: absolute; bottom: 2px; left: 2px; right: 2px; height: calc(100% - 4px); clip-path: polygon(0% 85%, 10% 70%, 20% 60%, 30% 45%, 40% 35%, 50% 25%, 60% 30%, 70% 40%, 80% 50%, 90% 45%, 100% 30%, 100% 100%, 0% 100%); }
        .chart-line::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; clip-path: polygon(0% 85%, 10% 70%, 20% 60%, 30% 45%, 40% 35%, 50% 25%, 60% 30%, 70% 40%, 80% 50%, 90% 45%, 100% 30%, 100% 0%, 0% 0%); }
        .chart-red .chart-line { clip-path: polygon(0% 30%, 10% 45%, 20% 55%, 30% 70%, 40% 80%, 50% 75%, 60% 85%, 70% 90%, 80% 85%, 90% 80%, 100% 75%, 100% 100%, 0% 100%); }
        .chart-red .chart-line::before { clip-path: polygon(0% 30%, 10% 45%, 20% 55%, 30% 70%, 40% 80%, 50% 75%, 60% 85%, 70% 90%, 80% 85%, 90% 80%, 100% 75%, 100% 0%, 0% 0%); }
        .footer-content { max-width: 1400px; margin: 0 auto; padding: 80px 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 50px; }
        .footer-section ul { list-style: none; }
        .footer-section li { margin-bottom: 16px; }
        .footer-bottom { padding: 32px; text-align: left; display: flex; justify-content: center; gap: 25px; }
        .logoFoot img { max-width: 100px; opacity: 0.8; }
        .contact-modal-body { padding: 32px; }
        .contact-form-row { display: flex; gap: 16px; }
        .contact-form-row .contact-form-group { flex: 1; }
        .monitoring-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
        .monitoring-header { text-align: center; margin-bottom: 80px; }
        .monitoring-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .monitoring-features { list-style: none; padding: 0; margin: 0; }
        .monitoring-features li { display: flex; align-items: center; margin-bottom: 20px; font-size: 16px; }
        .monitoring-features li::before { content: '✓'; display: inline-block; width: 28px; height: 28px; color: #ffffff; border-radius: 50%; text-align: center; line-height: 28px; font-weight: bold; font-size: 16px; margin-right: 16px; flex-shrink: 0; }
        .disclaimer { background: rgba(0, 0, 0, 0.3); padding: 26px; border-top: 1px solid rgba(255, 255, 255, 0.1); position: relative; z-index: 1; }
        .disclaimer-content { max-width: 1400px; margin: 0 auto; padding: 0 35px; }

        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 20px;
                padding: 20px 24px;
            }
            .nav-menu, .tabs { display: none; }

            ul.nav-menu.loginBtn {
                display: none;
            }
            .page-title { font-size: 40px; }
            .monitoring-title { font-size: 36px; }
            .monitoring-content { grid-template-columns: 1fr; }
            .exchanges-table {
                overflow-x: auto;
            }
        }