        * {
            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.85);
            backdrop-filter: blur(15px);
        }

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

        .modal-content {
            background: linear-gradient(135deg, #1a2e1a 0%, #2e4a2e 100%);
            padding: 52px;
            border-radius: 28px;
            width: 460px;
            max-width: 90vw;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 36px 72px rgba(0, 0, 0, 0.5);
        }

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

        .modal-header h2 {
            color: #ffffff;
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }

        .modal-header p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 17px;
            font-family: 'Poppins', sans-serif;
        }

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

        .form-group label {
            display: block;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }

        .form-group input {
            width: 100%;
            padding: 18px 22px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 18px;
            color: #ffffff;
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #d4af37;
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
        }

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

        .modal-buttons {
            display: flex;
            gap: 18px;
            margin-top: 36px;
        }

        .modal-btn {
            flex: 1;
            padding: 18px 28px;
            border-radius: 18px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: 'Poppins', sans-serif;
        }

        .btn-login {
            background: linear-gradient(135deg, #d4af37, #f4d03f);
            color: #1a2e1a;
        }

        .btn-login:hover {
            background: linear-gradient(135deg, #b8941f, #e6c547);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

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

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

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

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

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

        .success-message .icon {
            font-size: 56px;
            margin-bottom: 24px;
        }

        .success-message h3 {
            color: #27ae60;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 18px;
            font-family: 'Poppins', sans-serif;
        }

        .success-message p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 16px;
            line-height: 1.7;
            font-family: 'Poppins', sans-serif;
        }



        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #0f1f0f 0%, #1a2e1a 50%, #2e4a2e 100%);
            color: #ffffff;
            line-height: 1.7;
            min-height: 100vh;
        }

        .header {
            background: rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
            padding: 0;
            backdrop-filter: blur(25px);
            z-index: 100;
        }

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

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

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

        .logo {
            width: 36px;
            height: 36px;
            background: url('logo.png') no-repeat center;
            background-size: contain;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #1a2e1a;
            font-size: 18px;
        }

        .brand-name {
            font-size: 28px;
            font-weight: 900;
            background: linear-gradient(135deg, #d4af37, #27ae60, #f4d03f);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
        }

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

        .nav-menu a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            font-family: 'Poppins', sans-serif;
        }

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

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

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

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

        .nav-button {
            padding: 14px 28px;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
        }

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

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 6px 24px rgba(212, 175, 55, 0.2);
        }

        .btn-primary {
            background: linear-gradient(135deg, #d4af37, #f4d03f);
            color: #1a2e1a;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #b8941f, #e6c547);
            transform: translateY(-1px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        .market-stats {
            background: rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            padding: 18px 0;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.85);
            font-family: 'Poppins', sans-serif;
        }

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

        .stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }

        .stat-positive {
            color: #27ae60;
        }

        .stat-negative {
            color: #e74c3c;
        }

        .main-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 90px 36px;
        }

        .page-title {
            font-size: 52px;
            font-weight: 900;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff, #f4d03f, #27ae60);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Poppins', sans-serif;
            letter-spacing: -0.03em;
        }

        .page-subtitle {
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 52px;
            font-size: 19px;
            line-height: 1.7;
            font-family: 'Poppins', sans-serif;
        }

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

        .tabs {
            display: flex;
            gap: 6px;
            margin-bottom: 52px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 18px;
            padding: 8px;
            backdrop-filter: blur(12px);
        }

        .tab {
            padding: 18px 36px;
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.75);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            border-radius: 14px;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .tab.active {
            background: linear-gradient(135deg, #d4af37, #f4d03f);
            color: #1a2e1a;
            box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
        }

        .exchanges-table {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 28px;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.12);
            backdrop-filter: blur(25px);
        }

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

        th {
            background: rgba(255, 255, 255, 0.06);
            padding: 28px 32px;
            text-align: left;
            font-weight: 800;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(212, 175, 55, 0.12);
            text-transform: uppercase;
            letter-spacing: 0.6px;
            font-family: 'Poppins', sans-serif;
        }

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

        td {
            padding: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
        }

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

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

        .rank {
            font-weight: 900;
            font-size: 20px;
            color: #d4af37;
            text-align: center;
            font-family: 'Poppins', sans-serif;
        }

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

        .exchange-logo {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            color: #000;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .exchange-logo img {
            max-width: 40px;
            max-height: 40px;
            border-radius: 10px;
        }

        .exchange-name {
            font-weight: 800;
            font-size: 17px;
            color: #ffffff;
            font-family: 'Poppins', sans-serif;
        }

        .trading-volume {
            font-weight: 800;
            font-size: 17px;
            color: #27ae60;
            font-family: 'Poppins', sans-serif;
        }

        .liquidity-score {
            font-weight: 800;
            color: #f4d03f;
            font-size: 17px;
            font-family: 'Poppins', sans-serif;
        }

        .weekly-visits {
            color: rgba(255, 255, 255, 0.75);
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
        }

        .markets-count {
            color: rgba(255, 255, 255, 0.75);
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
        }

        .coins-count {
            color: rgba(255, 255, 255, 0.75);
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
        }

        .fiat-supported {
            color: rgba(255, 255, 255, 0.75);
            font-size: 14px;
            line-height: 1.5;
            font-family: 'Poppins', sans-serif;
        }

        .volume-chart {
            width: 110px;
            height: 52px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 14px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }

        .chart-line {
            position: absolute;
            bottom: 2px;
            left: 2px;
            right: 2px;
            height: calc(100% - 4px);
            background: linear-gradient(180deg, rgba(39, 174, 96, 0.7) 0%, rgba(39, 174, 96, 0.4) 50%, rgba(39, 174, 96, 0.15) 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: 10px;
        }

        .chart-line::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #27ae60;
            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(231, 76, 60, 0.7) 0%, rgba(231, 76, 60, 0.4) 50%, rgba(231, 76, 60, 0.15) 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: #e74c3c;
            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.04);
            border-top: 1px solid rgba(212, 175, 55, 0.12);
            margin-top: 140px;
        }

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

        .footer-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 90px 36px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 52px;
        }

        .footer-section h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 28px;
            color: #ffffff;
            font-family: 'Poppins', sans-serif;
        }

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

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

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

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

        .footer-bottom {
            background: rgba(255, 255, 255, 0.03);
            padding: 36px;
            text-align: left;
            border-top: 1px solid rgba(212, 175, 55, 0.08);
            display: flex;
            justify-content: center;
            gap: 28px;
        }

        .company-info p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 8px;
            font-family: 'Poppins', 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.85);
            backdrop-filter: blur(15px);
        }

        .contact-modal-content {
            background-color: #1a2e1a;
            margin: 5% auto;
            padding: 0;
            border-radius: 24px;
            width: 90%;
            max-width: 560px;
            box-shadow: 0 36px 72px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(212, 175, 55, 0.2);
            animation: contactModalSlideIn 0.3s ease-out;
        }

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

        .contact-modal-header {
            background: linear-gradient(135deg, #d4af37, #f4d03f);
            padding: 28px 36px;
            border-radius: 24px 24px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-modal-header h2 {
            margin: 0;
            color: #1a2e1a;
            font-size: 26px;
            font-weight: 800;
            font-family: 'Poppins', sans-serif;
        }

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

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

        .contact-modal-body {
            padding: 36px;
            background-color: #1a2e1a;
            border-radius: 0 0 24px 24px;
        }

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

        .contact-form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #ffffff;
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
        }

        .contact-form-group input,
        .contact-form-group select,
        .contact-form-group textarea {
            width: 100%;
            padding: 18px 22px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 14px;
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
            background-color: rgba(255, 255, 255, 0.06);
            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: #d4af37;
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
        }

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

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

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

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

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

        .contact-submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #d4af37, #f4d03f);
            color: #1a2e1a;
            border: none;
            padding: 18px;
            border-radius: 14px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            font-family: 'Poppins', sans-serif;
        }

        .contact-submit-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

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

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

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

        .contact-success-message h3 {
            color: #27ae60;
            margin-bottom: 14px;
            font-size: 22px;
            font-family: 'Poppins', sans-serif;
        }

        .contact-success-message p {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.6;
            font-family: 'Poppins', sans-serif;
        }

        .trigger-btn {
            background: linear-gradient(135deg, #d4af37, #f4d03f);
            color: #1a2e1a;
            border: none;
            padding: 14px 28px;
            border-radius: 14px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            margin: 24px;
            transition: transform 0.2s;
            font-family: 'Poppins', sans-serif;
        }

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

        .monitoring-section {
            background: rgba(255, 255, 255, 0.04);
            padding: 140px 36px;
            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(212,175,55,0.15)" stroke-width="0.6"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.4;
        }

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

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

        .monitoring-title {
            font-size: 52px;
            font-weight: 900;
            background: linear-gradient(135deg, #d4af37, #f4d03f);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 28px;
            line-height: 1.3;
            font-family: 'Poppins', sans-serif;
            letter-spacing: -0.03em;
        }

        .monitoring-subtitle {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.7;
            font-family: 'Poppins', sans-serif;
        }

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

        .monitoring-text {
            color: #ffffff;
        }

        .monitoring-description {
            font-size: 19px;
            line-height: 1.9;
            margin-bottom: 44px;
            color: rgba(255, 255, 255, 0.85);
            font-family: 'Poppins', sans-serif;
        }

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

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

        .monitoring-features li::before {
            content: '✓';
            display: inline-block;
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #d4af37, #f4d03f);
            color: #1a2e1a;
            border-radius: 50%;
            text-align: center;
            line-height: 32px;
            font-weight: bold;
            font-size: 18px;
            margin-right: 18px;
            flex-shrink: 0;
        }

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

        .monitoring-chart {
            width: 100%;
            max-width: 440px;
            height: 320px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 24px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(12px);
        }

        .monitoring-chart::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 49%, rgba(212, 175, 55, 0.15) 50%, transparent 51%);
            background-size: 24px 24px;
        }

        .chart-icon {
            font-size: 72px;
            color: #d4af37;
            margin-bottom: 24px;
            animation: pulse 2s infinite ease-in-out;
        }

        .chart-text {
            color: rgba(255, 255, 255, 0.85);
            font-size: 17px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
        }

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

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

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

        .stat-number {
            font-size: 44px;
            font-weight: 900;
            color: #d4af37;
            display: block;
            margin-bottom: 14px;
            font-family: 'Poppins', sans-serif;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.75);
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-family: 'Poppins', sans-serif;
        }

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

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

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

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

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

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

        .content h2, .content h3 {
            padding-bottom: 28px;
            color: #d4af37;
            font-family: 'Poppins', sans-serif;
        }

        .content p {
            padding-bottom: 28px;
            color: rgba(255, 255, 255, 0.85);
            font-family: 'Poppins', sans-serif;
        }

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

        .disclaimer {
            background: rgba(0, 0, 0, 0.25);
            padding: 28px;
            border-top: 1px solid rgba(212, 175, 55, 0.15);
        }

        .disclaimer-content {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 36px;
        }

        .disclaimer h4 {
            color: #e74c3c;
            font-size: 17px;
            font-weight: 800;
            margin-bottom: 14px;
            font-family: 'Poppins', sans-serif;
        }

        .disclaimer p {
            color: rgba(255, 255, 255, 0.65);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }

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


            ul.nav-menu, .tabs {
                display: none !important;
            }

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

            .nav-right a.nav-button.btn-secondary {
                display: none;
            }

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

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

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

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

            table {
                font-size: 15px;
            }

            th, td {
                padding: 18px 14px;
            }

            .exchange-info {
                gap: 14px;
            }

            .exchange-logo {
                width: 36px;
                height: 36px;
                font-size: 13px;
            }
        }
