﻿:root {
            --primary: #1D7BFF;
            --accent: rgb(191,90,242);
            --bg-dark: #070B19;
            --bg-card: rgba(255, 255, 255, 0.04);
            --border-color: rgba(255, 255, 255, 0.08);
            --text-main: #E2E8F0;
            --text-muted: #94A3B8;
            --silver-white: #F8FAFC;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(7, 11, 25, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            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(--silver-white);
            white-space: nowrap;
            letter-spacing: 0.5px;
            background: linear-gradient(135deg, #FFF 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .nav-menu a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-muted);
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-menu a:hover {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }
        .burger-btn {
            display: none;
            background: none;
            border: none;
            color: var(--silver-white);
            font-size: 24px;
            cursor: pointer;
        }
        
        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .drawer-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .drawer {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100%;
            background: var(--bg-dark);
            border-right: 1px solid var(--border-color);
            z-index: 2001;
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .drawer.active {
            left: 0;
        }
        .drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .drawer-close {
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 24px;
            cursor: pointer;
        }
        .drawer-menu {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .drawer-menu a {
            font-size: 16px;
            color: var(--text-main);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .hero {
            position: relative;
            padding: 160px 20px 100px;
            background: radial-gradient(circle at 50% 30%, rgba(29, 123, 255, 0.12) 0%, rgba(191, 90, 242, 0.05) 50%, transparent 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .hero-layout-01 .brand-tag {
            background: rgba(29, 123, 255, 0.1);
            border: 1px solid rgba(29, 123, 255, 0.2);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 24px;
            display: inline-block;
        }
        .hero-layout-01 h1 {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.2;
            color: var(--silver-white);
            max-width: 800px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #FFF 30%, var(--text-muted) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-layout-01 h1 span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-layout-01 p {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 600px;
            margin-bottom: 35px;
        }
        .hero-layout-01 .btn-group {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-bottom: 60px;
        }
        .btn {
            padding: 14px 30px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #FFF;
            box-shadow: 0 4px 20px rgba(29, 123, 255, 0.3);
        }
        .btn-primary:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            color: var(--silver-white);
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        .hero-visual-container {
            position: relative;
            width: 100%;
            max-width: 1000px;
            margin-top: 40px;
        }
        .visual-panel {
            background: linear-gradient(180deg, rgba(29, 123, 255, 0.08) 0%, rgba(7, 11, 25, 0.6) 100%);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 60px 40px;
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }
        .visual-panel-content {
            max-width: 600px;
            margin: 0 auto;
        }
        .visual-panel h3 {
            font-size: 24px;
            color: var(--silver-white);
            margin-bottom: 15px;
        }
        .floating-cards {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }
        .f-card {
            position: absolute;
            background: rgba(7, 11, 25, 0.85);
            border: 1px solid rgba(29, 123, 255, 0.2);
            border-radius: 12px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            backdrop-filter: blur(8px);
            animation: floatUpDown 6s ease-in-out infinite alternate;
        }
        .f-card-1 { top: -20px; left: -40px; animation-delay: 0s; }
        .f-card-2 { top: -40px; right: -40px; animation-delay: 1.5s; }
        .f-card-3 { bottom: 20px; left: -60px; animation-delay: 3s; }
        .f-card-4 { bottom: -20px; right: -60px; animation-delay: 4.5s; }
        .f-card .icon {
            width: 36px;
            height: 36px;
            background: rgba(29, 123, 255, 0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: bold;
        }
        .f-card-2 .icon {
            background: rgba(191, 90, 242, 0.15);
            color: var(--accent);
        }
        .f-card-info {
            text-align: left;
        }
        .f-card-info .label {
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
        }
        .f-card-info .val {
            font-size: 14px;
            font-weight: 700;
            color: var(--silver-white);
        }
        @keyframes floatUpDown {
            0% { transform: translateY(0); }
            100% { transform: translateY(-12px); }
        }
        
        .trust-section {
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.02);
            border-bottom: 1px solid var(--border-color);
        }
        .trust-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .trust-item {
            text-align: center;
        }
        .trust-item h4 {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
        }
        .trust-item p {
            font-size: 13px;
            color: var(--text-muted);
        }
        
        .section-padding {
            padding: 100px 20px;
        }
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-header h2 {
            font-size: 36px;
            color: var(--silver-white);
            margin-bottom: 15px;
        }
        .section-header p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px 30px;
            transition: all 0.3s ease;
        }
        .feature-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            background: rgba(29, 123, 255, 0.03);
        }
        .feature-card .f-icon {
            width: 50px;
            height: 50px;
            background: rgba(29, 123, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 20px;
            margin-bottom: 25px;
        }
        .feature-card h3 {
            font-size: 20px;
            color: var(--silver-white);
            margin-bottom: 15px;
        }
        .feature-card p {
            color: var(--text-muted);
            font-size: 14px;
        }
        
        .article-block {
            background: rgba(255,255,255,0.01);
            border-top: 1px solid var(--border-color);
        }
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        .post-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
        }
        .post-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }
        .post-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .post-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent);
            color: #FFF;
            padding: 4px 10px;
            font-size: 11px;
            font-weight: 600;
            border-radius: 4px;
        }
        .post-info {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .post-info h3 {
            font-size: 18px;
            color: var(--silver-white);
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .post-info p {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        .post-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border-color);
            padding-top: 15px;
            font-size: 12px;
            color: var(--text-muted);
        }
        
        footer {
            background: #040711;
            border-top: 1px solid var(--border-color);
            padding: 80px 20px 40px;
        }
        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        .footer-brand p {
            color: var(--text-muted);
            margin-top: 20px;
            font-size: 14px;
            max-width: 300px;
        }
        .footer-links h4 {
            color: var(--silver-white);
            font-size: 16px;
            margin-bottom: 20px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links ul li {
            margin-bottom: 12px;
        }
        .footer-links ul li a {
            color: var(--text-muted);
            font-size: 14px;
        }
        .footer-links ul li a:hover {
            color: var(--primary);
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            border-top: 1px solid var(--border-color);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            color: var(--text-muted);
            font-size: 13px;
        }
        
        @media (max-width: 1024px) {
            .f-card-1 { left: 0; }
            .f-card-2 { right: 0; }
            .f-card-3 { left: 0; }
            .f-card-4 { right: 0; }
        }
        @media (max-width: 768px) {
            .nav-menu { display: none; }
            .burger-btn { display: block; }
            .hero-layout-01 h1 { font-size: 36px; }
            .floating-cards { display: none; }
            .footer-grid { grid-template-columns: 1fr; }
        }