﻿:root {
            --primary-color: rgb(116,125,140);
            --primary-hover: rgba(116,125,140, 0.9);
            --primary-light: rgba(116,125,140, 0.1);
            --dark-color: #2c3e50;
            --dark-bg: #1e272e;
            --light-bg: #f1f2f6;
            --white: #ffffff;
            --text-main: #2f3542;
            --text-muted: #747d8c;
            --gold-color: #f1c40f;
            --green-color: #2ecc71;
            --red-color: #e74c3c;
            --border-color: #e2e8f0;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--text-main);
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo img {
            display: block;
            height: 40px;
            width: auto;
            max-width: 160px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .logo span {
            display: inline-block;
            font-size: 20px;
            font-weight: 800;
            line-height: 1;
            color: var(--dark-color);
            white-space: nowrap;
            letter-spacing: 0.5px;
        }

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

        .nav-menu a {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            position: relative;
            padding: 8px 0;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

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

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

        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-outline {
            border: 1.5px solid var(--primary-color);
            color: var(--primary-color);
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        .btn-primary {
            background: var(--primary-color);
            color: var(--white);
            border: 1.5px solid var(--primary-color);
            box-shadow: 0 4px 15px rgba(116,125,140, 0.3);
        }

        .btn-primary:hover {
            background: var(--primary-hover);
            border-color: var(--primary-hover);
            transform: translateY(-2px);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 1002;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: var(--text-main);
            transition: var(--transition);
        }

        
        .drawer {
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            height: 100%;
            background: var(--white);
            box-shadow: 5px 0 30px rgba(0,0,0,0.15);
            z-index: 1001;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            padding: 30px 20px;
        }

        .drawer.active {
            left: 0;
        }

        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            backdrop-filter: blur(3px);
        }

        .drawer-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .drawer-close {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--text-muted);
        }

        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: auto;
        }

        .drawer-nav a {
            font-size: 16px;
            font-weight: 600;
            padding: 10px 0;
            border-bottom: 1px solid var(--light-bg);
        }

        .drawer-footer {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        
        .hero {
            padding: 160px 0 100px;
            background: radial-gradient(circle at top right, rgba(116,125,140, 0.15), var(--white) 60%);
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 50px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 48px;
            line-height: 1.2;
            color: var(--dark-color);
            margin-bottom: 20px;
            font-weight: 800;
        }

        .hero-content h1 span {
            color: var(--primary-color);
        }

        .hero-content p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 35px;
            line-height: 1.8;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            border-top: 1px solid rgba(116,125,140, 0.2);
            padding-top: 30px;
        }

        .stat-item h4 {
            font-size: 28px;
            font-weight: 700;
            color: var(--dark-color);
        }

        .stat-item p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 0;
        }

        .hero-visual {
            position: relative;
        }

        
        .trade-panel {
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            border: 1px solid var(--border-color);
            overflow: hidden;
            width: 100%;
        }

        .panel-header {
            background: var(--dark-bg);
            color: var(--white);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }

        .panel-tab {
            display: flex;
            gap: 15px;
        }

        .tab-item.active {
            color: var(--gold-color);
            font-weight: bold;
        }

        .panel-body {
            padding: 20px;
        }

        .market-pair {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 12px;
            border-bottom: 1px dashed var(--border-color);
        }

        .pair-info h5 {
            font-size: 16px;
            font-weight: 700;
        }

        .pair-info p {
            font-size: 11px;
            color: var(--text-muted);
        }

        .pair-prices {
            display: flex;
            gap: 15px;
        }

        .price-box {
            padding: 8px 12px;
            border-radius: 6px;
            text-align: center;
            min-width: 80px;
        }

        .price-box.sell {
            background: rgba(231, 76, 60, 0.1);
            color: var(--red-color);
        }

        .price-box.buy {
            background: rgba(46, 204, 113, 0.1);
            color: var(--green-color);
        }

        .price-box .type {
            font-size: 10px;
            display: block;
            text-transform: uppercase;
        }

        .price-box .num {
            font-size: 14px;
            font-weight: 700;
        }

        
        .section {
            padding: 100px 0;
        }

        .bg-light {
            background-color: var(--light-bg);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: 36px;
            color: var(--dark-color);
            margin-bottom: 15px;
            font-weight: 800;
        }

        .section-header p {
            font-size: 16px;
            color: var(--text-muted);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(116,125,140, 0.1);
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(116,125,140, 0.15);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: var(--primary-color);
            font-size: 24px;
            font-weight: bold;
        }

        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .feature-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        
        .assets-section {
            background: var(--dark-bg);
            color: var(--white);
        }

        .assets-section .section-header h2 {
            color: var(--white);
        }

        .assets-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .asset-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px 20px;
            border-radius: 10px;
            text-align: center;
            transition: var(--transition);
        }

        .asset-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary-color);
        }

        .asset-card .icon {
            font-size: 32px;
            color: var(--gold-color);
            margin-bottom: 15px;
        }

        .asset-card h4 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .asset-card p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        
        .article-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .article-card {
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .article-image {
            height: 200px;
            background-color: var(--light-bg);
            position: relative;
            overflow: hidden;
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .article-card:hover .article-image img {
            transform: scale(1.05);
        }

        .article-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-color);
            color: var(--white);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
        }

        .article-body {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .article-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .article-desc {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .article-link {
            margin-top: auto;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        
        .cta {
            background: linear-gradient(135deg, var(--dark-bg) 0%, rgb(116,125,140) 100%);
            color: var(--white);
            text-align: center;
            padding: 80px 0;
            position: relative;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 16px;
            opacity: 0.85;
            margin-bottom: 30px;
        }

        
        footer {
            background: #1e272e;
            color: rgba(255, 255, 255, 0.75);
            padding: 80px 0 30px;
            font-size: 14px;
            border-top: 3px solid var(--primary-color);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo-area .logo span {
            color: var(--white);
        }

        .footer-logo-area p {
            margin: 20px 0;
            line-height: 1.8;
            font-size: 13px;
        }

        .footer-links h4 {
            color: var(--white);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 25px;
        }

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

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

        .footer-links ul li a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .risk-warning {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-bottom: 30px;
            font-size: 12px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.45);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.45);
        }

        
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
            .hero-btns {
                justify-content: center;
            }
            .hero-stats {
                justify-content: center;
            }
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .assets-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .article-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu, .header-actions {
                display: none;
            }
            .menu-toggle {
                display: flex;
            }
            .hero h1 {
                font-size: 36px;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .article-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }