/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #1a0f0f;
    overflow-x: hidden;
    
}

:root {
    --grid-size: 20px;
    --line-color: #ff6b4a;
    --line-glow: rgba(255, 107, 74, 0.6);
    --line-glow-bright: rgba(255, 107, 74, 0.8);
    --bg-color: #1a0f0f;
    --grid-color: rgba(128, 128, 128, 0.1);
}

.wireframe-bg {
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    position: fixed;
    inset: 0;
    z-index: -1;
}

.grid-lines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.glow-wrapper {
    position: absolute;
    pointer-events: none;
}

.glow-line {
    position: absolute;
    background: var(--line-color);
    box-shadow: 
        0 0 5px var(--line-glow-bright),
        0 0 10px var(--line-glow),
        0 0 15px var(--line-glow),
        0 0 20px var(--line-glow);
    filter: brightness(1.2);
}

.horizontal {
    height: 1px;
    width: 40px;
}

.vertical {
    width: 1px;
    height: 40px;
}

@keyframes flowRight {
    from { transform: translateX(0); }
    to { transform: translateX(calc(100vw + 40px)); }
}

@keyframes flowLeft {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100vw - 40px)); }
}

@keyframes flowDown {
    from { transform: translateY(0); }
    to { transform: translateY(calc(100vh + 40px)); }
}

@keyframes flowUp {
    from { transform: translateY(0); }
    to { transform: translateY(calc(-100vh - 40px)); }
}

/* Navbar Styles */
.navbar-wrapper {
    background-color: rgba(26, 15, 15, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    width: 200px;
    height: 60px;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    line-height: 1.2;
    white-space: nowrap;
    color: #ff6b4a;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
}

.nav-links a {
    color: #ff6b4a;
    text-decoration: none;
    font-weight: 500;
}

.nav-links .primary-button {
    color: white;
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    min-height: calc(100vh - 120px);
    position: relative;
    z-index: 1;
}

.left-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(-8%);
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: center;
    transform: translateY(-10%);
}

/* Hero Section */
.hero-text {
    color: #ff6b4a;
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255, 107, 74, 0.4);
    margin-bottom: 1rem;
}

.subtitle {
    color: #ffd1c7;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 1rem;
}

.button {
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-button {
    background: linear-gradient(135deg, #ff6b4a 0%, #ff4527 100%);
    color: white;
    box-shadow: 0 0 20px rgba(255, 107, 74, 0.4);
}

.secondary-button {
    background: rgba(255, 107, 74, 0.1);
    color: #ff6b4a;
    border: 1px solid #ff6b4a;
}

/* Code Window */
.code-window {
    background: rgba(38, 21, 21, 0.8);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 0 30px rgba(255, 107, 74, 0.2);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    backdrop-filter: blur(5px);
}

.code-window:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 107, 74, 0.4);
    border-color: rgba(255, 107, 74, 0.3);
    background: #2a1818;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff6b4a;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.code-window:hover .dot {
    opacity: 0.8;
}

code {
    color: #ff8f75;
    transition: color 0.3s ease;
}

.code-window:hover code {
    color: #ffd1c7;
}

/* Contract Box */
.contract-box {
    background: rgba(38, 21, 21, 0.8);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 0 30px rgba(255, 107, 74, 0.2);
    backdrop-filter: blur(5px);
}

.token-symbol {
    background: rgba(255, 107, 74, 0.1);
    color: #ff6b4a;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
}

.contract-address {
    font-family: 'Monaco', 'Courier New', monospace;
    color: #ffd1c7;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-button {
    background: none;
    border: none;
    color: #ff6b4a;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.copy-button:hover {
    transform: scale(1.1);
}

/* Features Section */
.features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-box {
    background: rgba(38, 21, 21, 0.8);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    backdrop-filter: blur(5px);
}

.feature-box:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 107, 74, 0.3);
    box-shadow: 0 0 30px rgba(255, 107, 74, 0.2);
}

.feature-icon {
    background: rgba(255, 107, 74, 0.1);
    color: #ff6b4a;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.feature-title {
    color: #ff6b4a;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.feature-text {
    color: #ffd1c7;
    line-height: 1.6;
    font-size: 1rem;
}

/* Ecosystem Section */
.ecosystem-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
}

.ecosystem-title {
    text-align: center;
    color: #ff6b4a;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 107, 74, 0.4);
}

.ecosystem-description {
    text-align: center;
    color: #ffd1c7;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.ecosystem-images {
    display: flex;
    justify-content: center;
    gap: 20rem;
    flex-wrap: wrap;
}

.ecosystem-image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 4px;
}
.charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.chart-container {
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #ff6b4a;
    box-shadow: 0 0 10px #ff6b4a;
    background: rgba(38, 21, 21, 0.8);
    backdrop-filter: blur(5px);
}

.chart-wrapper {
    position: relative;
    height: 400px;
    width: 100%;
}

/* Add responsive styling */
@media (max-width: 768px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

/* Add Chart Styles Here */
.chart-container {
    max-width: 64rem;
    margin: 2rem auto;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #ff6b4a;
    box-shadow: 0 0 10px #ff6b4a;
    background: rgba(38, 21, 21, 0.8);
    backdrop-filter: blur(5px);
}

.chart-wrapper {
    position: relative;
    height: 400px;
    width: 100%;
}

.chart-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    color: #ff6b4a;
}

/* Media Queries */
@media (max-width: 768px) {
    .ecosystem-images {
        flex-direction: column;
        align-items: center;
    }
    
    .ecosystem-image {
        max-width: 100%;
    }

}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b4a;
}

.footer-description {
    color: #ffd1c7;
    line-height: 1.6;
    max-width: 400px;
}

.footer-title {
    color: #ff6b4a;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #ffd1c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b4a;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 74, 0.2);
    color: #ffd1c7;
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        gap: 1rem;
    }
}
