:root {
    --primary-dark: #1A3951;
    --primary-light: #134061;
    --accent-cyan: #00F7FF;
    --accent-green: #00FF9D;
    --text-white: #FFFFFF;
    --text-gray: #E0E0E0;
    --text-light: #F5F5F5;
    --glass-bg: rgba(25, 40, 60, 0.7);
    --card-bg: rgba(30, 45, 65, 0.85);
    --footer-bg: #0F2F3A;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 30, 45, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(to right, var(--accent-cyan), var(--accent-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    z-index: 1001;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    font-size: 16px;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s;
}

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

.nav-buttons {
    display: flex;
    gap: 15px;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 30px;
    position: relative;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 30, 45, 0.98);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 100px 30px 40px;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 40px;
}

.mobile-nav-links li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.mobile-nav.active .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav-links li:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav-links a {
    font-size: 22px;
    font-weight: 500;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--accent-cyan);
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease 0.4s;
}

.mobile-nav.active .mobile-nav-buttons {
    opacity: 1;
    transform: translateX(0);
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-login {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 247, 255, 0.4);
}

.btn-primary,
.btn-solid {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover,
.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.4);
}

.btn-secondary,
.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--accent-cyan);
}

.btn-secondary:hover,
.btn-outline:hover {
    background: rgba(0, 247, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.2);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300f7ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero h1 {
            font-size: 56px;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--text-white), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }
        
        .hero p {
            font-size: 20px;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto 40px;
            font-weight: 400;
        }

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

/* Trading Dashboard Mockup */
.dashboard-mockup {
    background: var(--glass-bg);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    max-width: 500px;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.chart-container,
.chart-area {
    height: 150px;
    background: rgba(10, 25, 40, 0.7);
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--accent-green) 50%, transparent 100%);
    opacity: 0.3;
    transform-origin: left center;
    animation: drawChart 2s ease-out forwards;
}

.order-panel {
    display: flex;
    gap: 10px;
}

.order-button {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.buy-btn {
    background: linear-gradient(90deg, rgba(0, 255, 157, 0.2), rgba(0, 255, 157, 0.1));
    color: var(--accent-green);
    border: 1px solid rgba(0, 255, 157, 0.3);
}

.sell-btn {
    background: linear-gradient(90deg, rgba(255, 50, 100, 0.2), rgba(255, 50, 100, 0.1));
    color: #FF3264;
    border: 1px solid rgba(255, 50, 100, 0.3);
}

/* Market Ticker */
.market-ticker {
    background: rgba(10, 30, 50, 0.7);
    padding: 15px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 80px;
}

.ticker-content {
    display: flex;
    animation: tickerScroll 40s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    padding: 0 30px;
    white-space: nowrap;
}

.ticker-symbol {
    font-weight: 600;
    margin-right: 10px;
}

.ticker-price {
    font-weight: 600;
    margin-right: 5px;
}

.ticker-change {
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.positive {
    color: var(--accent-green);
    background: rgba(0, 255, 157, 0.1);
}

.negative {
    color: #FF3264;
    background: rgba(255, 50, 100, 0.1);
}

/* Section Styling */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
}

.section-title span {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Features & Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(0, 247, 255, 0.15);
}

.feature-icon,
.mission-icon,
.value-icon,
.security-icon,
.contact-icon,
.addon-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(0, 247, 255, 0.1), rgba(0, 255, 157, 0.1));
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    font-size: 28px;
}

.mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 32px;
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    margin: 0 auto 20px;
    font-size: 28px;
}

.security-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 28px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 32px;
    position: relative;
}

.addon-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 24px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
}

/* Trading Tools Section */
.trading-tools {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.tools-text {
    flex: 1;
}

.tools-visual {
    flex: 1;
    background: var(--glass-bg);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.tools-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.tools-text p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 17px;
}

/* Why Choose Us */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item:hover {
    background: rgba(30, 45, 65, 0.95);
    transform: translateY(-5px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: linear-gradient(135deg, rgba(0, 247, 255, 0.1), rgba(0, 255, 157, 0.1));
}
/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 40px;
    background: rgba(10, 30, 50, 0.5);
    border-radius: 24px;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.1) 0%, transparent 70%);
    top: -150px;
    right: -150px;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
}

/* Footer */
footer {
    background: var(--footer-bg);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-white);
}

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

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 14px;
}

/* About Page Specific Styles */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300f7ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.stats-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 16px;
}

/* Two Column Layout */
.two-column,
.tech-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.column-text {
    flex: 1;
}

.column-visual {
    flex: 1;
}

.column-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.column-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 17px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

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

.data-value {
    font-weight: 600;
    font-size: 18px;
}

