/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Support both .nav and .navbar */
.nav, .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-brand, .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo, .logo img {
    width: 32px;
    height: 32px;
}

.nav-title, .logo span {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link, .nav-links a {
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-links a:hover {
    color: #3b82f6;
}

.nav-actions, .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-ticker {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    min-width: 120px;
}

#sol-price-widget {
    width: 100%;
    min-height: 30px;
}

.ticker-label {
    color: #a1a1aa;
}

.ticker-price {
    color: #ffffff;
    font-family: 'Monaco', 'Menlo', monospace;
    font-weight: 600;
}

.ticker-change {
    color: #10b981;
    font-family: 'Monaco', 'Menlo', monospace;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary, .primary-button {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-primary:hover, .primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary, .secondary-button {
    background: transparent;
    color: #ffffff;
    padding: 12px 24px;
    border: 1px solid #374151;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover, .secondary-button:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero, .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #111827, #000000, #111827);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1), transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge, .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 14px;
    color: #3b82f6;
    margin-bottom: 32px;
}

.status-dot, .pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title, .hero-text h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #3b82f6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description, .hero-text p {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.hero-actions, .hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat {
    text-align: left;
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #9ca3af;
}

/* Trading Preview */
.hero-right {
    display: flex;
    justify-content: center;
}

.trading-preview {
    position: relative;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    max-width: 400px;
}

.trading-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.trading-pair {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pair-icon {
    width: 32px;
    height: 32px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.pair-name {
    font-weight: 600;
    color: #ffffff;
}

.pair-desc {
    font-size: 12px;
    color: #9ca3af;
}

.pair-price {
    text-align: right;
}

.price {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Monaco', 'Menlo', monospace;
    color: #ffffff;
}

.change {
    font-size: 14px;
    font-family: 'Monaco', 'Menlo', monospace;
    color: #10b981;
}

.trading-chart {
    height: 160px;
    background: rgba(17, 24, 39, 0.5);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-line {
    animation: draw 2s ease-in-out infinite alternate;
}

@keyframes draw {
    0% { stroke-dasharray: 1000; stroke-dashoffset: 1000; }
    100% { stroke-dasharray: 1000; stroke-dashoffset: 0; }
}

.trading-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-long {
    background: #10b981;
    color: #ffffff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-long:hover {
    background: #059669;
}

.btn-short {
    background: #ef4444;
    color: #ffffff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-short:hover {
    background: #dc2626;
}

.trading-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.badge {
    position: absolute;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.badge-fees {
    top: -12px;
    right: -12px;
    background: #3b82f6;
    animation: bounce 2s infinite;
}

.badge-leverage {
    bottom: -12px;
    left: -12px;
    background: #10b981;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Features Section */
.features, .features-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #000000, #111827);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title, .features-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
}

.section-description {
    font-size: 20px;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.6), rgba(0, 0, 0, 0.6));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-4px);
}

.feature-card.active {
    border-color: rgba(59, 130, 246, 0.5);
}

.feature-card.active::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
    font-size: 24px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.feature-title, .feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    position: relative;
    z-index: 10;
}

.feature-description, .feature-card p {
    color: #d1d5db;
    margin-bottom: 24px;
    line-height: 1.6;
    position: relative;
    z-index: 10;
}

.feature-list {
    list-style: none;
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #d1d5db;
}

.feature-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    z-index: 10;
}

.feature-status.active {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.feature-status.active::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.feature-status:not(.active) {
    background: rgba(107, 114, 128, 0.2);
    border: 1px solid rgba(107, 114, 128, 0.3);
    color: #9ca3af;
}

/* Markets Section */
.markets {
    padding: 120px 0;
    background: #000000;
}

.markets-table {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.6), rgba(0, 0, 0, 0.6));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 24px 32px;
    background: rgba(17, 24, 39, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header .col {
    font-weight: 600;
    color: #9ca3af;
    font-size: 14px;
}

.table-body {
    divide-y: 1px solid rgba(255, 255, 255, 0.05);
}

.market-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px 32px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.market-row:hover {
    background: rgba(17, 24, 39, 0.3);
}

.market-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.market-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
}

.market-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.market-desc {
    font-size: 12px;
    color: #9ca3af;
}

.market-price {
    font-family: 'Monaco', 'Menlo', monospace;
    font-weight: 600;
    color: #ffffff;
    text-align: right;
}

.market-change {
    font-family: 'Monaco', 'Menlo', monospace;
    font-weight: 600;
    text-align: right;
}

.market-change.positive {
    color: #10b981;
}

.market-change.negative {
    color: #ef4444;
}

.market-volume {
    font-family: 'Monaco', 'Menlo', monospace;
    color: #d1d5db;
    text-align: right;
}

.table-footer {
    padding: 32px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, #111827, #000000);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.features-list {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-icon-small {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-small svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.feature-content p {
    color: #d1d5db;
    line-height: 1.6;
}

.order-types-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.6), rgba(0, 0, 0, 0.6));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
}

