/* MXND - Crypto Website Styles */

:root {
    --primary-bg: rgb(24, 18, 52);
    --secondary-bg: rgb(42, 35, 75);
    --neon-green: #00FF7F;
    --neon-green-secondary: #00ff88;
    --white: #FFFFFF;
    --gray-light: #B39EE8;
    --gray-dark: #6B4C93;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 20px rgba(0, 255, 127, 0.3);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* MXND Brand Colors */
    --mxnd-navy: rgb(24, 18, 52);
    --mxnd-purple-dark: #6B4C93;
    --mxnd-purple-med: #8A6EC4;
    --mxnd-purple-light: #B39EE8;
    --mxnd-green: #00FF7F;
    --mxnd-yellow: #FFD700;
}

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

/* Critical mobile title fix - highest priority */
@media screen and (max-width: 768px) {
    .hero-title {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 999 !important;
        width: auto !important;
        max-width: 100% !important;
        font-family: 'Roboto', sans-serif !important;
        font-weight: 900 !important;
    }
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: rgb(24, 18, 52);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hide scrollbar for webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Hide scrollbar for Firefox */
html {
    scrollbar-width: none;
}

/* Ensure scrolling still works */
html, body {
    -ms-overflow-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Glassmorphism Effects */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-glass);
    
}

.glass-card:hover {
    box-shadow: var(--shadow-glass), var(--shadow-glow);
}

.glass-input {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 8px;
    color: var(--white) !important;
    padding: 0.75rem 1rem;
    
}

.glass-input:focus {
    background: var(--glass-bg) !important;
    border-color: var(--neon-green) !important;
    box-shadow: 0 0 0 0.2rem rgba(4, 188, 131, 0.25) !important;
    color: var(--white) !important;
}

.glass-input::placeholder {
    color: var(--gray-light);
}

/* Navigation */
.navbar {
    background: rgba(10, 15, 20, 0.95);
    backdrop-filter: blur(10px);
    
    padding: 1rem 0;
}

.navbar-brand .logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    
    position: relative;
}

.nav-link:hover {
    color: var(--neon-green) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    
}

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

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(4, 188, 131, 0.4);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(4, 188, 131, 0.5);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(4, 188, 131, 0.7);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-outline-primary {
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-primary:hover {
    background: var(--neon-green);
    color: var(--primary-bg);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: rgb(24, 18, 52);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 127, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(179, 158, 232, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(138, 110, 196, 0.1) 0%, transparent 50%);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 188, 131, 0.05) 0%, transparent 50%, rgba(4, 188, 131, 0.02) 100%);
}



.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(4, 188, 131, 0.2), rgba(4, 188, 131, 0.1));
    border: 1px solid rgba(4, 188, 131, 0.3);
    color: var(--neon-green);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
}



.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    flex: 1;
    max-width: 150px;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-combined {
    margin-bottom: 0.5rem;
}

.stat-combined .stat-value {
    margin-bottom: 0;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    font-weight: 500;
}

.hero-logo {
}

.animated-logo {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 20px var(--neon-green));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white), var(--neon-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    visibility: visible;
    opacity: 1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.floating-card {
    position: relative;
}

.crypto-visual {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-ring {
    position: absolute;
    border: 2px solid var(--neon-green);
    border-radius: 50%;
}

.orbit-ring:first-child {
    width: 200px;
    height: 200px;
    opacity: 0.6;
}

.orbit-ring-2 {
    width: 280px;
    height: 280px;
    border-color: var(--neon-green-secondary);
    opacity: 0.4;
}

.orbit-ring-3 {
    width: 350px;
    height: 350px;
    border: 1px solid rgba(4, 188, 131, 0.2);
    opacity: 0.3;
}

.central-logo {
    position: absolute;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 188, 131, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(4, 188, 131, 0.3);
}

.logo-pulse {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(4, 188, 131, 0.6));
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
}

.dot-1 {
    top: 20%;
    left: 15%;
    animation: floatDot 4s ease-in-out infinite;
}

.dot-2 {
    top: 30%;
    right: 20%;
    animation: floatDot 5s ease-in-out infinite 1s;
}

.dot-3 {
    bottom: 25%;
    left: 25%;
    animation: floatDot 6s ease-in-out infinite 2s;
}

.dot-4 {
    bottom: 35%;
    right: 15%;
    animation: floatDot 4.5s ease-in-out infinite 0.5s;
}



.central-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px var(--neon-green));
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--neon-green);
    border-bottom: 2px solid var(--neon-green);
}

