/* Base Styles */
:root {
    --primary-color: #ff3e8f;
    --secondary-color: #7928ca;
    --accent-color: #00d4ff;
    --dark-color: #0a0a1a;
    --darker-color: #050510;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #28ca7a;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --border-radius: 12px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--darker-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGQ9Ik0wIDBoMzAwdjMwMEgweiIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIuMDUiLz48L3N2Zz4=');
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

a {
    text-decoration: none;
    color: var(--light-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

h1 {
    font-size: 4rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    box-shadow: 0 4px 15px rgba(255, 62, 143, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 62, 143, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 62, 143, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 62, 143, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 62, 143, 0);
    }
}

/* Hover Glow Effect */
.btn-primary:hover, .feature-card:hover, .token-card:hover, .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 62, 143, 0.3);
    transition: all 0.4s ease;
}

/* Shimmer Effect */
.text-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background: rgba(5, 5, 16, 0.8);
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

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

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn-primary):after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, var(--dark-color) 0%, var(--darker-color) 100%);
}

/* Hero Background Animation */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(125deg, rgba(255, 62, 143, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    animation: heroBackgroundShift 15s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes heroBackgroundShift {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        opacity: 0.5;
    }
    50% {
        clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);
        opacity: 0.8;
    }
    100% {
        clip-path: polygon(20% 0, 100% 20%, 80% 100%, 0 80%);
        opacity: 0.5;
    }
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 2rem;
}

.hero-image {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    z-index: 1;
}

/* Floating Hearts Animation */
.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
}

.heart {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.7;
    animation: float 6s infinite ease-in-out;
}

.heart1 {
    top: 20%;
    left: 10%;
    font-size: 1.5rem;
    animation-delay: 0s;
}

.heart2 {
    top: 50%;
    left: 70%;
    font-size: 2rem;
    animation-delay: 2s;
}

.heart3 {
    top: 70%;
    left: 30%;
    font-size: 1.2rem;
    animation-delay: 4s;
}

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

/* AI Assistant Animation */
.ai-assistant {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ai-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 50px rgba(255, 62, 143, 0.5);
    animation: pulse-glow 3s infinite;
}

.ai-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 62, 143, 0.3);
    animation: pulse-ring 3s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 62, 143, 0.6);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 62, 143, 0.9);
    }
}

/* Chat Bubbles Animation */
.chat-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.chat-bubble {
    position: absolute;
    padding: 15px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    font-size: 0.9rem;
    opacity: 0;
    animation: bubble-appear 12s infinite;
}

.bubble1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.bubble2 {
    top: 40%;
    right: 5%;
    animation-delay: 4s;
}

.bubble3 {
    top: 60%;
    right: 15%;
    animation-delay: 8s;
}

@keyframes bubble-appear {
    0%, 100% {
        opacity: 0;
        transform: translateY(20px);
    }
    5%, 25% {
        opacity: 1;
        transform: translateY(0);
    }
    30% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-color);
    clip: rect(0, 900px, 0, 0);
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 var(--accent-color);
    animation: glitch-animation-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: 1px 0 var(--primary-color);
    animation: glitch-animation-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-animation-1 {
    0% {
        clip: rect(36px, 9999px, 28px, 0);
    }
    5% {
        clip: rect(93px, 9999px, 90px, 0);
    }
    10% {
        clip: rect(63px, 9999px, 59px, 0);
    }
    15% {
        clip: rect(24px, 9999px, 34px, 0);
    }
    20% {
        clip: rect(10px, 9999px, 89px, 0);
    }
    25% {
        clip: rect(95px, 9999px, 46px, 0);
    }
    30% {
        clip: rect(81px, 9999px, 9px, 0);
    }
    35% {
        clip: rect(84px, 9999px, 44px, 0);
    }
    40% {
        clip: rect(57px, 9999px, 79px, 0);
    }
    45% {
        clip: rect(23px, 9999px, 100px, 0);
    }
    50% {
        clip: rect(42px, 9999px, 53px, 0);
    }
    55% {
        clip: rect(23px, 9999px, 31px, 0);
    }
    60% {
        clip: rect(48px, 9999px, 27px, 0);
    }
    65% {
        clip: rect(40px, 9999px, 80px, 0);
    }
    70% {
        clip: rect(51px, 9999px, 5px, 0);
    }
    75% {
        clip: rect(8px, 9999px, 44px, 0);
    }
    80% {
        clip: rect(38px, 9999px, 95px, 0);
    }
    85% {
        clip: rect(63px, 9999px, 30px, 0);
    }
    90% {
        clip: rect(57px, 9999px, 21px, 0);
    }
    95% {
        clip: rect(57px, 9999px, 86px, 0);
    }
    100% {
        clip: rect(5px, 9999px, 80px, 0);
    }
}

