/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Spacing System */
    --spacing: 8px;
    --shape-borderRadius: 8px;

    /* Z-Index */
    --zIndex-mobileStepper: 1000;
    --zIndex-fab: 1050;
    --zIndex-speedDial: 1050;
    --zIndex-appBar: 1100;
    --zIndex-drawer: 1200;
    --zIndex-modal: 1300;
    --zIndex-snackbar: 1400;
    --zIndex-tooltip: 1500;

    /* Layout */
    --layout-nav-zIndex: 1201;
    --layout-nav-mobile-width: 288px;
    --layout-header-blur: 8px;
    --layout-header-zIndex: 1101;
    --layout-header-mobile-height: 64px;
    --layout-header-desktop-height: 72px;

    /* Color System */
    --primary-color: #ffdef8;
    --secondary-color: #ffbf00;
    --bg-dark: #0a0e27;
    --bg-card: #161b33;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --border-color: rgba(255, 255, 255, 0.1);

    /* Palette Colors */
    --palette-primary-main: #FA541C;
    --palette-primary-dark: #B3200E;
    --palette-primary-contrastText: #FFFFFF;
    --palette-text-primary: #FFFFFF;
    --palette-text-secondary: #919EAB;
    --palette-background-default: #141A21;
    --palette-background-paper: #1C252E;

    /* Shadows */
    --shadows-0: none;
    --shadows-1: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
    --shadows-2: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    --shadows-3: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
    --shadows-4: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

[data-color-scheme="light"] {
    --bg-dark: #ffffff;
    --bg-card: #f8f9fa;
    --text-primary: #0a0e27;
    --text-secondary: #5c6c7d;
    --border-color: rgba(0, 0, 0, 0.1);
}

body {
    margin: 0;
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #000;
    background-image: url('./../images/Start Building-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

[data-color-scheme="light"] body::before {
    opacity: 0;
}

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

/* Header Styles - .css-1jhkqb6 */
.css-1jhkqb6 {
    background-color: #000;
    color: var(--palette-text-primary);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--layout-header-zIndex);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

/* Header Container - .css-o4pa05 */
.css-o4pa05 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    padding-left: calc(3 * var(--spacing));
    padding-right: calc(3 * var(--spacing));

    box-sizing: border-box;
}

/* Logo Styles */
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    vertical-align: middle;
    /* width: 300px; */
    height: 38px;
    margin-left: calc(11 * var(--spacing));
}

.logo-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    vertical-align: middle;
    display: block;
    object-fit: contain;
}

/* Navigation */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: calc(5 * var(--spacing));
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: calc(0.5 * var(--spacing));
    line-height: 1.5714285714285714;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links li.active a {
    color: #FA541C;
    position: relative;
}

.nav-links li.active a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #FA541C;
    border-radius: 50%;
}

.nav-links a i.fa-chevron-down {
    font-size: 0.65rem;
    margin-left: calc(0.25 * var(--spacing));
    color: #FFFFFF;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: calc(1.5 * var(--spacing));
    flex-shrink: 0;
    margin-right: calc(8 * var(--spacing));
}