/* Feature Cards */
.feature-card {
    text-align: center;
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-glow);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-bg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

/* Why Section */
.why-section {
    background: linear-gradient(135deg, rgba(4, 188, 131, 0.05), transparent);
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    
}

.why-item:hover {
    box-shadow: var(--shadow-glass);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--primary-bg);
}

.why-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.why-visual img {
    box-shadow: var(--shadow-glass);
}



/* Technology Section */
.technology-section {
    background: var(--secondary-bg);
}

.tech-card {
    text-align: center;
    height: 100%;
}

.tech-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-glow);
}

.tech-icon i {
    font-size: 2.5rem;
    color: var(--primary-bg);
}

/* Use Cases Section */
.use-case-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    
    height: 100%;
}

.use-case-card:hover {
    box-shadow: var(--shadow-glass), var(--shadow-glow);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-glow);
}

.use-case-icon i {
    font-size: 2rem;
    color: var(--primary-bg);
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, rgba(4, 188, 131, 0.05), transparent);
}

.team-card {
    text-align: center;
    height: 100%;
    
}

.team-card:hover {
}

.team-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-glow);
}

.avatar-placeholder i {
    font-size: 4rem;
    color: var(--primary-bg);
}

.avatar-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    border: 4px solid var(--neon-green);
    box-shadow: var(--shadow-glow);
    object-fit: cover;
    object-position: center;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.team-role {
    color: var(--neon-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.founder-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.founder-highlights li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.founder-highlights li:before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    
}

.social-link:hover {
    background: var(--neon-green);
    color: var(--primary-bg);
    box-shadow: var(--shadow-glow);
}

/* Backing Section */
.backing-section {
    background: var(--secondary-bg);
}

.backing-card {
    text-align: center;
}

.backing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.backing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-glow);
}

.backing-icon i {
    font-size: 2rem;
    color: var(--primary-bg);
}

/* Legacy Section */
.legacy-section {
    background: linear-gradient(135deg, rgba(4, 188, 131, 0.05), transparent);
}

.legacy-card {
    text-align: center;
    padding: 3rem 2rem;
}

.legacy-quote {
    position: relative;
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.legacy-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
}

.legacy-logo {
    display: flex;
    justify-content: center;
}

.bitrus-placeholder {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--gray-light);
}

.bitrus-placeholder i {
    font-size: 1.5rem;
    color: var(--neon-green);
}

/* Contact Section */
.contact-section {
    background: var(--secondary-bg);
}

.contact-card,
.newsletter-card {
    height: 100%;
}

.contact-card h3,
.newsletter-card h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.form-label {
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--glass-border);
}

.footer-brand h5 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--gray-light);
}

.footer h6 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--neon-green);
}

