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

:root {
    --color-black: #0a0a0a;
    --color-dark: #111111;
    --color-gray: #1a1a1a;
    --color-orange: #ff4533;
    --color-orange-dark: #e63e2d;
    --color-white: #ffffff;
    --color-text-muted: #888888;
    --color-border: #333333;
    --font-mono: 'JetBrains Mono', monospace;
    --font-sans: 'Inter', sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-mono);
    background-color: var(--color-black);
    color: var(--color-white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Dotted Background Pattern */
.dotted-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, var(--color-border) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

/* Dotted Frame */
.dotted-frame {
    border: 2px dotted var(--color-border);
    padding: 2px;
    position: relative;
}

.dotted-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid var(--color-border);
    pointer-events: none;
}

/* Layout */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--color-dark);
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    z-index: 100;
    overflow-y: auto;
}

.main-content {
    margin-left: 280px;
    min-height: 100vh;
    padding: 0;
}

/* Sidebar Styles */
.sidebar-header {
    margin-bottom: 3rem;
}

.logo {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-orange);
    text-decoration: none;
    line-height: 1.1;
    letter-spacing: -0.02em;
    display: block;
}

.sidebar-nav {
    flex: 1;
}

.nav-section {
    margin-bottom: 2.5rem;
}

.nav-label {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 500;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.75rem;
}

.tba-item {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.sidebar-nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    display: block;
    padding: 0.25rem 0;
}

.sidebar-nav a:hover {
    color: var(--color-orange);
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.social-links {
    margin-bottom: 1.5rem;
}

.copyright {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-marquee {
    background-color: var(--color-orange);
    color: var(--color-black);
    padding: 0.75rem 0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    animation: marquee 20s linear infinite;
}

.hero-marquee span {
    padding: 0 2rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    gap: 3rem;
}

/* Launch CTA Box */
.launch-cta-box {
    width: 100%;
    max-width: 600px;
    border: 2px dotted var(--color-border);
    padding: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.launch-cta-title {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0 1.5rem;
}

.platform-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.platform-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--color-dark);
    border: 1px solid var(--color-border);
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.2s ease;
}

.platform-btn:hover {
    border-color: var(--color-orange);
    background: rgba(255, 69, 51, 0.1);
}

.platform-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quick-link {
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 600;
}

.quick-link:hover {
    text-decoration: underline;
}

.platform-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.platform-desc {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

.main-launch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    background: var(--color-orange);
    color: var(--color-black);
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.main-launch-btn:hover {
    background: var(--color-white);
    transform: translateY(-2px);
}

.main-launch-btn.large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.main-launch-btn .arrow {
    transition: transform 0.2s ease;
}

.main-launch-btn:hover .arrow {
    transform: translateX(4px);
}

.launch-hint {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.logo-container {
    width: 272px;
    height: 272px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(255, 69, 51, 0.4));
}

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

.hero-title {
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 6.7vw, 5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-white);
    text-stroke: 2px var(--color-white);
}

.solid-text {
    color: var(--color-orange);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section Label */
.section-label {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Token Section */
.token-section {
    padding: 4rem;
    border-top: 1px solid var(--color-border);
}

.token-info {
    padding: 3rem;
    text-align: center;
}

.token-symbol {
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--color-orange);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.token-contract {
    font-size: 0.9rem;
}

.token-contract .label {
    color: var(--color-text-muted);
    margin-right: 0.5rem;
}

.token-contract .address {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-mono);
    background-color: var(--color-gray);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.token-contract .address:hover {
    background-color: var(--color-orange);
    color: var(--color-black);
}

/* Launch Section */
.launch-section {
    padding: 4rem;
    border-top: 1px solid var(--color-border);
}

.launch-content {
    padding: 3rem;
    text-align: center;
}

.launch-title {
    font-family: var(--font-sans);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.launch-description {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.launch-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--color-orange);
    color: var(--color-black);
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.launch-button:hover {
    background-color: var(--color-white);
    transform: translateY(-2px);
}

.button-arrow {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.launch-button:hover .button-arrow {
    transform: translateX(4px);
}

/* Features Section */
.features-section {
    padding: 4rem;
    border-top: 1px solid var(--color-border);
}

.features-section .dotted-frame {
    padding: 3rem;
}

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

.feature-item {
    padding: 1.5rem;
    border-left: 2px solid var(--color-border);
}

.feature-number {
    display: block;
    font-size: 0.75rem;
    color: var(--color-orange);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-item h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sidebar {
        width: 240px;
    }
    
    .main-content {
        margin-left: 240px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .launch-cta-box {
        padding: 1.5rem;
    }
    
    .platform-selector {
        grid-template-columns: 1fr;
    }
    
    .token-section,
    .launch-section,
    .features-section {
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .outline-text {
        -webkit-text-stroke: 1px var(--color-white);
    }
}

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

::-webkit-scrollbar-track {
    background: var(--color-dark);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--color-orange);
}

/* Selection */
::selection {
    background: var(--color-orange);
    color: var(--color-black);
}