.data-label {
    color: #999;
    font-size: 14px;
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.mission-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    text-align: center;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(0, 247, 255, 0.15);
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-gray);
}

/* Core Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.value-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.15);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-gray);
    font-size: 15px;
}

/* Technology & Security */
.tech-content {
    flex: 1;
}

.security-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.security-card:last-child {
    margin-bottom: 0;
}

.security-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.security-card h3 i {
    margin-right: 10px;
    color: var(--accent-green);
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease;
}

.tech-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.tech-stat {
    text-align: center;
}

.tech-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-cyan);
}

.tech-stat-label {
    color: var(--text-gray);
    font-size: 14px;
}

/* Global Presence */
.global-section {
    margin-bottom: 100px;
    text-align: center;
}

.map-container {
    position: relative;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.world-map {
    width: 100%;
    max-width: 800px;
    opacity: 0.8;
}

.map-pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
}

.map-pin::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-green);
    border-radius: 50%;
    top: -4px;
    left: -4px;
    opacity: 0.3;
}

.pin-1 { top: 30%; left: 20%; }
.pin-2 { top: 40%; left: 50%; }
.pin-3 { top: 50%; left: 70%; }
.pin-4 { top: 60%; left: 30%; }
.pin-5 { top: 35%; left: 80%; }
.pin-6 { top: 65%; left: 60%; }
.pin-7 { top: 75%; left: 40%; }

.global-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.global-stat {
    text-align: center;
    min-width: 150px;
}

/* Compliance & Trust */
.compliance-section {
    margin-bottom: 100px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.compliance-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.compliance-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.cert-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

/* Plan Page Specific Styles */
.page-header {
    text-align: center;
    padding: 100px 0 60px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--text-white), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 60px;
}

.toggle-label {
    margin: 0 15px;
    font-weight: 500;
    color: var(--text-gray);
}

.toggle-label.active {
    color: var(--accent-green);
}

.toggle-switch {
    position: relative;
    width: 70px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid rgba(0, 247, 255, 0.3);
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider:before {
    transform: translateX(36px);
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(0, 247, 255, 0.15);
}

.pricing-card.popular {
    border-color: var(--accent-green);
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 255, 157, 0.2);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    color: var(--primary-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-name {
    font-size: 24px;
    margin-bottom: 10px;
}

.plan-description {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 15px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-period {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--accent-green);
    margin-right: 12px;
    font-size: 14px;
}

.plan-features .fa-times {
    color: rgba(255, 255, 255, 0.3);
}

.card-button {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.card-button:hover {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    color: var(--primary-dark);
    border-color: transparent;
}

.popular .card-button {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    color: var(--primary-dark);
    border-color: transparent;
}

/* Comparison Table */
.comparison-table {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr repeat(4, 1fr);
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr repeat(4, 1fr);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.table-row:last-child {
    border-bottom: none;
}

.feature-name {
    font-weight: 500;
    color: var(--text-gray);
}

.plan-cell {
    text-align: center;
    font-weight: 500;
}

.check-icon {
    color: var(--accent-green);
}

.x-icon {
    color: rgba(255, 255, 255, 0.3);
}

/* Add-Ons */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.addon-card {
    background: rgba(30, 45, 65, 0.6);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.addon-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 247, 255, 0.1);
}

.addon-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.addon-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.addon-price {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 18px;
}

/* Trust Section */
.trust-section {
    text-align: center;
    padding: 60px 40px;
    background: rgba(10, 30, 50, 0.5);
    border-radius: 16px;
    margin-bottom: 80px;
}

.trust-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.trust-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-icon i {
    font-size: 32px;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

/* Trade Page Specific Styles */


.asset-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 247, 255, 0.1);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 20px;
    padding: 8px 20px;
    margin-bottom: 25px;
}

.asset-badge i {
    color: var(--accent-cyan);
    margin-right: 10px;
    font-size: 18px;
}

.asset-badge span {
    font-weight: 600;
    font-size: 18px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: var(--glass-bg);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 5px;
}

/* Chart Container for Trade Page */
.chart-container {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 350px;
    position: relative;
    overflow: hidden;
    flex: 1;
    max-width: 500px;
}

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

.pair-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pair-name {
    font-size: 24px;
    font-weight: 600;
}

.pair-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-green);
}

.pair-change {
    font-size: 16px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent-green);
}

.pair-change.negative {
    background: rgba(255, 77, 109, 0.1);
    color: #FF3264;
}