.footer-divider {
    border-color: var(--glass-border);
    margin: 2rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.copyright {
    color: var(--gray-light);
    margin: 0;
}

/* Language Toggle */
.language-toggle .btn {
    border-color: var(--glass-border);
    color: var(--white);
    
}

.language-toggle .btn:hover {
    background: var(--neon-green);
    border-color: var(--neon-green);
    color: var(--primary-bg);
}

/* Animations Removed for Professional Appearance */

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        color: var(--white);
        background: none;
        -webkit-text-fill-color: var(--white);
        word-break: break-word;
        overflow-wrap: break-word;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        color: var(--gray-light);
    }
    
    .hero-content {
        text-align: center;
        padding: 2rem 1rem;
        position: relative;
        z-index: 10;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        margin-bottom: 0;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    /* Ensure hero section is properly visible on mobile */
    .hero-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-section .container {
        position: relative;
        z-index: 2;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .crypto-visual {
        width: 250px;
        height: 250px;
    }
    
    .central-logo {
        width: 120px;
        height: 120px;
    }
    
    .logo-pulse {
        width: 90px;
        height: 90px;
    }
    
    .orbit-ring:first-child {
        width: 150px;
        height: 150px;
    }
    
    .orbit-ring-2 {
        width: 220px;
        height: 220px;
    }
    
    .orbit-ring-3 {
        width: 280px;
        height: 280px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .stat-item {
        max-width: none;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .tracking-platforms .platform-logo {
        width: 35px;
        height: 35px;
    }
    
    .tracking-platforms .platform-logo-placeholder {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .exchange-logo {
        width: 30px;
        height: 30px;
    }
    
    .exchange-logo-placeholder {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .platform-name,
    .exchange-name {
        font-size: 0.75rem;
    }
    
    .central-icon {
        font-size: 3rem;
    }
    
    .why-item {
        flex-direction: column;
        text-align: center;
    }
    
    .why-item:hover {
    }
    
    .backing-content {
        grid-template-columns: 1fr;
    }
    
    .legacy-quote blockquote {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        color: var(--white);
        background: none;
        -webkit-text-fill-color: var(--white);
        word-break: break-word;
        overflow-wrap: break-word;
        text-align: center;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        padding: 0 15px;
    }
    
    .central-logo {
        width: 100px;
        height: 100px;
    }
    
    .logo-pulse {
        width: 70px;
        height: 70px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        word-break: break-word;
        hyphens: auto;
    }
    
    /* Fix all heading elements for mobile */
    h1, h2, h3, h4, h5, h6 {
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.3;
    }
    
    /* Specific mobile title fixes */
    .brand-name {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .team-info h3 {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .overview-title {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    /* Container padding adjustments for mobile */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
    
    .feature-icon,
    .tech-icon,
    .use-case-icon,
    .backing-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i,
    .tech-icon i,
    .use-case-icon i,
    .backing-icon i {
        font-size: 1.5rem;
    }
    
    .avatar-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .avatar-image {
        width: 150px;
        height: 150px;
    }
    
    .avatar-placeholder i {
        font-size: 3rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green-secondary);
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    /* iPhone specific title optimizations */
    @media (max-width: 414px) {
        .hero-title {
            font-size: 1.5rem;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: var(--white);
            background: none;
            -webkit-text-fill-color: var(--white);
            word-break: break-word;
            overflow-wrap: break-word;
            text-align: center;
            padding: 0 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .section-title {
            font-size: 1.6rem;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }
        
        h1 {
            font-size: 1.8rem;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 1.5rem;
            line-height: 1.2;
        }
        
        h3 {
            font-size: 1.3rem;
            line-height: 1.2;
        }
        
        /* Fix text overflow on small screens */
        .navbar-brand .logo-text {
            font-size: 1.2rem;
        }
        
        .team-info h3 {
            font-size: 1.2rem;
        }
        
        /* Ensure proper viewport handling */
        .container {
            max-width: 100%;
            padding-left: 12px;
            padding-right: 12px;
        }
    }
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Form validation */
.was-validated .form-control:invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* ===== TOKENOMICS DASHBOARD STYLES ===== */

.tokenomics-dashboard {
    padding-top: 80px;
}

.dashboard-header {
    background: linear-gradient(135deg, rgba(4, 188, 131, 0.05), transparent);
}

.text-neon {
    color: var(--neon-green);
    font-weight: 600;
}

.last-updated {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border-radius: 20px;
    display: inline-block;
}

/* Key Metrics Cards */
.key-metrics {
    background: var(--secondary-bg);
}

.metric-card {
    padding: 2rem 1.5rem;
    text-align: center;
    border: 2px solid transparent;
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-glow);
}

.metric-icon i {
    font-size: 1.5rem;
    color: var(--primary-bg);
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.metric-label {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Charts Section */
.charts-section {
    background: var(--primary-bg);
}

.chart-card {
    padding: 2rem;
}

.chart-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.chart-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.3rem;
}

.chart-controls .btn {
    font-size: 0.8rem;
    padding: 0.375rem 0.75rem;
}

.chart-container {
    position: relative;
    height: 300px;
}

/* Market Activity */
.market-activity {
    background: var(--secondary-bg);
}

.activity-card {
    padding: 2rem;
}

.activity-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    
}

.activity-item:hover {
    box-shadow: var(--shadow-glass);
}

.activity-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon i {
    font-size: 1.2rem;
    color: var(--primary-bg);
}

.activity-content h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.activity-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neon-green);
    margin: 0;
    font-family: 'Orbitron', sans-serif;
}

/* Reserves Card */
.reserves-card {
    padding: 2rem;
}

.reserves-container {
    position: relative;
    height: 250px;
}

.reserves-legend {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

/* Transparency Section */
.transparency-section {
    background: linear-gradient(135deg, rgba(4, 188, 131, 0.05), transparent);
}

.transparency-card {
    padding: 3rem 2rem;
}

.transparency-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-glow);
}

.transparency-icon i {
    font-size: 2rem;
    color: var(--primary-bg);
}

.transparency-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Tokenomics */
@media (max-width: 992px) {
    .chart-container {
        height: 250px;
    }
    
    .activity-metrics {
        gap: 1rem;
    }
    
    .activity-item {
        flex-direction: column;
        text-align: center;
    }
    
    .activity-item:hover {
    }
}

@media (max-width: 768px) {
    .tokenomics-dashboard {
        padding-top: 60px;
    }
    
    .metric-card {
        padding: 1.5rem 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .chart-card {
        padding: 1.5rem;
    }
    
    .chart-container {
        height: 200px;
    }
    
    .reserves-container {
        height: 200px;
    }
    
    .transparency-card {
        padding: 2rem 1.5rem;
    }
    
    .transparency-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .transparency-buttons .btn {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .metric-icon {
        width: 50px;
        height: 50px;
    }
    
    .metric-icon i {
        font-size: 1.2rem;
    }
    
    .metric-value {
        font-size: 1.3rem;
    }
    
    .activity-icon {
        width: 40px;
        height: 40px;
    }
    
    .activity-icon i {
        font-size: 1rem;
    }
    
    .transparency-icon {
        width: 60px;
        height: 60px;
    }
    
    .transparency-icon i {
        font-size: 1.5rem;
    }
}

/* Animation for real-time updates */
/* Animation removed - dataUpdate keyframes disabled */

.data-updated {

}

/* Chart tooltip customization */
.chart-tooltip {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 8px !important;
    color: var(--white) !important;
}

.was-validated .form-control:valid {
    border-color: var(--neon-green);
    box-shadow: 0 0 0 0.2rem rgba(4, 188, 131, 0.25);
}

/* Alert styles */
.alert {
    border-radius: 8px;
    border: none;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(4, 188, 131, 0.2);
    color: var(--neon-green);
    border: 1px solid rgba(4, 188, 131, 0.3);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b7a;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* ===== NAVIGATION CARDS ===== */
.navigation-section {
    background: linear-gradient(135deg, rgba(4, 188, 131, 0.05), rgba(0, 206, 209, 0.05));
}

.nav-card {
    padding: 2rem;
    text-align: center;
    
    height: 100%;
    color: inherit;
    border: 1px solid rgba(4, 188, 131, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(4, 188, 131, 0.1), transparent);
    
}

.nav-card:hover::before {
    left: 100%;
}

.nav-card:hover {
    border-color: #04BC83;
    box-shadow: 0 10px 30px rgba(4, 188, 131, 0.3);
    color: inherit;
    text-decoration: none;
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
}

.nav-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #04BC83, #00CED1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
    
}

.nav-icon:hover {
}

.icon-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #04BC83, #00CED1);
    border-radius: 50%;
    opacity: 0;
    filter: blur(8px);
    
}

.nav-card:hover .icon-glow {
    opacity: 0.7;
}

.card-arrow {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    color: var(--neon-green);
    opacity: 0;
    
}

.nav-card:hover .card-arrow {
    opacity: 1;
}

/* ===== AVAILABLE SECTION ===== */
.available-section {
    background: linear-gradient(135deg, rgba(4, 188, 131, 0.02), rgba(0, 206, 209, 0.02));
}

.available-section h3 {
    color: var(--neon-green);
    font-size: 1.5rem;
    font-weight: 600;
}

.platform-link,
.exchange-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 1.5rem 1rem;
    
    height: 100%;
    border: 1px solid rgba(4, 188, 131, 0.2);
}

.platform-link:hover,
.exchange-link:hover {
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(4, 188, 131, 0.2);
    color: inherit;
    text-decoration: none;
}

.platform-logo,
.exchange-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
    
}

.platform-link:hover .platform-logo,
.exchange-link:hover .exchange-logo {
}

.platform-logo-placeholder,
.exchange-logo-placeholder {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--primary-bg);
    font-size: 1.2rem;
    
}

.platform-link:hover .platform-logo-placeholder,
.exchange-link:hover .exchange-logo-placeholder {
    box-shadow: 0 0 20px rgba(4, 188, 131, 0.4);
}

.platform-name,
.exchange-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0;
    text-align: center;
}

.tracking-platforms .platform-link {
    padding: 2rem 1rem;
}

.tracking-platforms .platform-logo {
    width: 50px;
    height: 50px;
}

.tracking-platforms .platform-logo-placeholder {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

.nav-card h4 {
    margin-bottom: 1rem;
    color: #04BC83;
    font-weight: 600;
}

.nav-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(4, 188, 131, 0.08), rgba(0, 206, 209, 0.08));
}

.cta-card {
    padding: 2rem;
    height: 100%;
}

.cta-card h3 {
    color: #04BC83;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(4, 188, 131, 0.1);
    border-radius: 50%;
    color: #04BC83;
    text-decoration: none;
    
}

.social-links .social-link:hover {
    background: #04BC83;
    color: white;
}

/* ===== PAGE-SPECIFIC STYLES ===== */

/* About Page */
.about-section, .why-section, .backing-section {
    background: var(--primary-bg);
}

.why-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    
}

.why-item:hover {
    box-shadow: var(--shadow-glass);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 1.2rem;
    color: var(--primary-bg);
}

.why-content h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.why-content p {
    color: var(--gray-light);
    margin: 0;
    font-size: 0.9rem;
}

.backing-content {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.backing-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.backing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-bg);
}

