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

        /* 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.75);
            backdrop-filter: blur(12px);
        }

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

        .modal-content {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 48px;
            border-radius: 24px;
            width: 440px;
            max-width: 90vw;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
        }

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

        .modal-header h2 {
            color: #ffffff;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            font-family: 'Inter', sans-serif;
        }

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

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

        .form-group label {
            display: block;
            color: #ffffff;
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 8px;
            font-family: 'Inter', sans-serif;
        }

        .form-group input {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            color: #ffffff;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #6c5ce7;
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
        }

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

        .modal-buttons {
            display: flex;
            gap: 16px;
            margin-top: 32px;
        }

        .modal-btn {
            flex: 1;
            padding: 16px 24px;
            border-radius: 16px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: 'Inter', sans-serif;
        }

        .btn-login {
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            color: #ffffff;
        }

        .btn-login:hover {
            background: linear-gradient(135deg, #5f4dd3, #9087e5);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
        }

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

        .btn-cancel:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
        }

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

        .close-modal:hover {
            color: #ffffff;
        }

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

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

        .success-message h3 {
            color: #00d2d3;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
            font-family: 'Inter', sans-serif;
        }

        .success-message p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            line-height: 1.6;
            font-family: 'Inter', sans-serif;
        }

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

            .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: 14px;
            }

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

            .exchange-info {
                gap: 12px;
            }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
            color: #ffffff;
            line-height: 1.6;
            min-height: 100vh;
        }

        .header {
            background: rgba(255, 255, 255, 0.02);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 0;
            backdrop-filter: blur(20px);
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

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

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

        .logo {
            width: 32px;
            height: 32px;
            background: url('logo.png') no-repeat center;
            background-size: contain;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #0f0f23;
            font-size: 16px;
        }

        .brand-name {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, #6c5ce7, #00d2d3, #a29bfe);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            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;
            position: relative;
            font-family: 'Inter', sans-serif;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -8px;
            left: 0;
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            transition: width 0.3s ease;
            border-radius: 1px;
        }

        .nav-menu a:hover {
            color: #ffffff;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

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

        .nav-button {
            padding: 12px 24px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
        }

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

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
        }

        .btn-primary {
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            color: #ffffff;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #5f4dd3, #9087e5);
            transform: translateY(-1px);
            box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
        }

        .market-stats {
            background: rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 16px 0;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            font-family: 'Inter', sans-serif;
        }

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

        .stat-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-positive {
            color: #00d2d3;
        }

        .stat-negative {
            color: #ff6b9d;
        }

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

        .page-title {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff, #a29bfe, #00d2d3);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Inter', sans-serif;
            letter-spacing: -0.02em;
        }

        .page-subtitle {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 48px;
            font-size: 18px;
            line-height: 1.6;
            font-family: 'Inter', sans-serif;
        }

        .page-subtitle a {
            color: #6c5ce7;
            text-decoration: none;
            font-weight: 500;
        }

        .tabs {
            display: flex;
            gap: 4px;
            margin-bottom: 48px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 6px;
            backdrop-filter: blur(10px);
        }

        .tab {
            padding: 16px 32px;
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 12px;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .tab.active {
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            color: #ffffff;
            box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
        }

        .exchanges-table {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
        }

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

        th {
            background: rgba(255, 255, 255, 0.05);
            padding: 24px 28px;
            text-align: left;
            font-weight: 700;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-family: 'Inter', sans-serif;
        }

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

        td {
            padding: 28px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 15px;
            font-family: 'Inter', sans-serif;
        }

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

        tr:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .rank {
            font-weight: 800;
            font-size: 18px;
            color: #6c5ce7;
            text-align: center;
            font-family: 'Inter', sans-serif;
        }

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

        .exchange-logo {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
            color: #000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .exchange-logo img {
            max-width: 36px;
            max-height: 36px;
            border-radius: 8px;
        }

        .exchange-name {
            font-weight: 700;
            font-size: 16px;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
        }

        .trading-volume {
            font-weight: 700;
            font-size: 16px;
            color: #00d2d3;
            font-family: 'Inter', sans-serif;
        }

        .liquidity-score {
            font-weight: 700;
            color: #a29bfe;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
        }

        .weekly-visits {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            font-family: 'Inter', sans-serif;
        }

        .markets-count {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            font-family: 'Inter', sans-serif;
        }

        .coins-count {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            font-family: 'Inter', sans-serif;
        }

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

        .volume-chart {
            width: 100px;
            height: 48px;
            background: rgba(255, 255, 255, 0.05);
            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(0, 210, 211, 0.6) 0%, rgba(0, 210, 211, 0.3) 50%, rgba(0, 210, 211, 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: 2px;
            background: #00d2d3;
            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, 157, 0.6) 0%, rgba(255, 107, 157, 0.3) 50%, rgba(255, 107, 157, 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: #ff6b9d;
            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(255, 255, 255, 0.03);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 120px;
        }

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

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 32px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 48px;
        }

        .footer-section h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
        }

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

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

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .footer-section a:hover {
            color: #6c5ce7;
            padding-left: 4px;
        }

        .footer-bottom {
            background: rgba(255, 255, 255, 0.02);
            padding: 32px;
            text-align: left;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: center;
            gap: 24px;
        }

        .company-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 6px;
            font-family: 'Inter', sans-serif;
        }

        /* 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.75);
            backdrop-filter: blur(12px);
        }

        .contact-modal-content {
            background-color: #1a1a2e;
            margin: 5% auto;
            padding: 0;
            border-radius: 20px;
            width: 90%;
            max-width: 520px;
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: contactModalSlideIn 0.3s ease-out;
        }

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

        .contact-modal-header {
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            padding: 24px 32px;
            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;
            font-family: 'Inter', sans-serif;
        }

        .contact-close {
            color: #ffffff;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
            transition: color 0.2s;
        }

        .contact-close:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        .contact-modal-body {
            padding: 32px;
            background-color: #1a1a2e;
            border-radius: 0 0 20px 20px;
        }

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

        .contact-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #ffffff;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
        }

        .contact-form-group input,
        .contact-form-group select,
        .contact-form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            background-color: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            transition: border-color 0.3s, box-shadow 0.3s;
            box-sizing: border-box;
        }

        .contact-form-group input:focus,
        .contact-form-group select:focus,
        .contact-form-group textarea:focus {
            outline: none;
            border-color: #6c5ce7;
            box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
        }

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

        .contact-form-group select option {
            background-color: #1a1a2e;
            color: #ffffff;
        }

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

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

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

        .contact-submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            color: #ffffff;
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            font-family: 'Inter', sans-serif;
        }

        .contact-submit-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
        }

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

        .contact-success-message {
            display: none;
            text-align: center;
            padding: 32px;
            color: #ffffff;
        }

        .contact-success-icon {
            width: 64px;
            height: 64px;
            background: #00d2d3;
            border-radius: 50%;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        .contact-success-message h3 {
            color: #00d2d3;
            margin-bottom: 12px;
            font-size: 20px;
            font-family: 'Inter', sans-serif;
        }

        .contact-success-message p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
            font-family: 'Inter', sans-serif;
        }

        .trigger-btn {
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            color: #ffffff;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            margin: 20px;
            transition: transform 0.2s;
            font-family: 'Inter', sans-serif;
        }

        .trigger-btn:hover {
            transform: translateY(-1px);
            text-decoration: none;
            color: #ffffff;
        }

        .monitoring-section {
            background: rgba(255, 255, 255, 0.03);
            padding: 120px 32px;
            position: relative;
            overflow: hidden;
        }

        .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="rgba(108,92,231,0.1)" stroke-width="0.5"/></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: 48px;
            font-weight: 900;
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 24px;
            line-height: 1.2;
            font-family: 'Inter', sans-serif;
            letter-spacing: -0.02em;
        }

        .monitoring-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
            font-family: 'Inter', sans-serif;
        }

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

        .monitoring-text {
            color: #ffffff;
        }

        .monitoring-description {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.8);
            font-family: 'Inter', sans-serif;
        }

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

        .monitoring-features li {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 16px;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
        }

        .monitoring-features li::before {
            content: '✓';
            display: inline-block;
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            color: #ffffff;
            border-radius: 50%;
            text-align: center;
            line-height: 28px;
            font-weight: bold;
            font-size: 16px;
            margin-right: 16px;
            flex-shrink: 0;
        }

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

        .monitoring-chart {
            width: 100%;
            max-width: 400px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

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

        .chart-icon {
            font-size: 64px;
            color: #6c5ce7;
            margin-bottom: 20px;
            animation: pulse 2s infinite ease-in-out;
        }

        .chart-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
        }

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

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

        .stat-item {
            text-align: center;
            flex: 1;
        }

        .stat-number {
            font-size: 40px;
            font-weight: 900;
            color: #6c5ce7;
            display: block;
            margin-bottom: 12px;
            font-family: 'Inter', sans-serif;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Inter', sans-serif;
        }

        @media (max-width: 768px) {
            .monitoring-section {
                padding: 80px 24px;
            }

            .monitoring-title {
                font-size: 36px;
            }

            .monitoring-subtitle {
                font-size: 18px;
            }

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

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

            .stat-number {
                font-size: 32px;
            }
        }

        .content h2, .content h3 {
            padding-bottom: 24px;
            color: #6c5ce7;
            font-family: 'Inter', sans-serif;
        }

        .content p {
            padding-bottom: 24px;
            color: rgba(255, 255, 255, 0.8);
            font-family: 'Inter', sans-serif;
        }

        .content a { 
            color: #6c5ce7; 
            font-weight: 500;
        }

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

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

        .disclaimer h4 {
            color: #ff6b9d;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
            font-family: 'Inter', sans-serif;
        }

        .disclaimer p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 8px;
            font-family: 'Inter', sans-serif;
        }