.start-building-btn {
    background: #FFFFFF !important;
    color: #000000 !important;
    border: none !important;
    border-bottom: 3px solid #FF8C42 !important;
    padding: 10px 24px !important;
    border-radius: 12px !important;
    font-size: 0.9375rem !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    cursor: pointer;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    text-decoration: none;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    text-transform: unset;
    position: relative;
    box-sizing: border-box;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.start-building-btn:hover {
    background: #F8F8F8 !important;
    border-bottom-color: #FF7028 !important;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-1px);
    opacity: 1 !important;
}

.theme-toggle {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 6px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    border-radius: var(--shape-borderRadius);
    min-width: 64px;
    position: relative;
    box-sizing: border-box;
}

.theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: calc(1 * var(--spacing));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(0.5 * var(--spacing));
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-theme-toggle-header {
    display: none;
}

/* Main Content */
/* .index-main-content {
    min-height: 100vh;
    box-sizing: border-box;
    /* display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
}

*/
.main-content {
    padding-top: 80px;
    min-height: 100vh;
}

/* Dashboard Main Content - Dark Background */
body:has(.dashboard-section) {
    background-image: none;
    background-color: #0a0a0a;
}

body:has(.dashboard-section)::before {
    display: none;
}

.dashboard-section {
    background-color: #0a0a0a;
    min-height: 100vh;
    padding: calc(6 * var(--spacing)) 0;
    position: relative;
    z-index: 1;
}

.dashboard-section .container {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    min-height: 100vh;
    padding: calc(20 * var(--spacing)) calc(4 * var(--spacing)) 0;
    padding-left: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: calc(3 * var(--spacing));
    padding-left: calc(0 * var(--spacing));
    padding-right: calc(3 * var(--spacing));
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 800;
    font-size: 4rem;
    line-height: 1.15;
    margin: 0;
    color: var(--palette-text-primary);
    letter-spacing: -1px;
}

.brand-gradient {
    background: linear-gradient(90deg, #FF4500 0%, #FF1493 50%, #8B008B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #FFFFFF;
    max-width: 600px;
    margin-top: -8px;
}

.dashboard-btn {
    background: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
    padding: calc(1.25 * var(--spacing)) calc(2.5 * var(--spacing));
    border-radius: var(--shape-borderRadius);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: calc(2 * var(--spacing));
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, transform 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.dashboard-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-dark);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 222, 248, 0.3);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-dark);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Page Hero */
.page-hero {
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Dashboard Styles */
.dashboard-section {
    padding: 3rem 0;
}

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

.stat-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-dark);
}

.stat-info h3 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.activity-section {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.activity-section h2 {
    margin-bottom: 1.5rem;
}

.empty-state {
    text-align: center;
    color: var(--text-secondary);
    padding: 3rem 0;
}

/* Buy Section */
.buy-section {
    padding: 3rem 0;
}

.buy-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.buy-card h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.buy-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
}

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

.price-summary {
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

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

.price-row.total {
    font-weight: 700;
    font-size: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.buy-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-dark);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.buy-button:hover {
    transform: translateY(-2px);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.info-card h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* OTC Section */
.otc-section {
    padding: 3rem 0;
}

.otc-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.otc-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.otc-intro p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.otc-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.otc-feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.otc-contact {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    margin-bottom: 3rem;
}

.otc-contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.otc-contact p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.contact-btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    border: none;
}

.contact-btn.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-dark);
}

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

.contact-btn:hover {
    transform: translateY(-2px);
}