/* Technology Page */
.tech-details, .api-section {
    background: var(--secondary-bg);
}

.tech-feature {
    padding: 1.5rem;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    height: 100%;
    
}

.tech-feature:hover {
    box-shadow: var(--shadow-glass);
}

.tech-feature h4 {
    color: var(--neon-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.tech-feature h4 i {
    margin-right: 0.5rem;
}

.api-buttons {
    margin-top: 2rem;
}

.api-buttons .btn {
    margin: 0.25rem;
}

/* Use Cases Page */
.detailed-cases, .industry-apps {
    background: var(--secondary-bg);
}

.case-detail {
    padding: 2rem;
    height: 100%;
}

.case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.case-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.case-icon i {
    font-size: 1.2rem;
    color: var(--primary-bg);
}

.case-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.2rem;
}

.case-benefits {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.case-benefits li {
    padding: 0.5rem 0;
    color: var(--gray-light);
    position: relative;
    padding-left: 1.5rem;
}

.case-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    
    text-align: center;
    position: relative;
    cursor: pointer;
}

.industry-item:hover {
    box-shadow: var(--shadow-glass);
    border-color: var(--neon-green);
}

.industry-item i {
    font-size: 2rem;
    color: var(--neon-green);
    
}

.industry-item:hover i {
    text-shadow: 0 0 10px rgba(4, 188, 131, 0.5);
}

.industry-item span {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Industry Tooltips */
.industry-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    background: linear-gradient(135deg, rgba(4, 188, 131, 0.95), rgba(0, 206, 209, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid var(--neon-green);
    border-radius: 15px;
    padding: 1.5rem;
    width: 320px;
    box-shadow: 0 15px 35px rgba(4, 188, 131, 0.3);
    opacity: 0;
    visibility: hidden;
    
    transform: translateX(-50%) translateY(10px) scale(0.95);
    z-index: 1000;
}

.industry-tooltip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    border: 8px solid transparent;
    border-top-color: var(--neon-green);
}

.industry-item:hover .industry-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.industry-tooltip h4 {
    color: var(--primary-bg);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Orbitron', sans-serif;
}

.industry-tooltip p {
    color: var(--primary-bg);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Mobile responsiveness for tooltips */
@media (max-width: 768px) {
    .industry-tooltip {
        width: 280px;
        padding: 1rem;
        bottom: 130%;
    }
    
    .industry-tooltip h4 {
        font-size: 1rem;
    }
    
    .industry-tooltip p {
        font-size: 0.8rem;
    }
    
    .industry-item {
        padding: 1rem;
    }
    
    .industry-item i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .industry-tooltip {
        width: 250px;
        position: fixed;
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9999;
    }
    
    .industry-tooltip::before {
        display: none;
    }
    
    .industry-item:hover .industry-tooltip {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* ===== COMING SOON PAGE ===== */
.coming-soon-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(4, 188, 131, 0.05), transparent);
}

.coming-soon-card {
    padding: 3rem 2rem;
    text-align: center;
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(4, 188, 131, 0.4);

}

.coming-soon-icon i {
    font-size: 2.5rem;
    color: var(--primary-bg);
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary-bg);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;

}

.coming-soon-description {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.features-preview {
    margin-top: 3rem;
}

.feature-preview {
    text-align: center;
    padding: 1.5rem;
    background: rgba(4, 188, 131, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(4, 188, 131, 0.2);
    height: 100%;
    
}

.feature-preview:hover {
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(4, 188, 131, 0.2);
}

.feature-preview .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-preview .feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-bg);
}

.feature-preview h5 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-preview p {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin: 0;
}

.notify-section {
    background: var(--secondary-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.newsletter-form-inline .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form-inline .form-control {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 0.75rem 1rem;
}

.newsletter-form-inline .form-control:focus {
    background: var(--glass-bg);
    border-color: var(--neon-green);
    color: var(--white);
    box-shadow: 0 0 10px rgba(4, 188, 131, 0.3);
}

.newsletter-form-inline .form-select {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 0.75rem 0.5rem;
}

.newsletter-form-inline .form-select:focus {
    background: var(--glass-bg);
    border-color: var(--neon-green);
    color: var(--white);
    box-shadow: 0 0 10px rgba(4, 188, 131, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 30px rgba(4, 188, 131, 0.4);
    }
    50% {
        box-shadow: 0 0 50px rgba(4, 188, 131, 0.6);
    }
    100% {
        box-shadow: 0 0 30px rgba(4, 188, 131, 0.4);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(4, 188, 131, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(4, 188, 131, 0.8);
    }
}

/* ===== ENHANCED FOOTER STYLES ===== */
.footer-social {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    text-decoration: none;
    
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    opacity: 0;
    
    border-radius: 50%;
}

.social-link i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    
}

.social-link:hover {
    box-shadow: 0 10px 25px rgba(4, 188, 131, 0.3);
    border-color: var(--neon-green);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    color: var(--primary-bg);
}

.footer-links {
    padding: 2rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.footer-heading {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 0.5rem;
}

.footer-link-list a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    
    display: inline-block;
    position: relative;
}

.footer-link-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-green);
    
}

.footer-link-list a:hover {
    color: var(--neon-green);
}

.footer-link-list a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-copyright {
    color: var(--gray-light);
}

.footer-copyright p {
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    color: var(--gray);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Mobile responsiveness for footer */
@media (max-width: 768px) {
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link i {
        font-size: 1.1rem;
    }
    
    .footer-links .row > div {
        margin-bottom: 1.5rem;
    }
    
    .footer-heading {
        font-size: 0.9rem;
    }
    
    .footer-link-list a {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .footer-social h5 {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0 0;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .brand-tagline {
        font-size: 0.9rem;
    }
}

/* ===== ENHANCED BITRUS EXCHANGE SECTION ===== */
.bitrus-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.bitrus-logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(4, 188, 131, 0.3);

}

.bitrus-logo-icon i {
    font-size: 2rem;
    color: var(--primary-bg);
}

.bitrus-overview {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 2rem;
}

.overview-card {
    background: rgba(4, 188, 131, 0.05);
    border: 1px solid rgba(4, 188, 131, 0.2);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    
}

.overview-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 15px 40px rgba(4, 188, 131, 0.2);
}

.overview-title {
    color: var(--neon-green);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.overview-card p {
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
}

.bitrus-features .feature-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    
}

.bitrus-features .feature-item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 15px 40px rgba(4, 188, 131, 0.15);
}

.bitrus-features .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(4, 188, 131, 0.3);
}

.bitrus-features .feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-bg);
}