.order-types-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.order-types-card p {
    color: #9ca3af;
    margin-bottom: 24px;
}

.order-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(17, 24, 39, 0.5);
    border-radius: 8px;
}

.order-item span {
    color: #ffffff;
    font-weight: 500;
}

.order-status {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}

/* Roadmap Section */
.roadmap {
    padding: 120px 0;
    background: #000000;
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    margin-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #374151;
    border: 4px solid #000000;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.timeline-item.completed .timeline-marker {
    background: #10b981;
}

.timeline-item.active .timeline-marker {
    background: #3b82f6;
    animation: pulse 2s infinite;
}

.timeline-content {
    flex: 1;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.6), rgba(0, 0, 0, 0.6));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #d1d5db;
}

.timeline-content li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    flex-shrink: 0;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #000000, rgba(59, 130, 246, 0.1), #000000);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.2), transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
}

.cta-description {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-stats .stat {
    text-align: center;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #111827, #000000);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-note {
    color: #6b7280;
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
    color: #ffffff;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #ffffff;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3b82f6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: #9ca3af;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive Design */
@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .price-ticker {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .market-row {
        grid-template-columns: 2fr 1fr;
        gap: 12px;
    }
    
    .table-header .col:nth-child(3),
    .table-header .col:nth-child(4),
    .market-row > *:nth-child(3),
    .market-row > *:nth-child(4) {
        display: none;
    }
    
    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column !important;
    }
    
    .timeline-item .timeline-content {
        margin: 20px 0 0 0 !important;
        text-align: center !important;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px !important;
    }
}

/* Chains Section */
.chains-section {
    background: linear-gradient(135deg, #000000, rgba(35, 54, 111, 0.1), #000000);
    padding: 80px 0;
}

.chains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.chain-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(35, 54, 111, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.chain-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-5px);
}

.chain-symbol {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.chain-card:nth-child(1) .chain-symbol { color: #3b82f6; }
.chain-card:nth-child(2) .chain-symbol { color: #8b5cf6; }
.chain-card:nth-child(3) .chain-symbol { color: #06b6d4; }
.chain-card:nth-child(4) .chain-symbol { color: #ef4444; }

.chain-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.chain-desc {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.5;
}

.chains-note {
    text-align: center;
    margin-top: 40px;
}

.chains-note p {
    color: #9ca3af;
    font-size: 18px;
}

/* Loyalty Section */
.loyalty-section {
    background: linear-gradient(135deg, #000000, rgba(35, 54, 111, 0.1), #000000);
    padding: 80px 0;
}

.loyalty-content {
    background: linear-gradient(to right, rgba(35, 54, 111, 0.2), rgba(26, 42, 90, 0.2));
    border: 1px solid rgba(35, 54, 111, 0.3);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(10px);
}

.loyalty-intro {
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
}

.loyalty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.loyalty-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(35, 54, 111, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.loyalty-percentage {
    font-size: 48px;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 15px;
}

.loyalty-status {
    font-size: 48px;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 15px;
}

.loyalty-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.loyalty-desc {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
    background: #000000;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: linear-gradient(135deg, #1f2937, #374151);
    border: 1px solid rgba(35, 54, 111, 0.3);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.6;
}