:root {
    /* Professional blue color scheme */
    --primary-color: #0052cc;
    /* Primary blue */
    --secondary-color: #00a3bf;
    /* Teal accent */
    --accent-color: #36b37e;
    /* Green for positive indicators */
    --dark-color: #172b4d;
    /* Dark blue-gray */
    --darker-color: #0f1b33;
    /* Deeper blue */
    --light-color: #ffffff;
    /* White */
    --bg-color: #f5f7fa;
    /* Light gray background */
    --card-bg: #ffffff;
    /* White cards */
    --text-color: #253858;
    /* Dark slate for text */
    --text-light: #6c757d;
    /* Light text */
    --border-color: #e9ecef;
    /* Light borders */
    --section-border: rgba(0, 82, 204, 0.1);
    /* Subtle blue borders */
    --gradient-primary: linear-gradient(135deg, #0052cc, #00a3bf);
    /* Blue to teal */
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --bg-gradient: linear-gradient(135deg, #f5f7fa, #ffffff);
    /* Light gradient */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(120deg, #f0f4f8, #ffffff);
    overflow: hidden;
}

.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite;
    box-shadow: 0 0 50px rgba(0, 82, 204, 0.1);
}

/* Extra Large circles */
.shape:nth-child(1) {
    width: 800px;
    height: 800px;
    top: -300px;
    right: -200px;
    background: linear-gradient(45deg, rgba(0, 82, 204, 0.08), rgba(0, 163, 191, 0.08));
    animation: float 30s infinite;
}

.shape:nth-child(2) {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -100px;
    background: linear-gradient(45deg, rgba(54, 179, 126, 0.08), rgba(0, 163, 191, 0.08));
    animation: float 35s infinite;
}

/* Large circles */
.shape:nth-child(3) {
    width: 400px;
    height: 400px;
    top: 15%;
    right: 20%;
    background: linear-gradient(45deg, rgba(0, 82, 204, 0.06), rgba(54, 179, 126, 0.06));
    animation: float 25s infinite;
}

.shape:nth-child(4) {
    width: 350px;
    height: 350px;
    bottom: 25%;
    right: 10%;
    background: linear-gradient(45deg, rgba(0, 163, 191, 0.06), rgba(0, 82, 204, 0.06));
    animation: float 28s infinite;
}

/* Medium circles */
.shape:nth-child(5) {
    width: 200px;
    height: 200px;
    top: 35%;
    left: 20%;
    background: linear-gradient(45deg, rgba(54, 179, 126, 0.08), rgba(0, 163, 191, 0.08));
    animation: float 22s infinite;
}

.shape:nth-child(6) {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 35%;
    background: linear-gradient(45deg, rgba(0, 82, 204, 0.08), rgba(0, 163, 191, 0.08));
    animation: float 20s infinite;
}

/* Small circles */
.shape:nth-child(7) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 25%;
    background: linear-gradient(45deg, rgba(0, 163, 191, 0.1), rgba(54, 179, 126, 0.1));
    animation: float 18s infinite;
}

.shape:nth-child(8) {
    width: 120px;
    height: 120px;
    bottom: 30%;
    left: 45%;
    background: linear-gradient(45deg, rgba(0, 82, 204, 0.1), rgba(0, 163, 191, 0.1));
    animation: float 24s infinite;
}

/* Additional small circles */
.shape:nth-child(9) {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 35%;
    background: linear-gradient(45deg, rgba(54, 179, 126, 0.1), rgba(0, 82, 204, 0.1));
    animation: float 16s infinite;
}

.shape:nth-child(10) {
    width: 60px;
    height: 60px;
    bottom: 40%;
    right: 25%;
    background: linear-gradient(45deg, rgba(0, 163, 191, 0.1), rgba(0, 82, 204, 0.1));
    animation: float 19s infinite;
}

/* Enhanced gradient mesh */
.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 82, 204, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(0, 163, 191, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 40% 60%, rgba(54, 179, 126, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 60% 30%, rgba(0, 82, 204, 0.08) 0%, transparent 65%),
        radial-gradient(circle at 30% 80%, rgba(0, 163, 191, 0.08) 0%, transparent 50%);
    opacity: 1;
}

/* Enhanced grid pattern */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 82, 204, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 82, 204, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.7;
    animation: gridMove 15s linear infinite;
}

/* Enhanced animations */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(40px, -40px) rotate(120deg);
    }

    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes gridMove {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(20px) translateY(20px);
    }
}

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

h1,
h2,
h3,
h4 {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-color);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.highlight {
    background: none;
    color: var(--primary-color);
    -webkit-background-clip: initial;
    background-clip: initial;
}

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

ul {
    list-style: none;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 6px rgba(0, 82, 204, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(0, 82, 204, 0.1);
}

/* Enhanced Header Design */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--section-border);
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Remove the previous logo styling with the pseudo-element */
.logo h1::before {
    display: none;
}

/* Navigation enhancement */
nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    color: var(--text-color);
}

nav a:not(.btn-primary) {
    position: relative;
    transition: color 0.3s ease;
}

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

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

nav a:not(.btn-primary):hover::after {
    width: 100%;
}