.bitrus-features .feature-content h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.bitrus-features .feature-content p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.bitrus-stats {
    background: rgba(4, 188, 131, 0.03);
    border: 1px solid rgba(4, 188, 131, 0.1);
    border-radius: 15px;
    padding: 2rem;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(4, 188, 131, 0.5);
}

.stat-label {
    color: var(--gray-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Mobile responsiveness for Bitrus section */
@media (max-width: 768px) {
    .bitrus-logo-icon {
        width: 70px;
        height: 70px;
    }
    
    .bitrus-logo-icon i {
        font-size: 1.8rem;
    }
    
    .overview-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .overview-title {
        font-size: 1.1rem;
    }
    
    .bitrus-features .feature-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .bitrus-features .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .bitrus-features .feature-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .bitrus-stats {
        padding: 1.5rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .overview-card {
        padding: 1rem;
    }
}

/* ===== EASTER EGG LOGO HOVER EFFECTS ===== */
.navbar-brand {
    position: relative;
    
    cursor: pointer;
}

.navbar-brand img {
    
    filter: drop-shadow(0 0 10px rgba(4, 188, 131, 0.3));
}

/* Easter Egg Hover Effects */
.navbar-brand:hover img,
.navbar-brand.logo-clicked img {
    transform: rotate(360deg) scale(1.1);
}

/* Logo link styling */
.navbar-brand {
    text-decoration: none !important;
}

.navbar-brand:hover,
.navbar-brand:focus {
    text-decoration: none;
}



/* Mobile touch effect (for mobile devices) */
@media (max-width: 768px) {
    .navbar-brand:active {
    }
    
    .navbar-brand:active img {
        transform: rotate(180deg) scale(1.05);
        filter: drop-shadow(0 0 15px rgba(4, 188, 131, 0.6)) 
                hue-rotate(90deg);
    }
}

/* Team Page */
.advisory-section, .culture-section, .legacy-section {
    background: var(--secondary-bg);
}

.advisor-card {
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.advisor-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-bg);
}

.advisor-card h4 {
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.legacy-card {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.legacy-quote {
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 2rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.legacy-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--white);
    margin: 0;
    font-weight: 300;
}

.bitrus-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-light);
    font-size: 1.1rem;
}

.bitrus-placeholder i {
    color: var(--neon-green);
    font-size: 1.5rem;
}

/* Bitrus Features Section */
.bitrus-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(4, 188, 131, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(4, 188, 131, 0.2);
    
}

.feature-item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 5px 20px rgba(4, 188, 131, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
    color: var(--primary-bg);
}

.feature-content h4 {
    color: var(--white);
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Additional mobile title fixes */
    .navbar-brand .logo-text {
        font-size: 1.4rem;
        line-height: 1;
    }
    
    /* Ensure proper spacing for mobile navigation */
    .navbar-brand {
        padding: 0.5rem 0;
    }
    
    /* Fix section titles on mobile */
    .section-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

.value-item {
    text-align: center;
    padding: 2rem 1rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-bg);
}

.value-item h4 {
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: var(--gray-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Page */
.faq-section {
    background: var(--secondary-bg);
}

.accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: var(--glass-bg);
    color: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(4, 188, 131, 0.25);
}

.accordion-body {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 1.5rem;
    color: var(--gray-light);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    
}

.contact-method:hover {
    box-shadow: var(--shadow-glass);
}

.method-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1rem;
    color: var(--primary-bg);
}

.method-content h5 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.method-content p {
    color: var(--neon-green);
    margin: 0;
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
}

.contact-methods-section {
    background: var(--primary-bg);
}

/* ===== NAVIGATION FOOTER ===== */
.navigation-footer {
    background: linear-gradient(135deg, rgba(4, 188, 131, 0.1), rgba(0, 206, 209, 0.1));
    border-top: 1px solid var(--glass-border);
}

.footer-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 2rem;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 0.5rem;
    text-decoration: none;
    color: inherit;
    
    border: 1px solid rgba(4, 188, 131, 0.2);
    min-height: 120px;
    justify-content: center;
}

