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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #151a2f 0%, #090310 100%);
            color: #ffffff;
            line-height: 1.6;
            min-height: 100vh;
        }

        .header {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

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

        .nav-left {
            display: flex;
            align-items: center;
            gap: 40px;
        }

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

        .logo {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            font-size: 16px;
        }

        .logo::before {
            content: "₿";
        }

        .brand-name {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-menu {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-menu a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 20px;
        }

        .nav-menu a:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-button {
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .btn-primary {
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }

        .market-stats {
            background: rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 12px 0;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .stat-positive {
            color: #4ecdc4;
        }

        .stat-negative {
            color: #ff6b6b;
        }

        .main-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 50px 24px;
        }

        .page-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 16px;
            color: #ffffff;
            text-align: center;
            background: linear-gradient(135deg, #ff6b6b, #feca57, #4ecdc4);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .page-subtitle {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            font-size: 16px;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 40px;
        }

        .page-subtitle a {
            color: #4ecdc4;
            text-decoration: none;
            font-weight: 600;
        }

        .tabs {
            display: flex;
            gap: 0;
            margin-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            justify-content: center;
        }

        .tab {
            padding: 16px 32px;
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            border-radius: 8px 8px 0 0;
        }

        .tab.active {
            color: #ffffff;
            border-bottom-color: #4ecdc4;
            background: rgba(78, 205, 196, 0.1);
        }

        .tab:hover:not(.active) {
            color: rgba(255, 255, 255, 0.9);
            background: rgba(255, 255, 255, 0.05);
        }

        .controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .control-buttons {
            display: flex;
            gap: 12px;
        }

        .control-btn {
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .control-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            transform: translateY(-2px);
        }

        .exchanges-table {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th {
            background: rgba(0, 0, 0, 0.2);
            padding: 20px 24px;
            text-align: left;
            font-weight: 700;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        th:first-child {
            width: 50px;
        }

        td {
            padding: 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 15px;
        }

        tr:last-child td {
            border-bottom: none;
        }

        tr:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: scale(1.01);
            transition: all 0.3s ease;
        }

        .rank {
            font-weight: 700;
            color: #4ecdc4;
            font-size: 18px;
        }

        .exchange-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .exchange-logo {
            width: 40px;
            height: 40px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            color: #000;
            background: linear-gradient(135deg, #000000, #000000);
            box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
        }
        .exchange-logo img {
            max-width: 32px;
            padding: 3px;
        }

        .exchange-name {
            font-weight: 700;
            color: #ffffff;
            font-size: 16px;
        }

        .trading-volume {
            font-weight: 700;
            color: #4ecdc4;
            font-size: 16px;
        }

        .liquidity-score {
            font-weight: 600;
            color: #feca57;
            font-size: 16px;
        }

        .weekly-visits {
            color: rgba(255, 255, 255, 0.8);
        }

        .markets-count {
            color: rgba(255, 255, 255, 0.8);
        }

        .coins-count {
            color: rgba(255, 255, 255, 0.8);
        }

        .fiat-supported {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
            line-height: 1.4;
        }

        .volume-chart {
            width: 100px;
            height: 50px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .chart-line {
            position: absolute;
            bottom: 2px;
            left: 2px;
            right: 2px;
            height: calc(100% - 4px);
            background: linear-gradient(180deg, rgba(78, 205, 196, 0.8) 0%, rgba(78, 205, 196, 0.3) 50%, rgba(78, 205, 196, 0.1) 100%);
            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%);
            border-radius: 8px;
        }

        .chart-line::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #4ecdc4;
            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 {
            background: linear-gradient(180deg, rgba(255, 107, 107, 0.8) 0%, rgba(255, 107, 107, 0.3) 50%, rgba(255, 107, 107, 0.1) 100%);
            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 {
            background: #ff6b6b;
            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 {
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 100px;
            backdrop-filter: blur(20px);
        }

        .logoFoot img {
            max-width: 120px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 24px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
        }

        .footer-section h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            padding: 4px 0;
            display: inline-block;
        }

        .footer-section a:hover {
            color: #4ecdc4;
            transform: translateX(5px);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.4);
            padding: 30px 24px;
            text-align: left;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .company-info {
        }

        .company-info p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 6px;
        }

        .disclaimer {
            background: rgba(0, 0, 0, 0.5);
            padding: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .disclaimer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .disclaimer h4 {
            color: #ff6b6b;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .disclaimer p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }

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

        .modal-content {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            padding: 50px;
            border-radius: 20px;
            width: 450px;
            max-width: 90vw;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(20px);
        }

        .modal-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .modal-header h2 {
            color: #ffffff;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .modal-header p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .form-group input {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: #ffffff;
            font-size: 15px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .form-group input:focus {
            outline: none;
            border-color: #4ecdc4;
            box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .modal-buttons {
            display: flex;
            gap: 15px;
            margin-top: 40px;
        }

        .modal-btn {
            flex: 1;
            padding: 15px 25px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-login {
            background: linear-gradient(135deg, #4ecdc4, #44a08d);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
        }

        .btn-cancel {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-cancel:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            transform: translateY(-2px);
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 25px;
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 28px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            color: #ffffff;
            transform: scale(1.1);
        }

        .success-message {
            text-align: center;
            padding: 30px;
        }

        .success-message .icon {
            font-size: 60px;
            margin-bottom: 20px;
        }

        .success-message h3 {
            color: #4ecdc4;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .success-message p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            line-height: 1.6;
        }

        /* Contact Modal Styles */
        .contact-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
        }

        .contact-modal-content {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            margin: 5% auto;
            padding: 0;
            border-radius: 20px;
            width: 90%;
            max-width: 550px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: contactModalSlideIn 0.4s ease-out;
            backdrop-filter: blur(20px);
        }

        @keyframes contactModalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .contact-modal-header {
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            padding: 25px 30px;
            border-radius: 20px 20px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-modal-header h2 {
            margin: 0;
            color: #ffffff;
            font-size: 24px;
            font-weight: 700;
        }

        .contact-close {
            color: #ffffff;
            font-size: 32px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
            transition: all 0.3s ease;
        }

        .contact-close:hover {
            transform: scale(1.1) rotate(90deg);
        }

        .contact-modal-body {
            padding: 30px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 0 0 20px 20px;
            backdrop-filter: blur(20px);
        }

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

        .contact-form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #ffffff;
            font-size: 15px;
        }

        .contact-form-group input,
        .contact-form-group select,
        .contact-form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            font-size: 15px;
            font-family: inherit;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            transition: all 0.3s ease;
            box-sizing: border-box;
            backdrop-filter: blur(10px);
        }

        .contact-form-group input:focus,
        .contact-form-group select:focus,
        .contact-form-group textarea:focus {
            outline: none;
            border-color: #4ecdc4;
            box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
            background: rgba(255, 255, 255, 0.15);
        }

        .contact-form-group input::placeholder,
        .contact-form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .contact-form-group select option {
            background: rgba(102, 126, 234, 0.9);
            color: #ffffff;
        }

        .contact-form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form-row {
            display: flex;
            gap: 20px;
        }

        .contact-form-row .contact-form-group {
            flex: 1;
        }

        .contact-submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #4ecdc4, #44a08d);
            color: #ffffff;
            border: none;
            padding: 18px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
        }

        .contact-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
        }

        .contact-submit-btn:active {
            transform: translateY(0);
        }

        /* Success Message */
        .contact-success-message {
            display: none;
            text-align: center;
            padding: 40px;
            color: #ffffff;
        }

        .contact-success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #4ecdc4, #44a08d);
            border-radius: 50%;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
        }

        .contact-success-message h3 {
            color: #4ecdc4;
            margin-bottom: 15px;
            font-size: 24px;
            font-weight: 700;
        }

        .contact-success-message p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: 16px;
        }

        /* Demo trigger button */
        .trigger-btn {
            background: linear-gradient(135deg, #ff6b6b, #feca57);
            color: #ffffff;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            margin: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }

        .trigger-btn:hover {
            transform: translateY(-3px);
            text-decoration: none;
            color: #ffffff;
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }

        .monitoring-section {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
            padding: 100px 24px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
        }

        .monitoring-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .monitoring-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .monitoring-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .monitoring-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff6b6b, #feca57, #4ecdc4);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .monitoring-subtitle {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .monitoring-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .monitoring-text {
            color: #ffffff;
        }

        .monitoring-description {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
        }

        .monitoring-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .monitoring-features li {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #ffffff;
        }

        .monitoring-features li::before {
            content: '✓';
            display: inline-block;
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #4ecdc4, #44a08d);
            color: #ffffff;
            border-radius: 50%;
            text-align: center;
            line-height: 32px;
            font-weight: bold;
            font-size: 16px;
            margin-right: 20px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
        }

        .monitoring-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .monitoring-chart {
            width: 100%;
            max-width: 450px;
            height: 350px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .monitoring-chart::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 49%, rgba(78, 205, 196, 0.1) 50%, transparent 51%);
            background-size: 25px 25px;
        }

        .chart-icon {
            font-size: 5rem;
            color: #4ecdc4;
            margin-bottom: 20px;
            animation: pulse 2s infinite ease-in-out;
        }

        .chart-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            font-weight: 600;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.7; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1); }
        }

        .monitoring-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 60px;
            gap: 40px;
        }

        .stat-item {
            text-align: center;
            flex: 1;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #4ecdc4;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .content h2, .content h3 {
            padding-bottom: 25px;
            color: #4ecdc4;
            font-weight: 700;
        }

        .content p {
            padding-bottom: 25px;
            color: rgba(255, 255, 255, 0.9);
        }

        .content a { 
            color: #4ecdc4; 
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 20px;
                padding: 20px 24px;
            }

            .exchanges-table {
                overflow-x: auto;
            }

            .nav-menu {
                flex-wrap: wrap;
                justify-content: center;
                display: none;
            }

            .stats-container {
                justify-content: center;
            }

            .page-title {
                font-size: 32px;
            }

            .controls {
                flex-direction: column;
                gap: 20px;
                align-items: stretch;
            }

            table {
                font-size: 13px;
            }

            th, td {
                padding: 16px 12px;
            }

            .exchange-info {
                gap: 12px;
            }

            .exchange-logo {
                width: 32px;
                height: 32px;
                font-size: 12px;
            }

            .monitoring-section {
                padding: 60px 20px;
            }

            .monitoring-title {
                font-size: 2.5rem;
            }

            .monitoring-subtitle {
                font-size: 1.2rem;
            }

            .monitoring-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            .monitoring-stats {
                flex-direction: column;
                gap: 25px;
            }

            .stat-number {
                font-size: 2.5rem;
            }
        }