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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: white;
}

.min-h-screen {
    min-height: 100vh;
}

.bg-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    position: relative;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.hidden {
    display: none !important;
}

/* Animated Background Elements */
.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.pointer-events-none {
    pointer-events: none;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.bg-element-1 {
    top: 80px;
    left: 80px;
    width: 128px;
    height: 128px;
    background: linear-gradient(45deg, #9945ff, #ec4899);
    animation: pulse 3s ease-in-out infinite;
}

.bg-element-2 {
    bottom: 160px;
    right: 80px;
    width: 96px;
    height: 96px;
    background: linear-gradient(45deg, #10b981, #3b82f6);
    animation: bounce 2s ease-in-out infinite;
}

.bg-element-3 {
    top: 50%;
    left: 25%;
    width: 64px;
    height: 64px;
    background: linear-gradient(45deg, #f59e0b, #f97316);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Navigation */
.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #9945ff, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(45deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #a855f7;
}

.nav-button {
    background: linear-gradient(45deg, #7c3aed, #ec4899);
    padding: 8px 16px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
}

.nav-button:hover {
    background: linear-gradient(45deg, #6d28d9, #db2777);
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    padding: 128px 16px 80px;
    position: relative;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    max-width: 100%;
}

.hero-logo {
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
}

.hero-logo-inner {
    display: inline-block;
    padding: 32px;
    background: linear-gradient(45deg, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 50%;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(147, 51, 234, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.hero-emoji {
    font-size: 64px;
}

.hero-logo-indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #a855f7, #ec4899, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 16px;
    color: #d1d5db;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    color: #c084fc;
    flex-wrap: wrap;
}

.feature-icon {
    width: 20px;
    height: 20px;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: #a855f7;
    border-radius: 50%;
}

/* Waitlist Form */
.waitlist-container {
    max-width: 448px;
    margin: 0 auto;
}

.waitlist-form {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.form-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    background: linear-gradient(45deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid #4b5563;
    border-radius: 8px;
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: #9945ff;
    box-shadow: 0 0 0 2px rgba(153, 69, 255, 0.2);
}

.submit-btn {
    padding: 12px 24px;
    background: linear-gradient(45deg, #7c3aed, #ec4899);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: scale(1);
}

.submit-btn:hover {
    background: linear-gradient(45deg, #6d28d9, #db2777);
    transform: scale(1.05);
}

.submit-btn:disabled {
    opacity: 0.5;
    transform: scale(1);
    cursor: not-allowed;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.form-description {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 12px;
}

.telegram-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #4b5563;
}

.telegram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(45deg, #2563eb, #06b6d4);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 8px;
    transform: scale(1);
}

.telegram-btn:hover {
    background: linear-gradient(45deg, #1d4ed8, #0891b2);
    transform: scale(1.05);
}

/* Success Message */
.success-message {
    background: rgba(6, 78, 59, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    text-align: center;
}

.success-icon {
    width: 48px;
    height: 48px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.success-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #6ee7b7;
}

.success-text {
    color: #d1d5db;
    margin-bottom: 16px;
}

.success-telegram {
    margin-top: 16px;
}

/* Scroll Indicator */
.scroll-indicator {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator svg {
    animation: bounce 2s ease-in-out infinite;
    color: #a855f7;
}

/* Stats Section */
.stats-section {
    padding: 64px 16px;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.stat-card {
    text-align: center;
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid;
}

.stat-card-purple {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.5), rgba(236, 72, 153, 0.5));
    border-color: rgba(147, 51, 234, 0.2);
}

.stat-card-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.5), rgba(59, 130, 246, 0.5));
    border-color: rgba(16, 185, 129, 0.2);
}

.stat-card-orange {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.5), rgba(239, 68, 68, 0.5));
    border-color: rgba(245, 158, 11, 0.2);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
}

.stat-card-purple .stat-icon {
    color: #a855f7;
}

.stat-card-green .stat-icon {
    color: #10b981;
}

.stat-card-orange .stat-icon {
    color: #f59e0b;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-card-purple .stat-number {
    color: #c084fc;
}

.stat-card-green .stat-number {
    color: #6ee7b7;
}

.stat-card-orange .stat-number {
    color: #fbbf24;
}

.stat-label {
    color: #9ca3af;
}

/* Section Styles */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 48px;
    background: linear-gradient(45deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 64px 16px;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    align-items: center;
}

.tokenomics-card {
    background: linear-gradient(45deg, rgba(147, 51, 234, 0.3), rgba(236, 72, 153, 0.3));
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.tokenomics-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #c084fc;
}

.tokenomics-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tokenomics-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tokenomics-value {
    font-weight: bold;
}

.tokenomics-value.purple { color: #c084fc; }
.tokenomics-value.green { color: #6ee7b7; }
.tokenomics-value.blue { color: #60a5fa; }
.tokenomics-value.orange { color: #fbbf24; }
.tokenomics-value.pink { color: #f472b6; }

.utilities-card {
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.3), rgba(59, 130, 246, 0.3));
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.utilities-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #6ee7b7;
}

.utilities-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.utility-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.utility-dot.green { background: #10b981; }
.utility-dot.purple { background: #a855f7; }
.utility-dot.pink { background: #ec4899; }
.utility-dot.orange { background: #f59e0b; }

/* Roadmap Section */
.roadmap-section {
    padding: 64px 16px;
}

.roadmap-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #9945ff, #ec4899);
}

.roadmap-items {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.roadmap-item {
    position: relative;
    display: flex;
    align-items: center;
}

.roadmap-item.left {
    justify-content: flex-start;
}

.roadmap-item.right {
    justify-content: flex-end;
}

.roadmap-card {
    width: 100%;
    max-width: 384px;
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid;
}

.roadmap-item.left .roadmap-card {
    margin-right: auto;
    padding-right: 32px;
}

.roadmap-item.right .roadmap-card {
    margin-left: auto;
    padding-left: 32px;
}

.roadmap-card.current {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.5), rgba(236, 72, 153, 0.5));
    border-color: rgba(147, 51, 234, 0.4);
}

.roadmap-card.upcoming {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(16, 185, 129, 0.5));
    border-color: rgba(59, 130, 246, 0.4);
}

.roadmap-card.future {
    background: linear-gradient(135deg, rgba(75, 85, 99, 0.5), rgba(55, 65, 81, 0.5));
    border-color: rgba(75, 85, 99, 0.4);
}

.roadmap-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.roadmap-icon {
    padding: 8px;
    border-radius: 8px;
}

.roadmap-icon.current {
    background: #7c3aed;
}

.roadmap-icon.upcoming {
    background: #2563eb;
}

.roadmap-icon.future {
    background: #4b5563;
}

.roadmap-phase {
    font-size: 14px;
    color: #9ca3af;
}

.roadmap-title {
    font-size: 20px;
    font-weight: bold;
}

.roadmap-description {
    color: #d1d5db;
}

.roadmap-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 4px solid #1f2937;
}

.roadmap-dot.current {
    background: linear-gradient(45deg, #9945ff, #ec4899);
}

.roadmap-dot.upcoming {
    background: linear-gradient(45deg, #2563eb, #10b981);
}

.roadmap-dot.future {
    background: #4b5563;
}

/* Footer */
.footer {
    padding: 48px 16px;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-link {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #a855f7;
}

.footer-text {
    color: #9ca3af;
    font-size: 14px;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Responsive Design */
@media (min-width: 640px) {
    .form-row {
        flex-direction: row;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .section-title {
        font-size: 64px;
    }
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 80px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 8px;
    }
    
    .nav-link {
        display: none;
    }
    
    .roadmap-item.left .roadmap-card,
    .roadmap-item.right .roadmap-card {
        margin: 0;
        padding: 24px;
    }
    
    .roadmap-line {
        left: 24px;
    }
    
    .roadmap-dot {
        left: 24px;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}