/* CSS Updated */
:root {
    /* Dark Theme (Default) */
    --primary-color: #00d2ff;
    --secondary-color: #3a7bd5;
    --bg-color: #0d0d0d;
    --text-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-hover: rgba(0, 210, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.5);
}

.light-mode {
    /* Light Theme Overrides */
    --primary-color: #0077b6;
    /* darker blue for visibility */
    --secondary-color: #00b4d8;
    --bg-color: #f0f4f8;
    --text-color: #333333;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(0, 0, 0, 0.1);
    --card-hover: rgba(0, 119, 182, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Light Mode Specific Overrides */


.light-mode .package-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(240, 244, 248, 0.9));
    border-color: rgba(0, 0, 0, 0.1);
}

.light-mode .package-features li {
    color: #444;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.light-mode .section-subtitle,
.light-mode .hero-description {
    color: #555;
}

.light-mode .benefits-list li {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.light-mode .benefits-list li:hover {
    color: #fff;
    background: var(--primary-color);
}

.light-mode footer {
    background: var(--bg-color);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
}

.theme-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.theme-btn:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Three.js Canvas Container */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

#content-overlay {
    position: relative;
    z-index: 1;
}

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

/* Navigation */
.glass-nav {
    display: flex;
    justify-content: center;
    /* Changed from space-between to center */
    gap: 50px;
    /* Added gap for spacing */
    align-items: center;
    padding: 20px 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.glitch-text {
    font-size: 4rem;
    position: relative;
    animation: textFlicker 3s infinite;
}

@keyframes textFlicker {
    0% {
        opacity: 1;
    }

    5% {
        opacity: 0.8;
    }

    10% {
        opacity: 1;
    }

    50% {
        text-shadow: 2px 2px 0 var(--secondary-color);
    }

    55% {
        text-shadow: -2px -2px 0 var(--primary-color);
    }

    60% {
        text-shadow: none;
    }

    100% {
        opacity: 1;
    }
}

.subtitle {
    font-size: 2rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero-description {
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.6);
}

/* Feature Cards 3D */

/* Feature Cards 3D */

.new-features-section {
    padding: 100px 50px;
    background: transparent;
    text-align: center;
}

.new-features-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--glass-bg);
    /* Dark glass by default */
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px 30px;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    color: var(--text-color);
    /* Dark mode text (white) */
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--card-hover);
    border-color: var(--primary-color);
}

.special-card {
    background: rgba(147, 112, 219, 0.15);
    /* Dark Transparent Purple */
}

/* Light Mode Overrides for Feature Cards */
.light-mode .feature-card {
    background: white;
    color: #333;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.light-mode .special-card {
    background: #E6E6FA;
    /* Light Lavender */
}

.icon-wrapper {
    font-size: 5rem;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Specific Icon Colors - Removed for Emojis */
.feature-card .icon-wrapper {
    /* Ensure emojis are large and visible */
    font-style: normal;
    line-height: 1;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    /* Cyan in dark mode */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.light-mode .feature-card h3 {
    color: #008CB1;
    /* Darker Cyan for light mode */
}

.special-card h3 {
    color: var(--secondary-color);
}

.light-mode .special-card h3 {
    color: #0077b6;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    /* Light gray for dark bg */
}

.light-mode .feature-card p {
    color: #666;
    /* Dark gray for white bg */
}



/* Restored Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}




/* Testimonials - 3D Cube Rotation Attempt (Simplified to floating cards for now) */
/* Who We Are Section */
.who-we-are-section {
    padding: 100px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-we-are-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    gap: 80px;
    flex-wrap: wrap;
}

.who-we-are-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CSS Illustration Placeholder */
.illustration-placeholder {
    width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    padding-bottom: 50px;
}

.chart-bar {
    width: 40px;
    background: var(--primary-color);
    border-radius: 5px 5px 0 0;
    animation: growBar 2s ease-out forwards;
}

.chart-bar:nth-child(1) {
    height: 40%;
    animation-delay: 0.2s;
}

.chart-bar:nth-child(2) {
    height: 70%;
    animation-delay: 0.4s;
    background: var(--secondary-color);
}

.chart-bar:nth-child(3) {
    height: 90%;
    animation-delay: 0.6s;
}

@keyframes growBar {
    from {
        height: 0;
    }
}

.chart-pie {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 70%, rgba(255, 255, 255, 0.1) 0);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
}

.who-we-are-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.small-title {
    font-size: 1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.who-we-are-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.2;
}

.who-we-are-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* Light Mode Overrides */
.light-mode .illustration-placeholder {
    background: #fff;
    border-color: #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.light-mode .who-we-are-content h2 {
    color: #333;
}

.light-mode .who-we-are-content p {
    color: #555;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    animation: floatCard 6s ease-in-out infinite;
    max-width: 400px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Orbitron', sans-serif;
    font-size: 10rem;
    position: absolute;
    top: -40px;
    left: 20px;
    color: rgba(0, 210, 255, 0.1);
    transform: translateZ(-20px);
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }

    50% {
        transform: translateY(-20px) rotateX(5deg) rotateY(-5deg);
    }
}





