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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: #0d1421;
            color: #ffffff;
            line-height: 1.6;
        }

        .header {
            background: linear-gradient(135deg, #1a2332 0%, #0d1421 100%);
            border-bottom: 1px solid #2a3441;
            padding: 0;
        }

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

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

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

        .logo {
            width: 24px;
            height: 24px;
            background: url('logo.webp') no-repeat center;
            background-size: contain;
            /*filter: brightness(0) invert(1);*/
        }

        .brand-name {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            text-decoration: none;
        }

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

        .nav-menu a {
            color: #a0aec0;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s ease;
        }

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

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

        .nav-button {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .btn-secondary {
            background: transparent;
            color: #a0aec0;
            border: 1px solid #2a3441;
        }

        .btn-secondary:hover {
            background: #2a3441;
            color: #ffffff;
        }

        .btn-primary {
            background: #3182ce;
            color: #ffffff;
        }

        .btn-primary:hover {
            background: #2c5aa0;
        }

        .market-stats {
            background: #1a2332;
            border-bottom: 1px solid #2a3441;
            padding: 8px 0;
            font-size: 12px;
            color: #a0aec0;
        }

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

        .stat-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .stat-positive {
            color: #48bb78;
        }

        .stat-negative {
            color: #f56565;
        }

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

        .page-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #ffffff;
        }

        .page-subtitle {
            color: #a0aec0;
            margin-bottom: 30px;
            font-size: 14px;
        }

        .page-subtitle a {
            color: #3182ce;
            text-decoration: none;
        }

        .tabs {
            display: flex;
            gap: 0;
            margin-bottom: 30px;
            border-bottom: 1px solid #2a3441;
        }

        .tab {
            padding: 12px 20px;
            background: transparent;
            border: none;
            color: #a0aec0;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            transition: all 0.2s ease;
        }

        .tab.active {
            color: #3182ce;
            border-bottom-color: #3182ce;
        }

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

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

        .control-btn {
            padding: 8px 16px;
            background: #2a3441;
            border: 1px solid #3a4553;
            border-radius: 6px;
            color: #a0aec0;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .control-btn:hover {
            background: #3a4553;
            color: #ffffff;
        }

        .exchanges-table {
            background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a3441;
        }

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

        th {
            background: #0f1419;
            padding: 16px 20px;
            text-align: left;
            font-weight: 600;
            font-size: 13px;
            color: #a0aec0;
            border-bottom: 1px solid #2a3441;
        }

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

        td {
            padding: 20px;
            border-bottom: 1px solid #2a3441;
            font-size: 14px;
        }

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

        tr:hover {
            background: rgba(49, 130, 206, 0.05);
        }

        .rank {
            font-weight: 600;
            color: #a0aec0;
        }

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

        .exchange-logo {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 12px;
            color: #000;
        }

        .exchange-logo img {
            max-width: 25px;
        }

        .exchange-name {
            font-weight: 600;
            color: #ffffff;
        }

        .trading-volume {
            font-weight: 600;
            color: #ffffff;
        }

        .liquidity-score {
            font-weight: 500;
            color: #48bb78;
        }

        .weekly-visits {
            color: #a0aec0;
        }

        .markets-count {
            color: #a0aec0;
        }

        .coins-count {
            color: #a0aec0;
        }

        .fiat-supported {
            color: #a0aec0;
            font-size: 12px;
            line-height: 1.4;
        }

        .volume-chart {
            width: 80px;
            height: 40px;
            background: #1a2332;
            border-radius: 6px;
            position: relative;
            overflow: hidden;
            border: 1px solid #2a3441;
        }

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

        .chart-line::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: #48bb78;
            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(245, 101, 101, 0.8) 0%, rgba(245, 101, 101, 0.3) 50%, rgba(245, 101, 101, 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: #f56565;
            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: #0f1419;
            border-top: 1px solid #2a3441;
            margin-top: 80px;
        }

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

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

        .footer-section h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #ffffff;
        }

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

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

        .footer-section a {
            color: #a0aec0;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s ease;
        }

        .footer-section a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            background: #0d1421;
            padding: 20px;
            text-align: left;
            border-top: 1px solid #2a3441;
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .company-info {
        }

        .company-info p {
            color: #a0aec0;
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 4px;
        }

        .disclaimer {
            background: #0a0f14;
            padding: 20px;
            border-top: 1px solid #1a2332;
        }

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

        .disclaimer h4 {
            color: #f56565;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .disclaimer p {
            color: #718096;
            font-size: 12px;
            line-height: 1.5;
            margin-bottom: 8px;
        }

        /* 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(5px);
        }

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

        .modal-content {
            background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
            padding: 40px;
            border-radius: 12px;
            width: 400px;
            max-width: 90vw;
            border: 1px solid #2a3441;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
        }

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

        .modal-header h2 {
            color: #ffffff;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .modal-header p {
            color: #a0aec0;
            font-size: 14px;
        }

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

        .form-group label {
            display: block;
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .form-group input {
            width: 100%;
            padding: 12px 16px;
            background: #0d1421;
            border: 1px solid #2a3441;
            border-radius: 8px;
            color: #ffffff;
            font-size: 14px;
            transition: border-color 0.2s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #3182ce;
            box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
        }

        .form-group input::placeholder {
            color: #718096;
        }

        .modal-buttons {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }

        .modal-btn {
            flex: 1;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
        }

        .btn-login {
            background: #3182ce;
            color: #ffffff;
        }

        .btn-login:hover {
            background: #2c5aa0;
        }

        .btn-cancel {
            background: transparent;
            color: #a0aec0;
            border: 1px solid #2a3441;
        }

        .btn-cancel:hover {
            background: #2a3441;
            color: #ffffff;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: #a0aec0;
            font-size: 24px;
            cursor: pointer;
            transition: color 0.2s ease;
        }

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

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

        .success-message .icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .success-message h3 {
            color: #48bb78;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .success-message p {
            color: #a0aec0;
            font-size: 14px;
            line-height: 1.5;
        }

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

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

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

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

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

            table {
                font-size: 12px;
            }

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

            .exchange-info {
                gap: 8px;
            }

            .exchange-logo {
                width: 24px;
                height: 24px;
                font-size: 10px;
            }
        }


        /* 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(4px);
        }

        .contact-modal-content {
            background-color: #1e1e1e;
            margin: 5% auto;
            padding: 0;
            border-radius: 12px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid #333;
            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, #f0b90b, #f8d12f);
            padding: 20px 25px;
            border-radius: 12px 12px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-modal-header h2 {
            margin: 0;
            color: #1e1e1e;
            font-size: 1.5rem;
            font-weight: 600;
        }

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

        .contact-close:hover {
            color: #666;
        }

        .contact-modal-body {
            padding: 25px;
            background-color: #1e1e1e;
            border-radius: 0 0 12px 12px;
        }

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

        .contact-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #e6e6e6;
            font-size: 14px;
        }

        .contact-form-group input,
        .contact-form-group select,
        .contact-form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #333;
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
            background-color: #2a2a2a;
            color: #e6e6e6;
            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: #f0b90b;
            box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.1);
        }

        .contact-form-group input::placeholder,
        .contact-form-group textarea::placeholder {
            color: #999;
        }

        .contact-form-group select option {
            background-color: #2a2a2a;
            color: #e6e6e6;
        }

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

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

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

        .contact-submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #f0b90b, #f8d12f);
            color: #1e1e1e;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .contact-submit-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 5px 15px rgba(240, 185, 11, 0.3);
        }

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

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

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

        .contact-success-message h3 {
            color: #28a745;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .contact-success-message p {
            color: #ccc;
            line-height: 1.5;
        }

        /* Demo trigger button */
        .trigger-btn {
            background: linear-gradient(135deg, #f0b90b, #f8d12f);
            color: #1e1e1e;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            margin: 20px;
            transition: transform 0.2s;
        }

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

        .monitoring-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 80px 20px;
            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="%23333" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.1;
        }

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

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

        .monitoring-title {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #f0b90b, #f8d12f);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .monitoring-subtitle {
            font-size: 1.3rem;
            color: #b8b8b8;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

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

        .monitoring-text {
            color: #e6e6e6;
        }

        .monitoring-description {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: #cccccc;
        }

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

        .monitoring-features li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1rem;
            color: #e6e6e6;
        }

        .monitoring-features li::before {
            content: '✓';
            display: inline-block;
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #f0b90b, #f8d12f);
            color: #1a1a1a;
            border-radius: 50%;
            text-align: center;
            line-height: 24px;
            font-weight: bold;
            font-size: 14px;
            margin-right: 15px;
            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: linear-gradient(135deg, #2a2a2a, #1e1e1e);
            border-radius: 16px;
            border: 2px solid #333;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

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

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

        .chart-text {
            color: #b8b8b8;
            font-size: 1.1rem;
            font-weight: 500;
        }

        @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: 50px;
            gap: 30px;
        }

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

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #f0b90b;
            display: block;
            margin-bottom: 8px;
        }

        .stat-label {
            color: #b8b8b8;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .monitoring-section {
                padding: 50px 15px;
            }

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

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

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

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

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

.content h2, .content h3 {
    padding-bottom: 20px;
    color: #4d8ac8;
}

.content p {
    padding-bottom: 20px;
}

.content a { color: #4d8ac8; }