@keyframes glitch-animation-2 {
    0% {
        clip: rect(18px, 9999px, 42px, 0);
    }
    5% {
        clip: rect(10px, 9999px, 28px, 0);
    }
    10% {
        clip: rect(75px, 9999px, 81px, 0);
    }
    15% {
        clip: rect(76px, 9999px, 25px, 0);
    }
    20% {
        clip: rect(35px, 9999px, 24px, 0);
    }
    25% {
        clip: rect(56px, 9999px, 65px, 0);
    }
    30% {
        clip: rect(38px, 9999px, 84px, 0);
    }
    35% {
        clip: rect(65px, 9999px, 91px, 0);
    }
    40% {
        clip: rect(40px, 9999px, 3px, 0);
    }
    45% {
        clip: rect(82px, 9999px, 97px, 0);
    }
    50% {
        clip: rect(94px, 9999px, 100px, 0);
    }
    55% {
        clip: rect(1px, 9999px, 34px, 0);
    }
    60% {
        clip: rect(14px, 9999px, 63px, 0);
    }
    65% {
        clip: rect(54px, 9999px, 21px, 0);
    }
    70% {
        clip: rect(45px, 9999px, 23px, 0);
    }
    75% {
        clip: rect(23px, 9999px, 35px, 0);
    }
    80% {
        clip: rect(67px, 9999px, 74px, 0);
    }
    85% {
        clip: rect(81px, 9999px, 37px, 0);
    }
    90% {
        clip: rect(48px, 9999px, 35px, 0);
    }
    95% {
        clip: rect(54px, 9999px, 84px, 0);
    }
    100% {
        clip: rect(57px, 9999px, 17px, 0);
    }
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

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

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: rgba(255, 255, 255, 0.1);
}

.problem-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--darker-color);
    position: relative;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    animation: floatCard 6s ease-in-out infinite;
}

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

/* Add delay to each card for wave effect */
.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 1s; }
.feature-card:nth-child(3) { animation-delay: 2s; }
.feature-card:nth-child(4) { animation-delay: 3s; }
.feature-card:nth-child(5) { animation-delay: 4s; }
.feature-card:nth-child(6) { animation-delay: 5s; }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
}

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

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 62, 143, 0.5);
}

.timeline-content {
    width: calc(50% - 40px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Token Section */
.token {
    padding: 100px 0;
    background-color: var(--darker-color);
    position: relative;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.token-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.token-card:hover {
    transform: rotateY(10deg) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(255, 62, 143, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.token-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    transition: transform 0.5s ease;
}

.token-card:hover .token-icon {
    transform: translateZ(20px);
}

.token-distribution {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.token-distribution h3 {
    margin-bottom: 30px;
}

.chart-container {
    height: 300px;
    margin-bottom: 30px;
}

.token-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.token-stat {
    text-align: center;
}

.token-stat h4 {
    color: var(--accent-color);
    margin-bottom: 5px;
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
}

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0.5;
    animation: pulseTimeline 3s infinite;
}

@keyframes pulseTimeline {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(255, 62, 143, 0.5);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(255, 62, 143, 0.8);
    }
}

.roadmap-item {
    position: relative;
    padding-left: 60px;
}

.roadmap-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.roadmap-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.roadmap-content ul {
    margin-top: 15px;
    padding-left: 20px;
}

.roadmap-content ul li {
    margin-bottom: 10px;
    position: relative;
}

.roadmap-content ul li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Team Section */
.team {
    padding: 100px 0;
    background-color: var(--darker-color);
    position: relative;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 62, 143, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.team-member:hover::before {
    animation: shine 1.5s forwards;
    opacity: 1;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: rgba(255, 255, 255, 0.1);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 5px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-3px);
}

/* Waitlist Section */
.waitlist {
    padding: 100px 0;
    background: linear-gradient(45deg, var(--dark-color), var(--darker-color));
    position: relative;
}

.waitlist-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-form {
    margin-top: 30px;
    position: relative;
}

.waitlist-form::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: var(--border-radius);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    background-size: 400% 400%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.7;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(255, 62, 143, 0.3);
}

#form-message {
    margin-top: 15px;
    font-size: 0.9rem;
}

.success-message {
    color: var(--success-color);
}

.error-message {
    color: var(--danger-color);
}

/* Footer */
footer {
    padding: 80px 0 30px;
    background-color: var(--darker-color);
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column a {
    display: block;
    margin-bottom: 10px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-image {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        margin: 0 auto;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }
    
    .timeline:before {
        left: 25px;
    }
    
    .timeline-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-image {
        width: 300px;
        height: 300px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input,
    .form-group button {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .problem,
    .features,
    .how-it-works,
    .token,
    .roadmap,
    .team,
    .waitlist {
        padding: 60px 0;
    }
}