.otc-info {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.otc-info h3 {
    margin-bottom: 1rem;
}

.otc-info ul {
    list-style: none;
    padding-left: 0;
}

.otc-info li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.otc-info li:last-child {
    border-bottom: none;
}

.otc-info li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Footer (simple version – will be overridden later) */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.footer-social-title {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

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

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.separator {
    color: var(--text-secondary);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1300;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mobile-nav-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: calc(4 * var(--spacing));
    display: flex;
    flex-direction: column;
}

.mobile-nav-close {
    position: absolute;
    top: calc(3 * var(--spacing));
    right: calc(3 * var(--spacing));
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: calc(1 * var(--spacing));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    transition: background-color 0.2s ease;
}

.mobile-nav-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    padding-top: calc(8 * var(--spacing));
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: calc(1 * var(--spacing));
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(2.5 * var(--spacing)) 0;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #FA541C;
}

.mobile-nav-item.active .mobile-nav-link {
    color: #FA541C;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 1000px;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: calc(2 * var(--spacing));
    padding: calc(2 * var(--spacing)) calc(3 * var(--spacing));
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.mobile-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-text h4 {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #FFFFFF;
    margin: 0 0 calc(0.5 * var(--spacing)) 0;
}

.mobile-dropdown-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.mobile-nav-footer {
    margin-top: calc(6 * var(--spacing));
    padding-top: calc(4 * var(--spacing));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: calc(3 * var(--spacing));
}

.mobile-nav-social {
    display: flex;
    justify-content: center;
    gap: calc(2 * var(--spacing));
}

.mobile-nav-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.125rem;
}

.mobile-nav-social a:hover {
    background: #FA541C;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Link/Button Base - .css-jp7dmd */
.css-jp7dmd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0;
    border: 0;
    margin: 0;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    color: inherit;
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.css-jp7dmd:hover {
    opacity: 0.8;
}

/* Hide mobile controls on desktop - stronger specificity */
@media (min-width: 768px) {

    .mobile-menu-toggle,
    .mobile-theme-toggle-header {
        display: none !important;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-container {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-theme-toggle-header {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        color: #FFFFFF;
        cursor: pointer;
    }

    .header-right {
        display: none;
    }

    .logo {
        margin-left: 0;
        width: 200px;
    }

    .hero-section {
        padding: calc(12 * var(--spacing)) calc(2 * var(--spacing)) 0;
    }

    .hero-text {
        padding-left: calc(5 * var(--spacing));
        padding-right: calc(2 * var(--spacing));
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.7;
        max-width: 100%;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .stats-grid,
    .info-cards,
    .otc-features {
        grid-template-columns: 1fr;
    }

    .buy-card {
        padding: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: calc(10 * var(--spacing)) calc(1.5 * var(--spacing)) 0;
    }

    .hero-text {
        padding-left: calc(1.5 * var(--spacing));
        padding-right: calc(1.5 * var(--spacing));
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.65;
        text-align: left;
    }
}

.css-jp7dmd {
    text-decoration: none;
    color: inherit;
}

/* =================================================================== */
/*  HERO + FOOTER FROM LANDING PAGE CSS – OVERRIDES BELOW              */
/* =================================================================== */

/* Hero Section (from first CSS) */
.hero-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    min-height: 100vh;
    padding: calc(12 * var(--spacing)) calc(4 * var(--spacing)) 0;
    padding-left: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* .hero-text {
    display: flex;
    flex-direction: column;
    gap: calc(3 * var(--spacing));
    padding-left: calc(5 * var(--spacing));
    padding-right: calc(3 * var(--spacing));
    z-index: 2;
} */

.hero-title {
    font-family: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 800;
    font-size: 4rem;
    line-height: 1.15;
    margin: 0;
    color: var(--palette-text-primary);
    letter-spacing: -1px;
}

.brand-gradient {
    background: linear-gradient(90deg, #FF4500 0%, #FF1493 50%, #8B008B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #FFFFFF;
    max-width: 600px;
    margin-top: -8px;
}

.hero-buttons {
    display: flex;
    gap: calc(2 * var(--spacing));
    align-items: center;
}

.view-docs-btn {
    background: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
    padding: calc(1.25 * var(--spacing)) calc(2.5 * var(--spacing));
    border-radius: var(--shape-borderRadius);
    font-size: 0.875rem;
    font-weight: 600;
    gap: calc(1 * var(--spacing));
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.view-docs-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #FFFFFF;
}

.sso-login-btn {
    background: var(--palette-primary-main);
    color: var(--palette-primary-contrastText);
    border: none;
    padding: calc(1.5 * var(--spacing)) calc(3 * var(--spacing));
    border-radius: var(--shape-borderRadius);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}

.sso-login-btn:hover {
    background: var(--palette-primary-dark);
    box-shadow: var(--shadows-3);
}

.airdrop-section {
    margin-top: calc(2 * var(--spacing));
}

.airdrop-btn {
    background: var(--palette-primary-main);
    color: var(--palette-primary-contrastText);
    padding: calc(1.25 * var(--spacing)) calc(2.5 * var(--spacing));
    border-radius: var(--shape-borderRadius);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: calc(1 * var(--spacing));
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.airdrop-btn:hover {
    background: var(--palette-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadows-3);
}

.available-section {
    display: flex;
    align-items: center;
    gap: calc(1.5 * var(--spacing));
    flex-wrap: wrap;
}

.available-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #919EAB;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge {
    padding: calc(0.75 * var(--spacing)) calc(1.5 * var(--spacing));
    border-radius: calc(0.5 * var(--shape-borderRadius));
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.ethereum-badge {
    background-color: #8E33FF;
    color: #FFFFFF;
    border: none;
    text-transform: capitalize;
}

.mctp-badge {
    background-color: #8E33FF;
    color: #FFFFFF;
    border: none;
    text-transform: capitalize;
}

.social-links {
    display: flex;
    gap: calc(1.5 * var(--spacing));
    margin-top: calc(1 * var(--spacing));
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--palette-text-primary);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.125rem;
}

.social-links a:hover {
    background: var(--palette-primary-main);
    color: var(--palette-primary-contrastText);
    transform: translateY(-2px);
}

/* Footer (from first CSS – overrides simple footer) */
.footer {
    background: #0A0A0A;
    padding: calc(10 * var(--spacing)) 0 calc(4 * var(--spacing)) 0;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: calc(3 * var(--spacing));
    padding-right: calc(3 * var(--spacing));

    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: calc(8 * var(--spacing));
    padding-bottom: calc(6 * var(--spacing));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
}

/* Footer Left */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(4 * var(--spacing));
}

.footer-logo {
    display: block;
    flex-shrink: 0;
    width: 300px;
    height: 38px;
    /* margin: 0 auto; */
    padding: 0;
    line-height: 0;
    vertical-align: top;
    /* align-self: center; */
    text-align: left;
}

.footer-logo img {
    height: 38px;
    /* width: 100%; */
    /* height: 100%; */
    max-width: 100%;
    display: block;
    /* object-fit: contain; */
    margin: 0;
    padding: 0;
    vertical-align: top;
}

.footer-description {
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #919EAB;
    margin: 0;
    padding: 0;
    max-width: 400px;
    width: 100%;
    display: block;
}

.footer-social {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
}

.footer-social-title,
.footer-granted-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #FFFFFF;
    margin: 0 0 calc(2 * var(--spacing)) 0;
}

.social-icons {
    display: flex;
    gap: calc(1.5 * var(--spacing));
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.granted-logos {
    display: flex;
    gap: calc(3 * var(--spacing));
    align-items: center;
}

.granted-logo {
    height: 32px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.granted-logo:hover {
    opacity: 1;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: calc(3 * var(--spacing));
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #FFFFFF;
    margin: 0 0 calc(2 * var(--spacing)) 0;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: calc(1.25 * var(--spacing));
}

.footer-menu li a {
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 0.8125rem;
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    color: #FFFFFF;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #637381;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: calc(2 * var(--spacing));
}

.footer-bottom-links a {
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: #637381;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}

.footer-bottom-links .separator {
    color: #637381;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: calc(4 * var(--spacing));
    right: calc(4 * var(--spacing));
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FA541C;
    border: none;
    color: #FFFFFF;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(250, 84, 28, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #FF6B35;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(250, 84, 28, 0.5);
}

/* ============================================================== */
/* NEW SECTIONS FROM MAIN SITE                                    */
/* ============================================================== */
.index-main-content {
    min-height: 100vh;
    box-sizing: border-box;
    position: relative;
    background: transparent;
    width: 100%;
    margin: 0 auto;
    padding-top: calc(12 * var(--spacing));
}

/* Keep Growing / Ecosystem Section */
.keep-growing-section {
    background: #1C1C1C;
    /* padding: calc(12 * var(--spacing)) calc(20 * var(--spacing)); */
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: calc(12 * var(--spacing)) 0;
}

.keep-growing-container {
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    padding-left: calc(3 * var(--spacing));
    padding-right: calc(3 * var(--spacing));
}

.keep-growing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(8 * var(--spacing));
    align-items: center;
}

.keep-growing-left {
    display: flex;
    flex-direction: column;
    gap: calc(3 * var(--spacing));
}

.ecosystem-divider {
    width: 48px;
    height: 4px;
    background: #FA541C;
    border-radius: 2px;
}

.ecosystem-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.4;
    color: #FFFFFF;
    margin: 0;
}

.ecosystem-description {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.keep-growing-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.growth-illustration {
    width: 100%;
    max-width: 550px;
    height: auto;
}

/* Builder Node Section */
.builder-node-section {
    background: #000;
    padding: calc(12 * var(--spacing)) 0;
    position: relative;
    z-index: 2;
}

.builder-node-container {
    max-width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    padding-left: calc(3 * var(--spacing));
    padding-right: calc(3 * var(--spacing));
    /* padding: 0 calc(20 * var(--spacing)); */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(8 * var(--spacing));
    align-items: center;
}

.builder-content {
    display: flex;
    flex-direction: column;
    gap: calc(2.5 * var(--spacing));
}

.builder-title {
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -0.5px;
}

.builder-description {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.learn-more-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: calc(1.5 * var(--spacing)) calc(3 * var(--spacing));
    border-radius: var(--shape-borderRadius);
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: calc(1 * var(--spacing));
    width: fit-content;
}

.learn-more-btn:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

.learn-more-btn i {
    font-size: 0.75rem;
}

.badges-image {
    max-width: 450px;
    width: 100%;
    overflow: hidden;
}

.badges-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: calc(2 * var(--shape-borderRadius));
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

/* Native DEX / Ecosystem Section */
.native-dex-section {
    background: #1C1C1C;
    padding: calc(12 * var(--spacing)) 0;
    position: relative;
    z-index: 2;
}

.native-dex-container {
    max-width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    padding-left: calc(3 * var(--spacing));
    padding-right: calc(3 * var(--spacing));
    /* padding: 0 calc(20 * var(--spacing)); */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(8 * var(--spacing));
    align-items: center;
}

.dex-content {
    display: flex;
    flex-direction: column;
    gap: calc(3 * var(--spacing));
}

.dex-title {
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -1px;
}

.dex-description {
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #919EAB;
    margin: 0;
    max-width: 500px;
}

.dex-btn {
    display: inline-flex;
    align-items: center;
    gap: calc(1.5 * var(--spacing));
    padding: calc(1.5 * var(--spacing)) calc(3 * var(--spacing));
    background: transparent;
    border: 2px solid #FFFFFF;
    border-radius: var(--shape-borderRadius);
    color: #FFFFFF;
    font-family: "Public Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    margin-top: calc(2 * var(--spacing));
}

.dex-btn:hover {
    background: #FFFFFF;
    color: #000;
    transform: translateX(4px);
}

.dex-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dex-btn:hover i {
    transform: translateX(4px);
}

.dex-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.dex-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: calc(2 * var(--shape-borderRadius));
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
}

/* Join CTA Section */
.join-cta-section {
    background-image: url('./../images/Start Building-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: calc(18 * var(--spacing)) calc(4 * var(--spacing));
    position: relative;
    z-index: 2;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.join-cta-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-highlight {
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    font-size: 3.75rem;
    line-height: 1.1;
    margin: 0 0 calc(1 * var(--spacing)) 0;
    letter-spacing: -1.5px;
    background: linear-gradient(90deg, #FA541C 20%, #8E33FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    color: transparent;
}

.cta-title {
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    font-size: 3.75rem;
    line-height: 1.1;
    color: #FFFFFF;
    margin: 0 0 calc(6 * var(--spacing)) 0;
    letter-spacing: -1.5px;
}

.cta-description {
    font-family: "Public Sans", sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.4;
    color: #FFFFFF;
    margin: 0 0 calc(5 * var(--spacing)) 0;
}

/* Responsive for New Sections */
@media (max-width: 1024px) {

    .keep-growing-content,
    .builder-node-container,
    .native-dex-container {
        grid-template-columns: 1fr;
        gap: calc(5 * var(--spacing));
        text-align: center;
    }

    .keep-growing-left,
    .builder-content,
    .dex-content {
        align-items: center;
        text-align: center;
    }

    .ecosystem-divider {
        margin: 0 auto;
    }

    .builder-title,
    .dex-title {
        font-size: 2.5rem;
    }

    .badges-image,
    .dex-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .index-main-content,
    .keep-growing-section,
    .builder-node-section,
    .native-dex-section {
        padding: calc(8 * var(--spacing)) calc(3 * var(--spacing));
    }

    .builder-node-container,
    .native-dex-container {
        padding: 0 calc(3 * var(--spacing));
    }

    .ecosystem-title,
    .builder-title,
    .dex-title {
        font-size: 2rem;
    }

    .join-cta-section {
        padding: calc(12 * var(--spacing)) calc(3 * var(--spacing));
        min-height: 400px;
    }

    .cta-highlight,
    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.25rem;
    }
}

/* My Node Details Section */
.node-details-section {
    margin-top: calc(3 * var(--spacing));
}

.node-details-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin: 0 0 calc(2 * var(--spacing)) 0;
}

.node-details-card {
    background: #000000;
    border-radius: calc(2 * var(--shape-borderRadius));
    padding: calc(6 * var(--spacing)) calc(8 * var(--spacing));
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 260px;
}

.node-details-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: url('./../images/influencer-2.png') no-repeat left center;
    background-size: contain;
    opacity: 0.3;
    pointer-events: none;
    filter: brightness(0.5);
}

.node-details-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.node-details-text {
    text-align: center;
    max-width: 800px;
}

.node-status-heading {
    font-family: "Public Sans", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
}

.node-cta-text {
    font-family: "Public Sans", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: #FFFFFF;
    margin: 0 0 calc(4 * var(--spacing)) 0;
    line-height: 1.3;
}

.node-gradient-text {
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    background: linear-gradient(90deg, #FF6B35 0%, #FF1493 40%, #C684FF 80%, #8E33FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-left: calc(1 * var(--spacing));
    letter-spacing: -1px;
    line-height: 1;
}

.buy-node-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #E8E8E8;
    color: #1A1A1A;
    padding: calc(1.5 * var(--spacing)) calc(4 * var(--spacing));
    border-radius: calc(1.5 * var(--shape-borderRadius));
    font-family: "Public Sans", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.buy-node-btn:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* Responsive for Node Details */
@media (max-width: 1024px) {
    .node-details-card {
        height: 240px;
        padding: calc(5 * var(--spacing)) calc(6 * var(--spacing));
    }

    .node-status-heading {
        font-size: 1.5rem;
    }

    .node-cta-text {
        font-size: 1.5rem;
    }

    .node-gradient-text {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .node-details-card {
        height: auto;
        min-height: 220px;
        padding: calc(4 * var(--spacing)) calc(3 * var(--spacing));
    }

    .node-status-heading {
        font-size: 1.25rem;
    }

    .node-cta-text {
        font-size: 1.25rem;
    }

    .node-gradient-text {
        font-size: 2.5rem;
        display: block;
        margin-left: 0;
        margin-top: calc(0.5 * var(--spacing));
    }

    .buy-node-btn {
        padding: calc(1.25 * var(--spacing)) calc(3 * var(--spacing));
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .node-details-card {
        min-height: 200px;
    }

    .node-status-heading {
        font-size: 1.125rem;
    }

    .node-cta-text {
        font-size: 1.125rem;
    }

    .node-gradient-text {
        font-size: 2rem;
    }
}

/* Ecosystem Game Section */
.ecosystem-game-section {
    margin-top: calc(8 * var(--spacing));
}

.ecosystem-game-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin: 0 0 calc(3 * var(--spacing)) 0;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(3 * var(--spacing));
}

.game-card {
    background: #1A1A1A;
    border-radius: calc(2 * var(--shape-borderRadius));
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.game-card:nth-child(3) {
    grid-column: 1 / 2;
}

.game-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 420 / 180;
}

/* Responsive for Ecosystem Game */
@media (max-width: 1024px) {
    .game-grid {
        gap: calc(2.5 * var(--spacing));
    }
}

@media (max-width: 768px) {
    .game-grid {
        grid-template-columns: 1fr;
        gap: calc(2 * var(--spacing));
    }

    .game-card:nth-child(3) {
        grid-column: 1 / 2;
    }

    .ecosystem-game-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .ecosystem-game-section {
        margin-top: calc(6 * var(--spacing));
    }
}

/* Node Co-building System Section */
.node-cobuilding-section {
    margin-top: calc(8 * var(--spacing));
}

.node-cobuilding-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin: 0 0 calc(3 * var(--spacing)) 0;
}

.cobuilding-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(3 * var(--spacing));
}

.cobuilding-card {
    border-radius: calc(2 * var(--shape-borderRadius));
    padding: calc(6 * var(--spacing));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 140px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.cobuilding-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.cobuilding-card.node-power {
    background: linear-gradient(135deg, #61DAFB 0%, #00B8D9 100%);
}

.cobuilding-card.my-referral {
    background: red;
}

.cobuilding-card-title {
    font-family: "Public Sans", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #FFFFFF;
    margin: 0 0 calc(1 * var(--spacing)) 0;
}

.cobuilding-card-status {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

/* Responsive for Node Co-building System */
@media (max-width: 1024px) {
    .cobuilding-grid {
        gap: calc(2.5 * var(--spacing));
    }
}

@media (max-width: 768px) {
    .cobuilding-grid {
        grid-template-columns: 1fr;
        gap: calc(2 * var(--spacing));
    }

    .node-cobuilding-title {
        font-size: 1.25rem;
    }

    .cobuilding-card {
        min-height: 120px;
        padding: calc(4 * var(--spacing));
    }

    .cobuilding-card-status {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .node-cobuilding-section {
        margin-top: calc(6 * var(--spacing));
    }

    .cobuilding-card-status {
        font-size: 1.5rem;
    }
}

/* Node Sales Page Styles */
body:has(.node-sales-section) {
    background-image: none;
    background-color: #0a0a0a;
}

body:has(.node-sales-section)::before {
    display: none;
}

.node-sales-section {
    background-color: #0a0a0a;
    min-height: 100vh;
    padding: calc(6 * var(--spacing)) 0 calc(8 * var(--spacing));
}

.node-sales-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(4 * var(--spacing));
}

.node-sales-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #FFFFFF;
    margin: 0;
}

.view-validator-link {
    font-family: "Public Sans", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: calc(0.5 * var(--spacing));
    transition: opacity 0.2s ease;
}

.view-validator-link:hover {
    opacity: 0.8;
}

.view-validator-link i {
    font-size: 0.75rem;
}

.node-sales-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: calc(3 * var(--spacing));
    align-items: start;
}

/* Left: Node Image Section */
.node-image-section {
    display: flex;
    flex-direction: column;
    gap: calc(2 * var(--spacing));
}

.node-image-main {
    background: #0D0D1A;
    border-radius: calc(2 * var(--shape-borderRadius));
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(2 * var(--spacing));
}

.node-image-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: calc(1.5 * var(--shape-borderRadius));
}

.node-badge {
    position: absolute;
    top: calc(2 * var(--spacing));
    left: calc(2 * var(--spacing));
    background: rgba(142, 51, 255, 0.95);
    color: #FFFFFF;
    padding: calc(0.75 * var(--spacing)) calc(2.5 * var(--spacing));
    border-radius: calc(0.75 * var(--shape-borderRadius));
    font-family: "Public Sans", sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    backdrop-filter: blur(8px);
}

.node-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(1.5 * var(--spacing));
}

.thumbnail {
    background: #1A1A1A;
    border-radius: var(--shape-borderRadius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.thumbnail.active {
    border-color: #FF6B35;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Right: Purchase Section */
.node-purchase-section {
    display: flex;
    flex-direction: column;
    gap: calc(2.5 * var(--spacing));
}

.wallet-alert {
    background: #8B2A2A;
    border: none;
    border-radius: calc(1.5 * var(--shape-borderRadius));
    padding: calc(2 * var(--spacing)) calc(3 * var(--spacing));
    display: flex;
    align-items: center;
    gap: calc(1.5 * var(--spacing));
    color: #FFFFFF;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
}

.wallet-alert i {
    font-size: 1.25rem;
    color: #FFA500;
    flex-shrink: 0;
    background: #D4A574;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.purchase-title {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 1.875rem;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Node Type Selector */
.node-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(1.5 * var(--spacing));
}

.node-type-option {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: calc(3 * var(--shape-borderRadius));
    padding: calc(2 * var(--spacing)) calc(2.5 * var(--spacing));
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.node-type-option input {
    display: none;
}

.node-type-option:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.node-type-option.selected {
    border-color: rgba(255, 255, 255, 0.8);
    background: transparent;
}

.radio-circle {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-right: calc(1.5 * var(--spacing));
    transition: all 0.2s ease;
    background: transparent;
}

.node-type-option.selected .radio-circle {
    border-color: #FFFFFF;
    background: #FF6B35;
}

.node-type-option.selected .radio-circle::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
}

.option-label {
    font-family: "Public Sans", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #FFFFFF;
    flex: 1;
}

.option-icon {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.125rem;
}

/* Stats */
.node-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(2 * var(--spacing));
    font-family: "Public Sans", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: #FFFFFF;
}

.node-stats .stat-item {
    display: flex;
    align-items: center;
    gap: calc(0.75 * var(--spacing));
}

.node-stats .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.node-stats .stat-value {
    color: #FFFFFF;
    font-weight: 600;
}

/* Price Info */
.price-info {
    display: flex;
    flex-direction: column;
    gap: calc(1.5 * var(--spacing));
    padding: calc(1.5 * var(--spacing)) 0;
}

.old-price {
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.current-price {
    display: flex;
    align-items: baseline;
    gap: calc(1 * var(--spacing));
    flex-wrap: wrap;
}

.price-amount {
    font-family: "Barlow", sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: #FF4444;
    line-height: 0.9;
    letter-spacing: -1px;
}

.price-badge {
    background: transparent;
    border: none;
    color: rgba(255, 68, 68, 0.6);
    padding: 0;
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Description */
.node-description {
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    padding-top: 15px;
}

/* Influencer Type Section */
.influencer-type-section {
    display: flex;
    flex-direction: column;
    gap: calc(1.5 * var(--spacing));
}

.section-label {
    font-family: "Public Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #FFFFFF;
    margin: 0;
}

.influencer-type-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(1.5 * var(--spacing));
}

.type-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: calc(3 * var(--shape-borderRadius));
    padding: calc(1.5 * var(--spacing)) calc(2.5 * var(--spacing));
    font-family: "Public Sans", sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
}

.type-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.type-btn.active {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    color: #FFFFFF;
}

.validator-info {
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(2 * var(--spacing));
    margin-top: calc(3 * var(--spacing));
}

.view-node-btn {
    background: #E8E8E8;
    border: none;
    border-radius: calc(2 * var(--shape-borderRadius));
    padding: calc(2 * var(--spacing)) calc(3 * var(--spacing));
    font-family: "Public Sans", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #000000;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(1 * var(--spacing));
}

.view-node-btn:hover {
    background: #FFFFFF;
    transform: translateY(-1px);
}

.buy-validator-btn {
    background: #3D3D3D;
    border: none;
    border-radius: calc(2 * var(--shape-borderRadius));
    padding: calc(2 * var(--spacing)) calc(3 * var(--spacing));
    font-family: "Public Sans", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #888888;
    cursor: not-allowed;
    transition: all 0.2s ease;
}

.buy-validator-btn:hover {
    background: #3D3D3D;
}

/* Responsive for Node Sales Page */
@media (max-width: 1024px) {
    .node-sales-grid {
        grid-template-columns: 1fr;
        gap: calc(5 * var(--spacing));
    }

    .node-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .node-sales-header {
        flex-direction: column;
        align-items: flex-start;
        gap: calc(2 * var(--spacing));
    }

    .node-sales-title {
        font-size: 1.75rem;
    }

    .node-type-selector {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .node-sales-section {
        padding: calc(8 * var(--spacing)) 0 calc(4 * var(--spacing));
    }

    .node-sales-title {
        font-size: 1.5rem;
    }

    .purchase-title {
        font-size: 1.5rem;
    }

    .influencer-type-buttons {
        grid-template-columns: 1fr;
    }

    .node-stats {
        flex-wrap: wrap;
    }

    .price-amount {
        font-size: 2rem;
    }
}