/* Variables */
:root {
    --primary-purple: #800080;
    --primary-red: #FF4136;
    --background-gradient: linear-gradient(135deg, #FF6B6B, #800080);
    --text-color: #333;
    --white: #ffffff;
    --container-width: 1200px;
    --neon-glow: 0 0 10px rgba(255, 65, 54, 0.5);
    --purple-glow: 0 0 15px rgba(128, 0, 128, 0.6);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-red));
    border-radius: 6px;
    border: 2px solid #000;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--primary-red), var(--primary-purple));
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

/* Floating Elements Animation */
@keyframes floatEmoji {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes smoke {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.15; }
    100% { transform: translateY(-60px) scale(2); opacity: 0; }
}

@keyframes colorPulse {
    0%, 100% { filter: hue-rotate(0deg) brightness(1); }
    50% { filter: hue-rotate(30deg) brightness(1.2); }
}

@keyframes backgroundMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Transitions */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.95));
    z-index: 2;
    pointer-events: none;
}

section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.95));
    z-index: 2;
    pointer-events: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.logo-img {
    width: 300px;
    height: auto;
    margin-bottom: 2rem;
    animation: swing 3s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
                 0 0 20px rgba(255, 65, 54, 0.5),
                 0 0 30px rgba(128, 0, 128, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #800080;
    }
    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #FF4136, 0 0 40px #800080;
    }
}

.contract-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 1rem;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contract-box input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: monospace;
    font-size: 1rem;
    width: 100%;
    padding: 0.5rem;
}

.contract-box button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.contract-box button:hover {
    transform: scale(1.1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: #FF4136;
    background: rgba(255, 65, 54, 0.1);
}

.nav-links .soon-btn {
    background: linear-gradient(45deg, #FF4136, #800080);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.nav-links .soon-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.nav-links .soon-btn:hover::before {
    transform: translateX(100%);
}

.nav-links .soon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 65, 54, 0.4);
    color: #fff;
    background: linear-gradient(45deg, #800080, #FF4136);
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* About Section */
.about {
    padding: 150px 0 100px;
    margin-top: -50px;
    background: linear-gradient(45deg, #000, #1a0f1a, #000);
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 65, 54, 0.5);
}

.about-text {
    text-align: center;
}

.about-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-text .highlight {
    color: #FF4136;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 65, 54, 0.3);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(128, 0, 128, 0.3);
}

.feature i {
    font-size: 2.5rem;
    color: #FF4136;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Roadmap Section */
.roadmap {
    padding: 150px 0 100px;
    margin-top: -50px;
    background: linear-gradient(45deg, #000, #1a0f1a);
    position: relative;
    z-index: 2;
}

.roadmap h2 {
    font-size: 4rem;
    margin-bottom: 6rem;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 65, 54, 0.5);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding: 0 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.roadmap-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.roadmap-item:hover::before {
    transform: translateX(100%);
}

.roadmap-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 30px rgba(128, 0, 128, 0.4);
}

.phase-header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.phase-tag {
    background: linear-gradient(45deg, #FF4136, #800080);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roadmap-item h3 {
    color: #fff;
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 65, 54, 0.5);
}

.roadmap-item ul {
    list-style: none;
    margin-top: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.roadmap-item ul li {
    margin-bottom: 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.2rem;
    line-height: 1.6;
}

.roadmap-item ul li::before {
    content: '🔥';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
}

.roadmap-item .highlight {
    color: #FF4136;
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: 0 0 5px rgba(255, 65, 54, 0.3);
    display: inline-block;
    margin-bottom: 0.3rem;
}

/* Phase-specific styles */
.phase-1 { 
    border-left: 4px solid #FF4136;
    background: linear-gradient(135deg, rgba(255, 65, 54, 0.1), transparent);
}
.phase-2 { 
    border-left: 4px solid #800080;
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.1), transparent);
}
.phase-3 { 
    border-left: 4px solid #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
}
.phase-4 { 
    border-left: 4px solid #00FF00;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), transparent);
}

/* Community Section */
.community {
    padding: 150px 0 100px;
    margin-top: -50px;
    background: linear-gradient(to right, #000, #1a0f1a, #000);
    position: relative;
    z-index: 3;
}

.community h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 65, 54, 0.5);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-btn:hover {
    transform: translateY(-5px);
    background: linear-gradient(45deg, #FF6B6B, #800080);
    box-shadow: 0 0 20px rgba(128, 0, 128, 0.5);
}

.social-btn i {
    font-size: 1.5rem;
}

/* Footer */
footer {
    background: linear-gradient(to right, #000, #1a0f1a, #000);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 65, 54, 0.5), transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-left h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #FF4136, #800080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-left p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(128, 0, 128, 0.3);
}

.social-link i {
    font-size: 1.5rem;
    color: #FF4136;
}

.footer-right {
    text-align: right;
}

.footer-right img {
    width: 150px;
    margin-bottom: 2rem;
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: #FF4136;
    transform: translateY(-2px);
}

/* Smooth Section Transitions */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .roadmap-grid {
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .roadmap-item {
        min-height: 450px;
        padding: 2.5rem 1.5rem;
    }

    .roadmap-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 1200px) {
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roadmap-item {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 1rem 0;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-left p {
        margin: 0 auto 2rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .footer-right {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .logo-img {
        width: 200px;
    }

    .contract-box {
        flex-direction: column;
        padding: 0.5rem;
    }

    .about h2,
    .roadmap h2 {
        font-size: 3rem;
        margin-bottom: 4rem;
    }

    .about-text p {
        font-size: 1.2rem;
    }

    .about-text .highlight {
        font-size: 1.4rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .roadmap-item {
        min-height: auto;
        padding: 2rem;
    }

    .roadmap-item h3 {
        font-size: 1.8rem;
    }

    .roadmap-item ul li {
        font-size: 1.1rem;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
} 