/* NEO DOGE - Main Stylesheet */

/* CSS Variables */
:root {
    --primary-color: #00f5ff;
    --secondary-color: #ff6b6b;
    --accent-color: #4ecdc4;
    --background-dark: #0a0a0a;
    --background-darker: #000000;
    --surface-dark: #1a1a2e;
    --surface-light: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #ff9f40);
    --shadow-glow: 0 0 20px rgba(0, 245, 255, 0.3);
    --shadow-glow-strong: 0 0 40px rgba(0, 245, 255, 0.5);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Rajdhani', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

.btn-secondary {
    background: var(--surface-light);
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--gradient-secondary);
    color: var(--text-primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

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

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(0, 245, 255, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: titleReveal 1s forwards;
}

.title-line:nth-child(1) { animation-delay: 0.5s; }
.title-line:nth-child(2) { animation-delay: 0.7s; }
.title-line:nth-child(3) { animation-delay: 0.9s; }

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.1s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s forwards 1.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-elements {
    position: relative;
    width: 300px;
    height: 300px;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--surface-light);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 20%;
}

.floating-icon:nth-child(2) {
    top: 20%;
    right: 20%;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
}

.floating-icon:nth-child(4) {
    bottom: 20%;
    right: 20%;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0) rotate(180deg); }
    75% { transform: translateY(-10px) rotate(270deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: var(--surface-dark);
}

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

.feature-card {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    transition: left 0.5s;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Services Sections */
.services-preview {
    background: var(--background-darker);
}

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

.service-card {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    background: rgba(0, 245, 255, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Services Detailed */
.services-detailed {
    background: var(--surface-dark);
}

.service-detailed-card {
    background: var(--surface-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: var(--transition);
    margin-bottom: 2rem;
}

.service-detailed-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    background: var(--gradient-primary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 2rem auto 1rem;
}

.service-content {
    padding: 0 2rem 2rem;
    text-align: center;
}

.service-features ul {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--primary-color);
}

.service-pricing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price span {
    color: var(--primary-color);
    font-size: 2rem;
}

/* Token Info */
.token-info {
    background: var(--surface-dark);
}

.token-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: var(--surface-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
    text-align: center;
}

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

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

.contract-address {
    margin-bottom: 2rem;
}

.contract-address label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.address-container {
    display: flex;
    gap: 0.5rem;
}

.address-container input {
    flex: 1;
    background: var(--surface-light);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 0.75rem;
    color: var(--text-primary);
    font-family: monospace;
}

.copy-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Security Section */
.security {
    background: var(--background-darker);
    position: relative;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.security-features {
    margin-top: 2rem;
}

.security-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.security-feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.security-shield {
    position: relative;
    font-size: 8rem;
    color: var(--primary-color);
}

.shield-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--surface-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 0.75rem;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

/* Order Section */
.order-section {
    background: var(--surface-dark);
}

.order-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
}

/* Why Choose Us */
.why-choose-us {
    background: var(--background-darker);
}

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

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

/* Buy Page Styles */
.token-stats-detailed {
    background: var(--surface-dark);
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.stat-card {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.stat-content {
    text-align: left;
}

.stat-change {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.stat-change.positive {
    color: #4ade80;
}

.stat-change.negative {
    color: #f87171;
}

/* Buy Section */
.buy-section {
    background: var(--background-darker);
}

.buy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.buy-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.buy-widget {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.contract-section {
    margin-bottom: 2rem;
}

.contract-address-container {
    margin-top: 1rem;
}

.address-display {
    display: flex;
    gap: 0.5rem;
}

.contract-info {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dex-links {
    margin-bottom: 2rem;
}

.dex-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.dex-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.dex-btn:hover:not(.disabled) {
    border-color: var(--primary-color);
    background: rgba(0, 245, 255, 0.1);
}

.dex-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.dex-btn small {
    margin-left: auto;
    color: var(--text-secondary);
}

.security-notice {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.security-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.security-header i {
    color: var(--secondary-color);
}

.security-notice ul {
    list-style: none;
    margin: 0;
}

.security-notice li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

/* Tokenomics */
.tokenomics {
    background: var(--surface-dark);
}

.tokenomics-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tokenomics-chart {
    display: flex;
    justify-content: center;
}

.chart-placeholder {
    width: 400px;
    height: 400px;
    position: relative;
}

.tokenomics-details {
    space-y: 1.5rem;
}

.tokenomics-item {
    margin-bottom: 1.5rem;
}

.token-allocation {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.allocation-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.allocation-color.liquidity { background: #00f5ff; }
.allocation-color.public-sale { background: #ff6b6b; }
.allocation-color.development { background: #4ecdc4; }
.allocation-color.marketing { background: #45b7d1; }
.allocation-color.team { background: #96ceb4; }

.allocation-info h4 {
    margin: 0;
    color: var(--text-primary);
}

.percentage {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--primary-color);
    margin-left: auto;
}

.allocation-info p {
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface-light);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Roadmap */
.roadmap {
    background: var(--background-darker);
}

.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: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 2rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 2rem;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--surface-light);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -20px;
}

.timeline-item.completed .timeline-marker {
    background: var(--primary-color);
    color: var(--background-dark);
}

.timeline-item.active .timeline-marker {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--background-dark);
    animation: pulse 2s infinite;
}

.timeline-content {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content ul {
    list-style: none;
    margin-top: 1rem;
}

.timeline-content li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.timeline-content li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* NFT Styles */
.nft-hero {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.nft-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.nft-hero .hero-content {
    position: relative;
    z-index: 2;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-top: 1rem;
    font-weight: 600;
}

.collection-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.collection-stats .stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.collection-stats .stat-value {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.collection-stats .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* NFT Grid */
.collection-preview {
    background: var(--surface-dark);
}

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

.nft-card {
    background: var(--surface-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: var(--transition);
}

.nft-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.nft-image {
    position: relative;
    height: 250px;
    background: var(--gradient-primary);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 3rem;
}

.placeholder-image span {
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 600;
}

.rarity-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.rarity-badge.legendary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
}

.rarity-badge.epic {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    color: #fff;
}

.rarity-badge.rare {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: #fff;
}

.rarity-badge.uncommon {
    background: linear-gradient(45deg, #10b981, #059669);
    color: #fff;
}

.rarity-badge.common {
    background: linear-gradient(45deg, #6b7280, #4b5563);
    color: #fff;
}

.nft-info {
    padding: 1.5rem;
}

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

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

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-item .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.detail-item .value {
    font-weight: 600;
}

.detail-item .value.legendary { color: #ffd700; }
.detail-item .value.epic { color: #8b5cf6; }
.detail-item .value.rare { color: #3b82f6; }
.detail-item .value.uncommon { color: #10b981; }
.detail-item .value.common { color: #6b7280; }

.nft-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.trait {
    background: rgba(0, 245, 255, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Rarity Distribution */
.rarity-distribution {
    background: var(--background-darker);
}

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

.rarity-card {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.rarity-card.legendary {
    border-color: #ffd700;
}

.rarity-card.epic {
    border-color: #8b5cf6;
}

.rarity-card.rare {
    border-color: #3b82f6;
}

.rarity-card.uncommon {
    border-color: #10b981;
}

.rarity-card.common {
    border-color: #6b7280;
}

.rarity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rarity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.rarity-card.legendary .rarity-icon { color: #ffd700; }
.rarity-card.epic .rarity-icon { color: #8b5cf6; }
.rarity-card.rare .rarity-icon { color: #3b82f6; }
.rarity-card.uncommon .rarity-icon { color: #10b981; }
.rarity-card.common .rarity-icon { color: #6b7280; }

.rarity-percentage {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.rarity-count {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.rarity-features ul {
    list-style: none;
    text-align: left;
}

.rarity-features li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

/* NFT Utilities */
.nft-utilities {
    background: var(--surface-dark);
}

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

.utility-card {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
    text-align: center;
    transition: var(--transition);
}

.utility-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.utility-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

/* Mint Info */
.mint-info {
    background: var(--background-darker);
}

.mint-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.mint-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.mint-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--surface-light);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.mint-stat i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.mint-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.mint-stat .stat-value {
    font-weight: 600;
    color: var(--text-primary);
}

.whitelist-info {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
    margin-top: 2rem;
}

.whitelist-info ul {
    list-style: none;
    margin-top: 1rem;
}

.whitelist-info li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whitelist-info i {
    color: var(--primary-color);
}

.coming-soon-container {
    background: var(--surface-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
    text-align: center;
}

.coming-soon-badge.large {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
}

.notify-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.newsletter-signup {
    margin-top: 2rem;
}

.email-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 1rem auto 0;
}

.email-form input {
    flex: 1;
}

/* FAQ */
.nft-faq,
.contact-faq {
    background: var(--surface-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface-light);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 245, 255, 0.1);
}

.faq-question h4 {
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

/* Launch App Styles */
.coming-soon-hero {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.coming-soon-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.coming-soon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.app-preview {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--surface-dark);
    border-radius: 30px;
    overflow: hidden;
}

.app-interface {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.app-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.online {
    background: #4ade80;
    animation: pulse 2s infinite;
}

.app-dashboard {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.portfolio-card {
    background: var(--surface-light);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.portfolio-card h4 {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.portfolio-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.portfolio-change {
    font-size: 0.8rem;
}

.portfolio-change.positive {
    color: #4ade80;
}

.ai-agent-status {
    background: var(--surface-light);
    padding: 15px;
    border-radius: 12px;
}

.ai-agent-status h4 {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.agent-activity {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.activity-item i {
    color: var(--primary-color);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.action-btn {
    background: var(--gradient-primary);
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.action-btn i {
    font-size: 1.2rem;
}

.coming-soon-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: pulse 3s infinite;
}

.launch-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 3rem 0;
    max-width: 400px;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius);
}

.countdown-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.notify-signup {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.email-signup {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.email-signup input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 0.75rem;
    color: var(--text-primary);
}

.email-signup input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* App Features */
.app-features {
    background: var(--surface-dark);
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.feature-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-showcase-item.reverse {
    direction: rtl;
}

.feature-showcase-item.reverse > * {
    direction: ltr;
}

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

.feature-icon-large {
    font-size: 4rem;
    color: var(--primary-color);
    z-index: 2;
    position: relative;
}

.feature-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-ring {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    left: -50px;
    top: -50px;
    animation: pulse 3s infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 1s;
}

.pulse-ring.delay-2 {
    animation-delay: 2s;
}

.security-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.security-node {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: securityBlink 2s infinite;
}

.security-node:nth-child(2) { animation-delay: 0.5s; }
.security-node:nth-child(3) { animation-delay: 1s; }
.security-node:nth-child(4) { animation-delay: 1.5s; }

@keyframes securityBlink {
    0%, 50% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.trading-chart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 100px;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.chart-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.point {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: chartPoint 3s infinite;
}

.point:nth-child(2) { animation-delay: 1s; }
.point:nth-child(3) { animation-delay: 2s; }

@keyframes chartPoint {
    0%, 66%, 100% { transform: translateY(0); }
    33% { transform: translateY(-20px); }
}

.feature-points {
    list-style: none;
    margin-top: 2rem;
}

.feature-points li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-points i {
    color: var(--primary-color);
}

/* App Screenshots */
.app-screenshots {
    background: var(--background-darker);
}

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

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

.screenshot-mockup {
    background: var(--surface-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(0, 245, 255, 0.2);
    margin-bottom: 1rem;
    height: 300px;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    background: var(--surface-dark);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-title {
    font-weight: 600;
    color: var(--primary-color);
}

.mockup-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-preview,
.ai-preview,
.trading-preview,
.security-preview {
    width: 100%;
    text-align: left;
}

.balance-card {
    background: var(--surface-dark);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.balance-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.balance-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.balance-change.positive {
    color: #4ade80;
    font-size: 0.8rem;
}

.quick-stats {
    display: flex;
    justify-content: space-between;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.stat-item i {
    color: var(--primary-color);
}

.agent-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4ade80;
}

.agent-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--surface-dark);
    border-radius: 6px;
    font-size: 0.8rem;
}

.action-item i {
    color: var(--primary-color);
}

.trade-pair {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
}

.trade-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.buy-btn,
.sell-btn {
    padding: 0.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
}

.buy-btn {
    background: #4ade80;
    color: var(--background-dark);
}

.sell-btn {
    background: #f87171;
    color: var(--text-primary);
}

.security-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.security-status i {
    color: #4ade80;
    font-size: 1.5rem;
}

.threat-level {
    text-align: center;
}

.threat-level span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.threat-bar {
    height: 6px;
    border-radius: 3px;
    width: 100%;
}

.threat-bar.low {
    background: #4ade80;
}

/* Beta Signup */
.beta-signup {
    background: var(--surface-dark);
}

.beta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.beta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-secondary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.beta-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-item i {
    color: var(--primary-color);
}

.beta-form {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
}

/* Release Timeline */
.release-timeline {
    background: var(--background-darker);
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline .timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
    width: 100%;
}

.timeline .timeline-marker {
    position: absolute;
    left: 15px;
    top: 0;
    width: 30px;
    height: 30px;
}

.timeline .timeline-content {
    background: var(--surface-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.timeline-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Contact Styles */
.contact-methods {
    background: var(--surface-dark);
}

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

.contact-card {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

/* Contact Forms */
.contact-forms {
    background: var(--background-darker);
}

.forms-container {
    display: grid;
    gap: 4rem;
}

.form-section {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--surface-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
}

/* Business Info */
.business-info {
    background: var(--surface-dark);
}

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

.info-section {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.business-hours {
    margin-top: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
}

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

.emergency-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.emergency-note i {
    color: var(--secondary-color);
}

.response-times {
    margin-top: 1rem;
}

.response-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.response-item:last-child {
    border-bottom: none;
}

.response-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.response-content h4 {
    margin: 0 0 0.25rem 0;
}

.response-content span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.security-warning {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 1rem;
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.warning-header i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.security-tips {
    list-style: none;
    margin-bottom: 1.5rem;
}

.security-tips li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.security-tips li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.official-channels h5 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.channel-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.channel-links a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--background-darker);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-section p {
    margin-bottom: 2rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer .social-links {
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
    border: none;
}

.footer .social-link {
    width: 40px;
    height: 40px;
    background: var(--surface-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer .social-link:hover {
    background: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        transition: left 0.3s ease;
        gap: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .social-links {
        margin: 2rem 0 0 0;
        padding: 2rem 0 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .floating-elements {
        width: 250px;
        height: 250px;
    }
    
    .coming-soon-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .launch-countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .email-signup {
        flex-direction: column;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .token-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .security-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .buy-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tokenomics-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chart-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .roadmap-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 80px !important;
        text-align: left !important;
    }
    
    .timeline-marker {
        left: 15px !important;
        right: auto !important;
    }
    
    .feature-showcase-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-showcase-item.reverse {
        direction: ltr;
    }
    
    .beta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mint-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mint-stats {
        grid-template-columns: 1fr;
    }
    
    .notify-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .collection-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .nft-grid {
        grid-template-columns: 1fr;
    }
    
    .rarity-grid {
        grid-template-columns: 1fr;
    }
    
    .utilities-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 4rem 0;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .phone-frame {
        padding: 15px;
    }
    
    .app-interface {
        padding: 15px;
    }
    
    .launch-countdown {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
    
    .countdown-item {
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .email-form input {
        margin-bottom: 0.5rem;
    }
    
    .notify-actions .btn {
        width: 100%;
    }
    
    .collection-stats {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn { animation: fadeIn 0.5s ease-in-out; }
.animate-slideInUp { animation: slideInUp 0.5s ease-out; }
.animate-slideInDown { animation: slideInDown 0.5s ease-out; }

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.message.success {
    background: rgba(74, 222, 128, 0.2);
    border: 1px solid #4ade80;
    color: #4ade80;
}

.message.error {
    background: rgba(248, 113, 113, 0.2);
    border: 1px solid #f87171;
    color: #f87171;
}

.message.info {
    background: rgba(0, 245, 255, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* Loading States */
.loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hover Effects */
.hover-glow:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--background-dark);
}

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

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

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

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