/* Header CTA button enhancement */
nav .btn-primary {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 82, 204, 0.2);
    transition: all 0.3s ease;
}

nav .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

/* Mobile menu button (for responsive design) */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
    /* Add more padding at bottom */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 50%, rgba(0, 82, 204, 0.05), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 163, 191, 0.05), transparent 50%);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 450px;
    /* Increased height */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    perspective: 1000px;
    padding-bottom: 50px;
    /* Add padding at bottom */
}

/* 3D Cube Animation */
.cube-container {
    position: relative;
    width: 180px;
    height: 180px;
    transform-style: preserve-3d;
    animation: rotate 20s linear infinite;
    margin: 0 auto;
    margin-top: 50px;
    /* Move down more */
    margin-left: auto;
    margin-right: auto;
}

/* Fix disconnected cube faces */
.cube {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: translateZ(-90px);
    /* Center the cube */
}

/* Enhanced cube design */
.face {
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(25, 118, 210, 0.08);
    border: 2px solid rgba(25, 118, 210, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(25, 118, 210, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    overflow: hidden;
}

/* Add unique designs to each face */
.front {
    transform: translateZ(90px);
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.15), rgba(54, 179, 126, 0.15));
    border-color: rgba(25, 118, 210, 0.5);
}

.front::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.back {
    transform: rotateY(180deg) translateZ(90px);
    background: linear-gradient(135deg, rgba(54, 179, 126, 0.15), rgba(25, 118, 210, 0.15));
    border-color: rgba(54, 179, 126, 0.5);
}

.back::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 48%, rgba(54, 179, 126, 0.3) 49%, rgba(54, 179, 126, 0.3) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(54, 179, 126, 0.3) 49%, rgba(54, 179, 126, 0.3) 51%, transparent 52%);
    background-size: 30px 30px;
    z-index: -1;
}

.right {
    transform: rotateY(90deg) translateZ(90px);
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1), rgba(54, 179, 126, 0.1));
    border-color: rgba(25, 118, 210, 0.4);
}

.right::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, transparent 90%, rgba(25, 118, 210, 0.2) 90%),
        linear-gradient(0deg, transparent 90%, rgba(25, 118, 210, 0.2) 90%);
    background-size: 20px 20px;
    z-index: -1;
}

.left {
    transform: rotateY(-90deg) translateZ(90px);
    background: linear-gradient(135deg, rgba(54, 179, 126, 0.1), rgba(25, 118, 210, 0.1));
    border-color: rgba(54, 179, 126, 0.4);
}

.left::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(54, 179, 126, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 70% 70%, rgba(54, 179, 126, 0.2) 0%, transparent 20%);
    z-index: -1;
}

.top {
    transform: rotateX(90deg) translateZ(90px);
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.08), rgba(54, 179, 126, 0.08));
    border-color: rgba(25, 118, 210, 0.3);
}

.top::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 40%, rgba(25, 118, 210, 0.1) 40%, rgba(25, 118, 210, 0.1) 60%, transparent 60%);
    background-size: 20px 20px;
    z-index: -1;
}

.bottom {
    transform: rotateX(-90deg) translateZ(90px);
    background: linear-gradient(135deg, rgba(54, 179, 126, 0.08), rgba(25, 118, 210, 0.08));
    border-color: rgba(54, 179, 126, 0.3);
}

.bottom::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(-45deg, transparent 40%, rgba(54, 179, 126, 0.1) 40%, rgba(54, 179, 126, 0.1) 60%, transparent 60%);
    background-size: 20px 20px;
    z-index: -1;
}

/* Enhanced icon styling */
.face i {
    font-size: 45px;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

/* Add subtle glow to the cube */
.cube-container::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Ensure proper animation */
@keyframes rotate {
    0% {
        transform: rotateX(0) rotateY(0) rotateZ(0);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-gradient);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-item {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
}

.about-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
}

.about-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: var(--bg-gradient);
    border-bottom: 1px solid var(--border-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary-color);
    z-index: 1;
}

.timeline-dot.active {
    background: var(--primary-color);
}

.timeline-content {
    position: relative;
    width: calc(50% - 40px);
    padding: 20px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    left: calc(50% + 40px);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.timeline-content h4 {
    margin-bottom: 10px;
}

/* Waitlist Section */
.waitlist {
    padding: 100px 0;
    background: var(--light-color);
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.waitlist p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.form-group input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 30px 0 0 30px;
    background: var(--light-color);
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary-color);
}

.form-group button {
    border-radius: 0 30px 30px 0;
    border: none;
}

#form-message {
    margin-top: 15px;
    text-align: center;
}

.success-message {
    color: #36b37e;
    background-color: rgba(54, 179, 126, 0.1);
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 500;
}

.error-message {
    color: #ff5630;
    background-color: rgba(255, 86, 48, 0.1);
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 500;
}