/* Benefits Section - Floating 3D Pills */
.benefits-section {
    padding: 100px 20px;
    text-align: center;
    perspective: 1000px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-list li {
    font-size: 1.3rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 40px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    /* 3D setup */
    transform-style: preserve-3d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.benefits-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.benefits-list li:hover {
    transform: translateY(-15px) scale(1.1) rotateX(10deg);
    background: var(--glass-bg);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.3), 0 0 10px rgba(0, 210, 255, 0.5);
    color: white;
    text-shadow: 0 0 5px var(--primary-color);
}

.benefits-list li:hover::before {
    left: 100%;
}

.benefits-list li span {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* Premium Packages Section */
.packages-section {
    padding: 100px 20px;
    text-align: center;
    perspective: 1500px;
}

.packages-section .section-title {
    margin-bottom: 0;
    /* No space between title and subtitle */
    padding-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    /* Space between subtitle and cards */
    display: block;
    /* Ensure it takes full width for centering */
    margin-top: 0;
}

.packages-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 210, 255, 0.2);
    border-color: var(--primary-color);
}

.featured-package {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(58, 123, 213, 0.05));
    border-color: rgba(0, 210, 255, 0.3);
    transform: scale(1.05);
    z-index: 2;
}

.featured-package:hover {
    transform: translateY(-15px) scale(1.07);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #000;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 0 10px var(--primary-color);
}

.package-header {
    margin-bottom: 30px;
}