.chart-area {
    height: 250px;
    background: rgba(10, 25, 40, 0.7);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* Trading Interface */
.trading-section {
    margin-bottom: 80px;
}

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

.trading-header h2 {
    font-size: 32px;
}

.timeframe-selector {
    display: flex;
    gap: 10px;
}

.timeframe-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.timeframe-btn.active {
    background: rgba(0, 247, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.trading-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* Order Book & Trades */
.order-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-book,
.recent-trades {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 240px;
}

.order-book-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-gray);
    font-size: 14px;
}

.order-list {
    height: 170px;
    overflow-y: auto;
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.order-row.buy .price {
    color: var(--accent-green);
}

.order-row.sell .price {
    color: #FF3264;
}

/* Order Panel */
.order-panel-section {
    margin-bottom: 80px;
}

.order-panel-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.order-panel {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-tab {
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.order-tab.active {
    color: var(--accent-cyan);
}

.order-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-cyan);
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-gray);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 2px rgba(0, 247, 255, 0.2);
}

.balance-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

.balance-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.balance-row:last-child {
    margin-bottom: 0;
}

.order-action {
    margin-top: 20px;
}

.btn-order {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

/* Responsive Styles */
        @media (max-width: 1200px) {
            
            .trading-container {
                grid-template-columns: 1fr;
            }
            
            .order-panel-container {
                grid-template-columns: 1fr;
            }
            
            .about-content {
                grid-template-columns: 1fr !important;
            }
        }
        
        @media (max-width: 768px) {
            
            
            .table-header, .table-row {
                grid-template-columns: 1fr 1fr;
                font-size: 12px;
            }
            
            .table-header .hide-mobile, .table-row .hide-mobile {
                display: none;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }

/* About USDX Section */
.about-section {
    margin-bottom: 80px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Trading Pairs Table */
.pairs-section {
    margin-bottom: 80px;
}

.pairs-table {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-row {
    align-items: center;
}

.pair-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.price-cell {
    font-weight: 600;
}

.change-cell {
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
    width: fit-content;
}

.change-positive {
    background: rgba(0, 255, 157, 0.1);
    color: var(--accent-green);
}

.change-negative {
    background: rgba(255, 77, 109, 0.1);
    color: #FF3264;
}

/* Metrics Cards */
.metric-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-bottom: 20px;
}

.metric-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 10px;
}

.metric-label {
    color: var(--text-gray);
    font-size: 14px;
}

/* Platform Page Specific */
.tools-list {
    list-style: none;
    margin-bottom: 30px;
}

.tools-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.tools-list li:last-child {
    border-bottom: none;
}

.tools-list i {
    color: var(--accent-green);
    margin-right: 12px;
    font-size: 14px;
}

/* Multi-Device Access */
.devices-section {
    margin-bottom: 100px;
    text-align: center;
}

.devices-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.device {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    position: relative;
}

.device:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
}

.desktop-device {
    width: 100%;
    max-width: 500px;
    padding-bottom: 15px;
}

.tablet-device {
    width: 280px;
    padding: 15px 10px;
}

.mobile-device {
    width: 180px;
    padding: 20px 10px;
}

.device-screen {
    background: rgba(10, 25, 40, 0.7);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.desktop-screen {
    height: 200px;
}

.tablet-screen {
    height: 250px;
}

.mobile-screen {
    height: 300px;
}

.device-label {
    margin-top: 15px;
    font-weight: 600;
}

/* Contact Page Specific */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.contact-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: 0 15px 40px rgba(0, 247, 255, 0.15);
}

.contact-card:hover .contact-icon::after {
    opacity: 0.1;
}

.contact-info {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 18px;
    word-break: break-all;
}

.contact-desc {
    color: var(--text-gray);
    font-size: 15px;
    margin-top: 10px;
}

.contact-form-section {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 100px;
}

.form-container {
    flex: 1;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-side {
    flex: 1;
}

.form-side h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.form-side p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.form-control.error {
    border-color: #FF3264;
}

.error-message {
    color: #FF3264;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}
select.form-control option {
    color: var(--primary-dark) !important;
    background-color: var(--text-light);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-footer {
    margin-top: 30px;
    color: var(--text-gray);
    font-size: 14px;
    text-align: center;
}

.spam-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: #999;
    font-size: 13px;
}

.success-message {
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
}

.global-presence {
    margin-bottom: 100px;
}

.map-pin:hover .pin-label {
    opacity: 1;
}

.pin-label {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.office-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.office-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.office-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.office-location {
    color: var(--text-gray);
    font-size: 14px;
}

/* FAQ Section */
.faq-container {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-icon {
    transition: transform 0.3s;
    color: var(--accent-cyan);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 20px;
    color: var(--text-gray);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-link {
    text-align: center;
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-buttons {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-content,
    .trading-tools,
    .two-column,
    .tech-section,
    .trading-container,
    .order-panel-container,
    .about-content,
    .contact-form-section {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text,
    .tools-text,
    .column-text,
    .tech-content,
    .form-side {
        margin-bottom: 60px;
    }
    
    .dashboard-mockup {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr;
        font-size: 12px;
    }
    
    .table-header .hide-mobile,
    .table-row .hide-mobile {
        display: none;
    }
    
    .benefits-grid,
    .tools-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-nav {
        padding: 100px 20px 40px;
    }
    
    .mobile-nav-links a {
        font-size: 20px;
    }
}

/* Animations */
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes drawChart {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.floating {
    animation: float 5s ease-in-out infinite;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Chart Elements */
.chart-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    opacity: 0.1;
    pointer-events: none;
}

.chart-grid-line {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-grid-line.horizontal {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
}

.candlestick {
    position: absolute;
    width: 8px;
    background: var(--accent-green);
    border-radius: 2px;
}

.candlestick.red {
    background: #FF3264;
}

/* Admin Section */

.auth-container {
            width: 100%;
            max-width: 1100px;
            display: flex;
            background: var(--card-bg);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            min-height: 650px;
            position: relative;
            z-index: 10;
        }
        
        /* Left Side - Visual */
        .auth-visual {
            flex: 1;
            background: linear-gradient(135deg, rgba(0, 247, 255, 0.05), rgba(0, 255, 157, 0.05));
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .auth-visual::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 247, 255, 0.1) 0%, transparent 70%);
            top: -150px;
            right: -150px;
        }
        
        .auth-visual h2 {
            font-size: 36px;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--text-white), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .auth-visual p {
            color: var(--text-gray);
            font-size: 17px;
            margin-bottom: 30px;
            max-width: 400px;
        }

        @media (max-width: 767.98px) {
            .auth-visual {
                display: none;
            }
        }

        
        .features-list {
            list-style: none;
            margin-top: 40px;
        }
        
        .features-list li {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: var(--text-gray);
        }
        
        .features-list i {
            color: var(--accent-green);
            margin-right: 15px;
            font-size: 20px;
            width: 24px;
        }
        
        .chart-visual {
            height: 150px;
            background: rgba(10, 25, 40, 0.5);
            border-radius: 12px;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .chart-line {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, var(--accent-green) 50%, transparent 100%);
            opacity: 0.3;
            animation: drawChart 2.5s ease-out forwards;
        }
        
        /* Right Side - Authentication */
        .auth-forms {
            flex: 1;
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 40px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 24px;
        }
        
        /* Tab Switch */
        .auth-tabs {
            display: flex;
            margin-bottom: 40px;
            position: relative;
        }
        
        .auth-tab {
            flex: 1;
            text-align: center;
            padding: 15px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            color: var(--text-gray);
            transition: color 0.3s;
            position: relative;
        }
        
        .auth-tab.active {
            color: var(--text-white);
        }
        
        .tab-indicator {
            position: absolute;
            bottom: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
            border-radius: 3px;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            width: 50%;
        }
        
        /* Forms */
        .auth-form {
            display: none;
            flex-direction: column;
            animation: fadeIn 0.5s ease;
        }
        
        .auth-form.active {
            display: flex;
        }
        
        .form-group {
            margin-bottom: 22px;
            position: relative;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-gray);
            font-size: 14px;
        }
        
        .form-control {
            width: 100%;
            padding: 16px 20px;
            background: var(--input-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: var(--text-white);
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 2px rgba(0, 247, 255, 0.2);
        }
        
        .form-control.error {
            border-color: var(--error-color);
        }
        
        .password-wrapper {
            position: relative;
        }
        
        .toggle-password {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-gray);
            cursor: pointer;
            font-size: 16px;
        }
        
        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .checkbox-group {
            display: flex;
            align-items: center;
        }
        
        .checkbox-group input {
            margin-right: 8px;
            accent-color: var(--accent-green);
        }
        
        .checkbox-label {
            font-size: 14px;
            color: var(--text-gray);
        }
        
        .forgot-link {
            color: var(--accent-cyan);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .forgot-link:hover {
            color: var(--accent-green);
        }
        
        /* Password Strength Indicator */
        .password-strength {
            margin-top: 8px;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
        }
        
        .strength-bar {
            height: 100%;
            width: 0;
            border-radius: 3px;
            transition: width 0.3s, background 0.3s;
        }
        
        .strength-text {
            font-size: 12px;
            color: var(--text-gray);
            margin-top: 5px;
            text-align: right;
        }
        
        /* Terms & Privacy */
        .terms-group {
            margin-top: 10px;
            margin-bottom: 25px;
        }
        
        .terms-link {
            color: var(--accent-cyan);
            text-decoration: none;
        }