.footer-nav-item:hover {
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(4, 188, 131, 0.3);
    color: inherit;
    text-decoration: none;
}

.footer-nav-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-green-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-bg);
    font-size: 1.2rem;
}

.footer-nav-item span {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
}

.footer-brand {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.brand-name {
    color: var(--neon-green);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.brand-tagline {
    color: var(--gray-light);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* Responsive Design for Footer */
@media (max-width: 992px) {
    .footer-nav-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .footer-nav-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .footer-nav-item {
        padding: 1rem 0.5rem;
        min-height: 100px;
    }
    
    .footer-nav-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-nav-item span {
        font-size: 0.8rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .footer-nav-item {
        padding: 0.8rem 0.3rem;
        min-height: 90px;
    }
    
    .footer-nav-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-nav-item span {
        font-size: 0.75rem;
    }
}

/* Logo Image Styles - FORCE LARGE SIZES */
.logo-text-img {
    height: 45px !important;
    width: auto !important;
    vertical-align: middle !important;
    max-height: none !important;
    min-height: 45px !important;
}

.hero-logo-text {
    height: 400px !important;
    width: auto !important;
    vertical-align: middle !important;
    margin-right: 0.5rem !important;
    max-height: none !important;
    min-height: 400px !important;
    transform: scale(1.5) !important;
}

.inline-logo {
    height: 150px !important;
    width: auto !important;
    vertical-align: middle !important;
    margin: 0 0.25rem !important;
    max-height: none !important;
    min-height: 150px !important;
}

.small-inline-logo {
    height: 100px !important;
    width: auto !important;
    vertical-align: middle !important;
    margin: 0 0.25rem !important;
    max-height: none !important;
    min-height: 100px !important;
}

/* Mobile responsive logo sizes - STILL LARGE */
@media (max-width: 768px) {
    .hero-logo-text {
        height: 200px !important;
        min-height: 200px !important;
        transform: scale(1.2) !important;
    }
    
    .inline-logo {
        height: 100px !important;
        min-height: 100px !important;
    }
    
    .small-inline-logo {
        height: 80px !important;
        min-height: 80px !important;
    }
    
    .logo-text-img {
        height: 40px !important;
        min-height: 40px !important;
    }
}

@media (max-width: 576px) {
    .hero-logo-text {
        height: 150px !important;
        min-height: 150px !important;
        transform: scale(1) !important;
    }
    
    .inline-logo {
        height: 80px !important;
        min-height: 80px !important;
    }
    
    .small-inline-logo {
        height: 60px !important;
        min-height: 60px !important;
    }
    
    .logo-text-img {
        height: 35px !important;
        min-height: 35px !important;
    }
}

/* Footer Logo Styles - FORCE LARGE */
.footer-coin-logo {
    height: 120px !important;
    width: auto !important;
    max-height: none !important;
    min-height: 120px !important;
}

.footer-text-logo {
    height: 100px !important;
    width: auto !important;
    max-height: none !important;
    min-height: 100px !important;
}

.brand-logos {
    flex-wrap: wrap;
}

/* Footer copyright layout styles */
.footer-copyright .d-flex {
    align-items: center;
}

.footer-copyright .copyright-text {
    color: var(--gray-light);
}

/* Bitrus title with MXND logo styling */
.bitrus-title img {
    height: 40px !important;
    width: auto !important;
    max-height: none !important;
    vertical-align: middle !important;
    margin-left: 0.5rem !important;
}

@media (max-width: 768px) {
    .footer-copyright .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }
}

@media (max-width: 576px) {
    .footer-coin-logo {
        height: 90px !important;
        min-height: 90px !important;
    }
    
    .footer-text-logo {
        height: 75px !important;
        min-height: 75px !important;
    }
    
    .brand-logos {
        gap: 0.5rem;
    }
    
    .footer-copyright .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }
}