.package-header h3 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.package-icon {
    font-size: 3rem;
    margin-top: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.package-features {
    list-style: none;
    text-align: center;
    margin-bottom: 30px;
    flex-grow: 1;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.package-features li::before {
    content: '✓';
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

.package-btn {
    width: 100%;
    margin-top: auto;
}

/* Contact Section - Get In Touch Grid */
.contact-section {
    padding: 100px 50px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Force 2x2 layout */
    gap: 30px;
    max-width: 800px;
    /* Constrain width to keep cards looking good in 2x2 */
    margin: 40px auto 0;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.2);
}

.service-icon {
    font-size: 7rem;
    /* Increased from 4rem per user request */
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
}

.contact-name,
.contact-link {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    /* Ensure no default underline */
    border-bottom: 2px solid transparent;
    /* Prepare for hover */
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.contact-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Light Mode Overrides for Contact */
.light-mode .contact-card {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: none;
}

.light-mode .contact-desc {
    color: #666;
}

.light-mode .contact-card h3 {
    color: #333;
}

/* Main Footer */
.main-footer {
    background: #050505;
    padding: 80px 50px 20px;
    border-top: 1px solid var(--glass-border);
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-column h3.footer-logo {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-column h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Light Mode Footer Overrides */
.light-mode .main-footer {
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.light-mode .footer-desc,
.light-mode .footer-links-list a,
.light-mode .footer-bottom,
.light-mode .footer-bottom a {
    color: #666;
}

.light-mode .footer-links-list a:hover,
.light-mode .footer-bottom a:hover {
    color: var(--primary-color);
}

.light-mode .social-icon {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.light-mode .social-icon:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .glitch-text {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    /* Simplified mobile nav for now */
    .glass-nav {
        padding: 15px 20px;
    }
}

/* Review Page Specific Styles */
.dashboard-preview-section {
    padding: 60px 20px;
    text-align: center;
}

.dashboard-preview-container {
    max-width: 1000px;
    margin: 0 auto 60px;
    perspective: 1000px;
}

.dashboard-placeholder {
    width: 100%;
    height: 500px;
    transform: rotateX(5deg);
    transition: transform 0.5s ease;
}

.dashboard-placeholder:hover {
    transform: rotateX(0deg) scale(1.02);
}

.dashboard-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.dashboard-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    text-align: left;
    align-items: flex-start;
}

.review-stars {
    color: #ffbd2e;
    margin-bottom: 15px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    width: 100%;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 1.2rem;
}

.author-info h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
}

.author-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Mock Dashboard Styles - ZeeLeaD Replica */
.dashboard-content.mock-dashboard {
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    background: #0d1117;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    min-height: 600px;
}

/* Mock Sidebar */
.mock-sidebar {
    width: 220px;
    background: #161b22;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    text-align: left;
    flex-shrink: 0;
}

.mock-logo {
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
}

.mock-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mock-nav li {
    padding: 12px 20px;
    color: #8b949e;
    font-size: 0.9rem;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
}

.mock-nav li:hover,
.mock-nav li.active {
    background: rgba(58, 123, 213, 0.1);
    color: white;
    border-left: 3px solid #3a7bd5;
}

.mock-nav li i {
    width: 20px;
    text-align: center;
}

/* Mock Main Content */
.mock-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    background: #0d1117;
}

/* Mock Top Bar */
.mock-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-news-ticker {
    color: #8b949e;
    font-size: 0.9rem;
}

.mock-news-ticker span {
    background: #da3633;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 10px;
    font-size: 0.75rem;
}

.mock-actions {
    display: flex;
    gap: 10px;
}

.mock-btn {
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mock-btn.green {
    background: #238636;
}

.mock-btn.red {
    background: #da3633;
}

/* Mock Stats Grid */
.mock-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mock-card {
    background: #161b22;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-title {
    color: #8b949e;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.stat-value {
    color: #e6edf3;
    font-size: 1.5rem;
    font-weight: 500;
}

.stat-change.negative {
    color: #ff7b72;
    background: rgba(255, 123, 114, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-left: 8px;
    vertical-align: middle;
}

.mock-chart-line {
    height: 40px;
    width: 100%;
    margin-top: 15px;
    opacity: 0.8;
}

.mock-chart-line.blue {
    background: linear-gradient(to top, rgba(58, 123, 213, 0.2), transparent);
    border-top: 2px solid #3a7bd5;
    clip-path: polygon(0 100%, 0 80%, 10% 60%, 20% 70%, 30% 50%, 40% 80%, 50% 40%, 60% 60%, 70% 30%, 80% 50%, 90% 20%, 100% 40%, 100% 100%);
}

.mock-chart-line.purple {
    background: linear-gradient(to top, rgba(155, 89, 182, 0.2), transparent);
    border-top: 2px solid #9b59b6;
    clip-path: polygon(0 100%, 0 70%, 15% 80%, 30% 60%, 45% 70%, 60% 40%, 75% 60%, 90% 30%, 100% 50%, 100% 100%);
}

.mock-chart-line.green {
    background: linear-gradient(to top, rgba(46, 204, 113, 0.2), transparent);
    border-top: 2px solid #2ecc71;
    clip-path: polygon(0 100%, 0 90%, 10% 70%, 20% 80%, 30% 50%, 40% 60%, 50% 30%, 60% 40%, 70% 20%, 80% 40%, 90% 10%, 100% 30%, 100% 100%);
}

/* Mock Charts Grid (Bottom Row) */
.mock-charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    flex: 1;
}

.mock-card.chart-card {
    min-height: 250px;
    justify-content: flex-start;
}

.mock-pie-chart {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: conic-gradient(#e74c3c 0% 60%,
            #3498db 60% 95%,
            #f1c40f 95% 100%);
    margin: 20px auto;
}

.pie-legend {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.75rem;
    color: #8b949e;
    margin-top: 10px;
}

.pie-legend span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dot.pink {
    background: #e74c3c;
}

.dot.blue {
    background: #3498db;
}

.dot.yellow {
    background: #f1c40f;
}

.mock-graph {
    flex: 1;
    width: 100%;
    margin-top: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    position: relative;
    border-bottom: 2px solid #333;
}

.mock-graph::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent, transparent 24%, rgba(255, 255, 255, 0.02) 25%);
}

.mock-graph.blue-graph {
    clip-path: polygon(0 100%, 10% 80%, 25% 20%, 40% 90%, 55% 60%, 70% 70%, 85% 40%, 100% 80%, 100% 100%);
    background: linear-gradient(to top, rgba(58, 123, 213, 0.3), transparent);
    border-top: 2px solid #3a7bd5;
}

.mock-graph.multi-graph {
    clip-path: polygon(0 100%, 15% 40%, 30% 90%, 45% 60%, 60% 30%, 75% 50%, 90% 20%, 100% 60%, 100% 100%);
    background: linear-gradient(to top, rgba(231, 76, 60, 0.3), transparent);
    border-top: 2px solid #e74c3c;
}

.mock-graph.simple-graph {
    clip-path: polygon(0 100%, 20% 20%, 40% 80%, 60% 60%, 80% 30%, 100% 70%, 100% 100%);
    background: linear-gradient(to top, rgba(46, 204, 113, 0.3), transparent);
    border-top: 2px solid #2ecc71;
}

/* Response styles for mock */
@media (max-width: 1024px) {
    .mock-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mock-charts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-content.mock-dashboard {
        flex-direction: column;
    }

    .mock-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding: 10px;
    }

    .mock-nav {
        display: flex;
    }

    .mock-nav li {
        padding: 10px;
    }

    .mock-nav li span {
        display: none;
    }

    /* Show icons only on mobile */
    .mock-charts-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
footer {
    background: #000000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: #8b949e;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--primary-color);
    color: black;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #484f58;
}

.footer-bottom a {
    color: #484f58;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}