.thank-you-message {
    text-align: center;
    padding: 20px;
    background: rgba(0, 82, 204, 0.05);
    border-radius: 10px;
    margin: 20px 0;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-share a {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.social-share a:hover {
    background: var(--darker-color);
    transform: translateY(-2px);
}

.social-share i {
    margin-right: 8px;
}

/* Updated Contact Section with blue background */
.contact {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.contact h2 {
    color: var(--light-color);
    position: relative;
    z-index: 1;
}

.contact .highlight {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--light-color);
}

.contact-item p {
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--light-color);
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

/* Enhanced Footer Design */
footer {
    background: var(--dark-color);
    padding: 60px 0 20px;
    color: var(--light-color);
    border-top: 1px solid var(--section-border);
    position: relative;
}

/* Add subtle pattern to footer */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Improved footer content layout */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

/* Footer logo styling */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo h2 {
    color: var(--light-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.company-description {
    max-width: 350px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Footer links section */
.footer-links h3,
.footer-social h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--light-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1;
}

.footer-links a:hover {
    color: var(--light-color);
    transform: translateX(5px);
}

/* Contact section in footer */
.footer-social p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social p i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

/* Footer bottom with divider */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    position: relative;
}

/* Add legal links */
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--light-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-logo {
        grid-column: span 2;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        grid-column: span 1;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-item,
.feature-card,
.timeline-item {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.about-item:nth-child(2),
.feature-card:nth-child(2),
.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.about-item:nth-child(3),
.feature-card:nth-child(3),
.timeline-item:nth-child(3) {
    animation-delay: 0.4s;
}

.about-item:nth-child(4),
.feature-card:nth-child(4),
.timeline-item:nth-child(4) {
    animation-delay: 0.6s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.8s;
}

.feature-card:nth-child(6) {
    animation-delay: 1s;
}

/* Add subtle pattern overlay to background */
.particles-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230052cc' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Add subtle security pattern to waitlist section */
.waitlist {
    position: relative;
    overflow: hidden;
}

.waitlist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0zm0 2a10 10 0 110 20 10 10 0 010-20z' fill='%230052cc' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 60px;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .cube-container {
        width: 220px;
        height: 220px;
    }

    .cube {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .mobile-menu-button {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--light-color);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid var(--border-color);
        z-index: 1000;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    nav ul li a.btn-primary {
        display: inline-block;
        width: 100%;
    }

    .hero {
        padding: 120px 20px 50px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 30px;
    }

    .form-group {
        flex-direction: column;
    }

    .form-group input {
        width: 100%;
        margin-bottom: 15px;
    }

    .form-group button {
        width: 100%;
    }

    .cube-container {
        width: 200px;
        height: 200px;
    }

    .cube {
        width: 200px;
        height: 200px;
    }

    .logo-img {
        height: 32px;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .footer-logo-img {
        height: 40px;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .about-item,
    .feature-card {
        padding: 20px;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-content h4 {
        font-size: 1rem;
    }

    .cube-container {
        width: 180px;
        height: 180px;
    }

    .cube {
        width: 180px;
        height: 180px;
    }

    .logo h1 {
        font-size: 1.2rem;
        display: block;
    }

    .logo-img {
        height: 30px;
    }

    .logo {
        gap: 8px;
    }

    header {
        padding: 15px 20px;
    }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .hero {
        height: -webkit-fill-available;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-gradient);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.process-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 10px;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--light-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    min-width: 350px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

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

.testimonial-quote {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--bg-gradient);
    border-top: 1px solid var(--border-color);
}

.faq-container {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 1000px;
}

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

.faq-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Hero tagline styling */
.hero-tagline {
    font-size: 1.2rem;
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 500;
    max-width: 600px;
}

/* Tokenization section styling */
.tokenization {
    padding: 100px 0;
    background: var(--light-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.tokenization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230052cc' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.tokenization-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.tokenization-text {
    flex: 1;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.tokenization-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.tokenization-benefits {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.benefit {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    flex: 1;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.benefit i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tokenization-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tokenization-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

/* Responsive adjustments for tokenization section */
@media (max-width: 992px) {
    .tokenization-content {
        flex-direction: column-reverse;
    }

    .tokenization-image {
        margin-bottom: 30px;
    }

    .tokenization-benefits {
        flex-direction: column;
    }
}

/* How It Works Section - Responsive Improvements */
@media (max-width: 992px) {
    .process-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .process-step {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 70px 0;
    }

    .process-container {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .process-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-step {
        max-width: 350px;
        margin: 0 auto;
    }

    .process-icon {
        font-size: 2rem;
    }

    .process-step h3 {
        font-size: 1.2rem;
    }
}

/* Dashboard Layout */
.dashboard-container {
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 20px;
}

/* Consistent Tab Design */
.dashboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.tab {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
}

.tab.active {
    background: var(--primary-color);
    color: white;
}

.tab:hover:not(.active) {
    background: rgba(0, 82, 204, 0.1);
}

/* Dashboard Content */
.dashboard-content {
    display: none;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    min-height: 600px;
}

.dashboard-content.active {
    display: block;
}

/* Portfolio Section */
.portfolio-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.portfolio-card {
    background: var(--bg-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.portfolio-card h3 {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.portfolio-card .value {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

/* Trade Section */
.trade-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
    padding: 20px;
    height: 700px;
}

.trade-sidebar {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 20px;
}

.trade-chart {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 20px;
}

.trade-form .form-group {
    margin-bottom: 15px;
}

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

.trade-form input,
.trade-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
}

/* Orders Section */
.orders-container {
    padding: 20px;
}

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

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

.orders-table th,
.orders-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.orders-table th {
    font-weight: 500;
    color: var(--text-light);
    background: var(--bg-color);
}

/* Deposit Section */
.deposit-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.deposit-card {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 20px;
}

.deposit-form {
    margin-top: 20px;
}

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

.deposit-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Analytics Section */
.analytics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.analytics-card {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 20px;
}

/* Button Styles */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Status Indicators */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.status-pending {
    background: rgba(255, 171, 0, 0.1);
    color: #ffab00;
}

.status-filled {
    background: rgba(54, 179, 126, 0.1);
    color: var(--accent-color);
}

/* Chart Styles */
#stock-chart {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Dashboard Styles */
.dashboard-preview {
    padding: 80px 0;
    background: var(--bg-light);
}

.dashboard-container {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Tabs */
.dashboard-tabs {
    display: flex;
    background: var(--bg-color);
    padding: 15px 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.tab {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    margin-right: 5px;
}

.tab.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    background: var(--card-bg);
}

.tab:hover:not(.active) {
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.03);
}

/* Dashboard Content */
.dashboard-content {
    display: none;
    height: 700px;
    /* Fixed height for all tabs */
    overflow-y: auto;
}

.dashboard-content.active {
    display: block;
}

/* Portfolio Tab */
.portfolio-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.portfolio-card {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.portfolio-card h3 {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.portfolio-card .value {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.portfolio-card .change {
    font-size: 14px;
    font-weight: 500;
}

.change.positive {
    color: var(--accent-color);
}

.change.negative {
    color: var(--error-color);
}

.portfolio-holdings {
    padding: 0 20px 20px;
}

.portfolio-holdings h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.holdings-table th,
.holdings-table td {
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.holdings-table th {
    font-weight: 500;
    color: var(--text-light);
    background: var(--bg-color);
}

/* Trade Tab */
.trade-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    padding: 20px;
    height: 100%;
}

.trade-sidebar {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 20px;
}

.trade-sidebar h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.trade-form .form-group {
    margin-bottom: 15px;
}

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

.trade-form input,
.trade-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
}

.trade-form .total-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    padding: 10px 0;
}

.trade-chart {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 20px;
}

.trade-chart h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stock-price {
    font-size: 20px;
    font-weight: 600;
}

.stock-change {
    font-size: 14px;
    margin-left: 10px;
}

.timeframe-selector {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.timeframe-btn {
    padding: 5px 10px;
    font-size: 13px;
    border: 1px solid var(--border-color);
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
}

.timeframe-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Orders Tab */
.orders-container {
    padding: 20px;
}

.orders-container h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.orders-table th,
.orders-table td {
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.orders-table th {
    font-weight: 500;
    color: var(--text-light);
    background: var(--bg-color);
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.status-pending {
    background: rgba(255, 171, 0, 0.1);
    color: #ffab00;
}

.status-filled {
    background: rgba(54, 179, 126, 0.1);
    color: var(--accent-color);
}

.status-canceled {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.btn-text {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    cursor: pointer;
    padding: 0;
}

.btn-text:hover {
    text-decoration: underline;
}

/* Deposit Tab */
.deposit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

.deposit-card {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 20px;
}

.deposit-card h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.deposit-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
}

.deposit-options {
    margin: 20px 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.deposit-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
}

.deposit-option:last-child {
    border-bottom: none;
}

.deposit-option.selected {
    background: rgba(0, 82, 204, 0.05);
}

.deposit-option-radio {
    margin-right: 15px;
}

.deposit-option-details {
    flex: 1;
}

.deposit-option-title {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 5px;
}

.deposit-option-description {
    font-size: 13px;
    color: var(--text-light);
}

.deposit-option-fee {
    font-weight: 500;
    color: var(--text-color);
}

.deposit-info {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 82, 204, 0.05);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.transaction-list {
    margin-top: 10px;
}

.transaction {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.transaction:last-child {
    border-bottom: none;
}

.transaction-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.transaction-icon.deposit {
    background: rgba(54, 179, 126, 0.1);
    color: var(--accent-color);
}

.transaction-icon.withdraw {
    background: rgba(255, 86, 48, 0.1);
    color: var(--error-color);
}

.transaction-details {
    flex: 1;
}

.transaction-title {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 3px;
}

.transaction-date {
    font-size: 13px;
    color: var(--text-light);
}

.transaction-amount {
    font-weight: 500;
    font-size: 14px;
    margin-right: 15px;
}

.transaction-status {
    font-size: 13px;
    padding: 3px 8px;
    border-radius: 4px;
}

.transaction-status.completed {
    background: rgba(54, 179, 126, 0.1);
    color: var(--accent-color);
}

.transaction-status.pending {
    background: rgba(255, 171, 0, 0.1);
    color: #ffab00;
}

/* Wallet Tab */
.wallet-container {
    padding: 20px;
    height: 100%;
}

.wallet-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.wallet-card {
    background: var(--bg-color);
    border-radius: 10px;
    padding: 20px;
}

.wallet-card.main {
    background: linear-gradient(135deg, var(--primary-color), #0052cc);
    color: white;
}

.wallet-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: inherit;
}

.wallet-balance {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.wallet-actions {
    display: flex;
    gap: 10px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.wallet-address {
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-bottom: 20px;
}

.wallet-address i {
    margin-right: 10px;
    color: var(--primary-color);
}

.wallet-badge {
    margin-left: 10px;
    background: rgba(0, 82, 204, 0.1);
    color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.wallet-assets h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.assets-table th,
.assets-table td {
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.assets-table th {
    font-weight: 500;
    color: var(--text-light);
    background: var(--bg-color);
}

.asset-info {
    display: flex;
    align-items: center;
}

.asset-info img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 13px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 5px;
}

/* Side Button Styles */
.side-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.side-btn {
    flex: 1;
    padding: 8px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    background: transparent;
    border-radius: 4px;
    cursor: pointer;
}

.side-btn.buy.active {
    background: rgba(54, 179, 126, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.side-btn.sell.active {
    background: rgba(255, 86, 48, 0.1);
    color: var(--error-color);
    border-color: var(--error-color);
}

/* Copy tooltip */
.address-input {
    position: relative;
    display: flex;
    align-items: center;
}

.address-input input {
    flex: 1;
    padding-right: 40px;
}

.btn-icon {
    position: absolute;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 16px;
}

.copy-tooltip {
    position: absolute;
    top: -30px;
    right: 0;
    background: var(--text-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    animation: fadeIn 0.3s ease;
}

.copy-tooltip:after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .trade-container {
        grid-template-columns: 1fr;
    }

    .portfolio-overview {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .wallet-overview {
        grid-template-columns: 1fr;
    }

    .deposit-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-tabs {
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .tab {
        white-space: nowrap;
    }

    .dashboard-content {
        height: auto;
        max-height: 800px;
    }
}

/* Additional styles for enhanced deposit and orders UI */
.deposit-methods {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.deposit-method-tab {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.deposit-method-tab img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.deposit-method-tab.active {
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.deposit-method-content {
    display: none;
}

.deposit-method-content.active {
    display: block;
}

.deposit-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.deposit-option.selected {
    border-color: var(--primary-color);
    background: rgba(0, 82, 204, 0.05);
}

.deposit-option-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.deposit-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
}

.deposit-option-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.deposit-option-details {
    flex: 1;
}

.deposit-option-title {
    font-weight: 500;
    margin-bottom: 3px;
    font-size: 14px;
}

.deposit-option-description {
    font-size: 13px;
    color: var(--text-light);
}

.deposit-option-fee {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    margin-left: 10px;
}

/* Bank selection styling fix */
.bank-selection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.bank-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    height: 100px;
}

.bank-option.selected {
    border-color: var(--primary-color);
    background: rgba(0, 82, 204, 0.05);
}

.bank-option img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 10px;
}

.bank-option span {
    font-size: 13px;
    text-align: center;
    color: var(--text-color);
}

.bank-option.add-new {
    border-style: dashed;
}

.bank-option.add-new i {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.deposit-timing {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--bg-color);
    border-radius: 8px;
    margin-bottom: 20px;
}

.timing-icon {
    margin-right: 15px;
    font-size: 24px;
    color: var(--text-light);
}

.timing-title {
    font-weight: 500;
    margin-bottom: 3px;
}

.timing-description {
    font-size: 13px;
    color: var(--text-light);
}

.card-input {
    position: relative;
    margin-bottom: 15px;
}

.card-icons {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
}

.card-icons img {
    width: 24px;
    height: 24px;
}

.card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.fee-notice {
    display: flex;
    align-items: center;
    padding: 10px;
    background: rgba(255, 171, 0, 0.1);
    color: #ffab00;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 13px;
}

.fee-notice i {
    margin-right: 8px;
}

/* Orders Tab Styles */
.orders-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    padding: 0 20px;
}

.orders-tab {
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.orders-tab.active {
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.orders-content {
    display: none;
    padding: 0 20px 20px;
}

.orders-content.active {
    display: block;
}

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

.orders-header h3 {
    font-size: 16px;
    color: var(--text-color);
}

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

.market-orders-section h4 {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.market-orders-table {
    width: 100%;
    border-collapse: collapse;
}

.market-orders-table th,
.market-orders-table td {
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.market-orders-table th {
    font-weight: 500;
    color: var(--text-light);
    background: var(--bg-color);
}

.btn-buy {
    background: var(--accent-color);
}

.btn-sell {
    background: var(--error-color);
}

.btn-cancel {
    background: var(--text-light);
}

.side {
    font-weight: 500;
}

.side.buy {
    color: var(--accent-color);
}

.side.sell {
    color: var(--error-color);
}

.filter-container {
    display: flex;
    align-items: center;
}

.filter-select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    background: var(--bg-color);
    color: var(--text-color);
}

@media (max-width: 992px) {
    .market-orders-container {
        grid-template-columns: 1fr;
    }
}

/* Fixed network logos and deposit method icons */
.supported-networks {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding: 12px 15px;
    background: var(--bg-color);
    border-radius: 6px;
}

.supported-networks span {
    font-size: 13px;
    color: var(--text-light);
    margin-right: 15px;
    white-space: nowrap;
}

.network-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.network-icons img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Standardized deposit option icons */
.deposit-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-right: 15px;
    flex-shrink: 0;
    background: var(--bg-color);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.deposit-option-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Enhanced Portfolio Cards with Blue Background */
.portfolio-card {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.08), rgba(0, 163, 191, 0.08));
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 82, 204, 0.15);
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.portfolio-card h3 {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.portfolio-value {
    font-size: 26px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

/* Enhanced Holdings Table Design */
.holdings-section {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
    overflow-x: auto;
    position: relative;
}

.holdings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px 12px 0 0;
}

.holdings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.holdings-header h3 {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    margin: 0;
    position: relative;
    padding-left: 15px;
}

.holdings-header h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 2px;
}

.view-options {
    display: flex;
    gap: 15px;
    background: var(--bg-color);
    border-radius: 6px;
    padding: 3px;
}

.view-options span {
    font-size: 13px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    padding: 5px 12px;
    border-radius: 4px;
}

.view-options span.active {
    color: white;
    background: var(--primary-color);
}

.holdings-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.holdings-table th,
.holdings-table td {
    padding: 15px;
    text-align: left;
    font-size: 14px;
}

.holdings-table th {
    font-weight: 500;
    color: var(--text-color);
    background: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.holdings-table tr:nth-child(even) {
    background-color: rgba(245, 247, 250, 0.5);
}

.holdings-table tr:hover {
    background-color: rgba(0, 82, 204, 0.03);
}

.holdings-table td {
    border-bottom: 1px solid var(--border-color);
}

.holdings-table .asset-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.holdings-table .asset-info img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 2px;
}

.holdings-table .change {
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
}

.holdings-table .change.positive {
    background: rgba(54, 179, 126, 0.1);
    color: var(--accent-color);
}

.holdings-table .change.negative {
    background: rgba(222, 53, 11, 0.1);
    color: var(--error-color);
}

.action-buttons {
    display: flex;
    gap: 5px;
}

.action-buttons .btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
}

.action-buttons .btn-buy {
    background: var(--accent-color);
    color: white;
}

.action-buttons .btn-sell {
    background: var(--error-color);
    color: white;
}

/* Global Market Tab Styles */
.market-regions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.region-tab {
    padding: 8px 16px;
    background: var(--bg-color);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.region-tab.active {
    background: var(--primary-color);
    color: white;
}

.region-tab:hover:not(.active) {
    background: rgba(0, 82, 204, 0.1);
}

/* Enhanced Dashboard Intro Text */
.dashboard-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.dashboard-intro h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.dashboard-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.dashboard-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Improved Learn More Button */
.btn-learn-more {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.2);
    text-decoration: none;
}

.btn-learn-more:hover {
    background: #0046ad;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 82, 204, 0.3);
}

.btn-learn-more:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 82, 204, 0.2);
}

/* Enhanced Market Tab Styling */
.market-container {
    padding: 20px;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
}

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

.market-header h3 {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
    position: relative;
    padding-left: 15px;
}

.market-header h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 2px;
}

.market-search {
    position: relative;
    width: 300px;
}

.market-search input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    background: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
}

.market-search input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.market-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1px;
}

.market-tab {
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    font-weight: 500;
}

.market-tab.active {
    color: var(--primary-color);
}

.market-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px 3px 0 0;
}

.market-tab:hover:not(.active) {
    color: var(--primary-color);
    background: rgba(0, 82, 204, 0.05);
}

.market-content {
    display: none;
}

.market-content.active {
    display: block;
}

.market-regions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.region-tab {
    padding: 8px 16px;
    background: var(--bg-color);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-weight: 500;
}

.region-tab.active {
    background: var(--primary-color);
    color: white;
}

.region-tab:hover:not(.active) {
    background: rgba(0, 82, 204, 0.1);
}

.market-table-container {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.market-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.market-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 15px;
    text-align: left;
    font-size: 13px;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.market-table th:first-child {
    border-top-left-radius: 8px;
}

.market-table th:last-child {
    border-top-right-radius: 8px;
}

.market-table td {
    padding: 15px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

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

.market-table tr:nth-child(even) {
    background-color: rgba(245, 247, 250, 0.5);
}

.market-table tr:hover {
    background-color: rgba(0, 82, 204, 0.05);
}

.market-table .asset-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.market-table .asset-info img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 3px;
    border: 1px solid rgba(0, 82, 204, 0.1);
}

.market-table .change {
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    display: inline-block;
}

.market-table .change.positive {
    background: rgba(54, 179, 126, 0.1);
    color: var(--accent-color);
}

.market-table .change.negative {
    background: rgba(222, 53, 11, 0.1);
    color: var(--error-color);
}

.region {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.region.us {
    background: rgba(0, 82, 204, 0.1);
    color: var(--primary-color);
}

.region.eu {
    background: rgba(54, 179, 126, 0.1);
    color: var(--accent-color);
}

.region.asia {
    background: rgba(101, 84, 192, 0.1);
    color: #6554c0;
}

.region.emerging {
    background: rgba(255, 171, 0, 0.1);
    color: #ffab00;
}

/* Additional styles for Crypto, Forex, and Commodities */
.change.neutral {
    background: rgba(144, 144, 144, 0.1);
    color: var(--text-color);
}

.category {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.category.metals {
    background: rgba(255, 171, 0, 0.1);
    color: #ffab00;
}

.category.energy {
    background: rgba(222, 53, 11, 0.1);
    color: var(--error-color);
}

.category.agriculture {
    background: rgba(54, 179, 126, 0.1);
    color: var(--accent-color);
}

/* Enhance forex pairs styling */
.forex-pair {
    display: flex;
    align-items: center;
    gap: 8px;
}

.forex-pair img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

/* Responsive adjustments for market tables */
@media (max-width: 1200px) {
    .market-table-container {
        overflow-x: auto;
    }

    .market-table {
        min-width: 900px;
    }
}

/* Enhance crypto category tabs */
.market-regions .region-tab[data-region="defi"] {
    border-left: 3px solid #6554c0;
}

.market-regions .region-tab[data-region="layer1"] {
    border-left: 3px solid var(--primary-color);
}

.market-regions .region-tab[data-region="layer2"] {
    border-left: 3px solid var(--secondary-color);
}

.market-regions .region-tab[data-region="meme"] {
    border-left: 3px solid #ffab00;
}

.market-regions .region-tab[data-region="stablecoin"] {
    border-left: 3px solid var(--accent-color);
}

/* Fix table cell alignment and add data separation */
.market-table td,
.holdings-table td {
    padding: 15px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    /* Center content vertically */
}

.market-table th,
.holdings-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 15px;
    text-align: left;
    font-size: 13px;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 10;
    vertical-align: middle;
    /* Center content vertically */
}

/* Add data separation between columns */
.market-table td:not(:last-child),
.holdings-table td:not(:last-child),
.market-table th:not(:last-child),
.holdings-table th:not(:last-child) {
    border-right: 1px solid rgba(233, 236, 239, 0.5);
}

/* Center change and percentage change cells */
.market-table td .change,
.holdings-table td .change {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    width: fit-content;
}

/* Enhanced Learn More Button - Not White */
.btn-learn-more {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.2);
    text-decoration: none;
}

.btn-learn-more:hover {
    background: #0046ad;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 82, 204, 0.3);
}

.btn-learn-more:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 82, 204, 0.2);
}

/* Enhanced Dashboard Intro Text */
.dashboard-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.dashboard-intro h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.dashboard-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.dashboard-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    padding: 0 20px;
}

.dashboard-intro p::before,
.dashboard-intro p::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
    top: 50%;
}

.dashboard-intro p::before {
    left: 0;
}

.dashboard-intro p::after {
    right: 0;
}

/* Add a subtle highlight to the intro text */
.dashboard-intro p strong {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.dashboard-intro p strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

/* Enhanced styling for change cells with consistent padding */
.market-table td .change,
.holdings-table td .change {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
}

/* Ensure all tables have the same cell structure */
.market-table td,
.holdings-table td {
    padding: 15px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

/* Add specific styling for change columns */
.market-table th:nth-child(4),
.market-table th:nth-child(5),
.holdings-table th:nth-child(7) {
    text-align: center;
}

.market-table td:nth-child(4),
.market-table td:nth-child(5),
.holdings-table td:nth-child(7) {
    text-align: center;
}

/* Ensure consistent styling for all market tables */
#crypto-market .market-table td .change,
#forex-market .market-table td .change,
#commodities-market .market-table td .change,
#etfs-market .market-table td .change,
#bonds-market .market-table td .change {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
}

/* Fix padding and centering for change cells */
.market-table td .change,
.holdings-table td .change {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    min-width: 80px;
    text-align: center;
    margin: 0 auto;
}

/* Center the content of change columns */
.market-table td:nth-child(4),
.market-table td:nth-child(5),
.holdings-table td:nth-child(7) {
    text-align: center;
}

/* Ensure change spans take up the full cell width */
.market-table td:nth-child(4) .change,
.market-table td:nth-child(5) .change,
.holdings-table td:nth-child(7) .change {
    display: block;
    width: 90%;
    margin: 0 auto;
}

/* Add specific styling for different market tables */
#crypto-market .market-table td:nth-child(4) .change,
#crypto-market .market-table td:nth-child(5) .change,
#forex-market .market-table td:nth-child(4) .change,
#forex-market .market-table td:nth-child(5) .change,
#commodities-market .market-table td:nth-child(4) .change,
#commodities-market .market-table td:nth-child(5) .change,
#etfs-market .market-table td:nth-child(4) .change,
#etfs-market .market-table td:nth-child(5) .change,
#bonds-market .market-table td:nth-child(4) .change,
#bonds-market .market-table td:nth-child(5) .change {
    display: block;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

/* Ensure consistent cell padding */
.market-table td,
.holdings-table td {
    padding: 15px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

/* Add specific padding for change columns */
.market-table td:nth-child(4),
.market-table td:nth-child(5) {
    padding: 15px 10px;
}

/* Comprehensive fix for change and percentage change cells in all tables */
.market-table td .change,
.holdings-table td .change {
    display: block;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

/* Center align the change columns */
.market-table td:nth-child(4),
.market-table td:nth-child(5),
.holdings-table td:nth-child(7) {
    text-align: center;
    padding: 15px 5px;
}

/* Specific fixes for each market type */
#stocks-market .market-table td:nth-child(4),
#stocks-market .market-table td:nth-child(5),
#etfs-market .market-table td:nth-child(4),
#etfs-market .market-table td:nth-child(5),
#commodities-market .market-table td:nth-child(4),
#commodities-market .market-table td:nth-child(5),
#bonds-market .market-table td:nth-child(4),
#bonds-market .market-table td:nth-child(5),
#crypto-market .market-table td:nth-child(4),
#crypto-market .market-table td:nth-child(5),
#forex-market .market-table td:nth-child(4),
#forex-market .market-table td:nth-child(5) {
    text-align: center;
    padding: 15px 5px;
}

/* Ensure change spans are properly styled in all tables */
#stocks-market .market-table td:nth-child(4) .change,
#stocks-market .market-table td:nth-child(5) .change,
#etfs-market .market-table td:nth-child(4) .change,
#etfs-market .market-table td:nth-child(5) .change,
#commodities-market .market-table td:nth-child(4) .change,
#commodities-market .market-table td:nth-child(5) .change,
#bonds-market .market-table td:nth-child(4) .change,
#bonds-market .market-table td:nth-child(5) .change,
#crypto-market .market-table td:nth-child(4) .change,
#crypto-market .market-table td:nth-child(5) .change,
#forex-market .market-table td:nth-child(4) .change,
#forex-market .market-table td:nth-child(5) .change {
    display: block;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 6px 10px;
}

/* Add specific styling for positive/negative/neutral changes */
.change.positive {
    background: rgba(54, 179, 126, 0.1);
    color: var(--accent-color);
}

.change.negative {
    background: rgba(222, 53, 11, 0.1);
    color: var(--error-color);
}

.change.neutral {
    background: rgba(144, 144, 144, 0.1);
    color: var(--text-color);
}

/* Ensure consistent table header styling */
.market-table th:nth-child(4),
.market-table th:nth-child(5) {
    text-align: center;
}

/* Enhanced styling for sell buttons */
.btn-sm.btn-sell {
    background: rgba(222, 53, 11, 0.1);
    color: var(--error-color);
    border: 1px solid rgba(222, 53, 11, 0.3);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-sm.btn-sell:hover {
    background: var(--error-color);
    color: white;
    border-color: var(--error-color);
}

/* Ensure consistent styling for all small buttons */
.btn-sm {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-sm.btn-buy {
    background: rgba(54, 179, 126, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(54, 179, 126, 0.3);
}

.btn-sm.btn-buy:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Action buttons container for better spacing */
.action-buttons {
    display: flex;
    gap: 5px;
    justify-content: center;
}

/* Ensure table cells with buttons have proper padding */
.market-table td:last-child,
.orders-table td:last-child,
.assets-table td:last-child {
    padding: 8px 15px;
}

/* Mission and Dream Section Styling */
.mission-section {
    background: var(--primary-color);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--section-border);
    color: white;
}

.mission-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.mission-title {
    font-size: 36px;
    color: white;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

.mission-text {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-text strong {
    color: white;
    font-weight: 600;
    position: relative;
}

.mission-text strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    opacity: 0.5;
}

.mission-bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.mission-bg-shape:nth-child(1) {
    top: -300px;
    left: -200px;
}

.mission-bg-shape:nth-child(2) {
    bottom: -300px;
    right: -200px;
}

@media (max-width: 768px) {
    .mission-title {
        font-size: 28px;
    }

    .mission-text {
        font-size: 18px;
    }

    .mission-highlights {
        flex-direction: column;
        align-items: center;
    }

    .mission-highlight {
        max-width: 100%;
    }
}

/* About tagline styling */
.about-tagline {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(0, 82, 204, 0.05);
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-tagline p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
}

.about-tagline p:last-child {
    margin-bottom: 0;
}

.about-tagline p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Enhanced About tagline styling */
.about-tagline {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.05), rgba(0, 163, 191, 0.05));
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 82, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.about-tagline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.about-tagline p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.about-tagline p:last-child {
    margin-bottom: 0;
}

.about-tagline p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-tagline .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.about-tagline .quote-mark {
    position: absolute;
    font-size: 120px;
    opacity: 0.05;
    font-family: Georgia, serif;
    color: var(--primary-color);
    z-index: 1;
}

.about-tagline .quote-mark.left {
    top: 20px;
    left: 20px;
}

.about-tagline .quote-mark.right {
    bottom: 20px;
    right: 20px;
    transform: rotate(180deg);
}