:root {
    --primary: #00f2fe;
    --secondary: #4facfe;
    --accent: #ff007f;
    --bg-dark: #0a0a1a;
    --text-main: #ffffff;
    --text-muted: #a0a0c0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
}

/* Background Effects */
.ocean-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(to bottom, #0a0a1a 0%, #001a33 50%, #004d99 100%);
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 30vh;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%2300f2fe" fill-opacity="0.3" d="M0,160L48,170.7C96,181,192,203,288,208C384,213,480,203,576,176C672,149,768,107,864,112C960,117,1056,171,1152,192C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: 50% 100%;
    animation: wave-animation 15s linear infinite;
}

.wave2 {
    bottom: 10px;
    opacity: 0.5;
    animation: wave-animation 20s linear infinite reverse;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%234facfe" fill-opacity="0.5" d="M0,160L48,170.7C96,181,192,203,288,208C384,213,480,203,576,176C672,149,768,107,864,112C960,117,1056,171,1152,192C1248,213,1344,203,1392,197.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: 50% 100%;
}

.wave3 {
    bottom: 20px;
    opacity: 0.2;
    animation: wave-animation 10s linear infinite;
}

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

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    background: linear-gradient(90deg, #ffffff, var(--primary), #ffffff);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 3s linear infinite;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.8));
}

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

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.8));
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5% 50px;
    position: relative;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    z-index: 10;
    text-align: center;
}

.glitch {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: #ffffff;
    text-shadow: 0 0 15px var(--primary), 0 0 30px var(--secondary), 0 0 45px var(--secondary);
    margin-bottom: 10px;
    line-height: 1;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contract-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 15px 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    word-break: break-all;
}

.contract-box span {
    font-weight: 700;
    color: var(--primary);
}

.contract-box code {
    font-family: monospace;
    font-size: 1rem;
}

.price-dashboard {
    background: rgba(10, 10, 26, 0.8);
    border: 2px solid var(--primary);
    border-radius: 18px;
    padding: 20px 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.35), inset 0 0 20px rgba(0, 242, 254, 0.2);
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
}

.price-dashboard::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.dashboard-screen {
    text-align: center;
}

.speed-label {
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.price-value {
    font-family: 'Outfit', monospace;
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 15px var(--primary);
}

.dashboard-icon {
    font-size: 2.2rem;
    animation: bounce 2s infinite;
}

.wave-icon {
    animation-delay: 1s;
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.7);
}

.btn-social {
    background: var(--glass-bg);
    color: #fff;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

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

.community-link {
    margin-top: 15px;
}

.community-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 20px;
    border: 1px solid var(--primary);
    border-radius: 20px;
    background: rgba(0, 242, 254, 0.1);
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 242, 254, 0.5);
}

.community-link a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    text-shadow: none;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.6);
    transform: translateY(-2px);
}

.hero-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.hero-img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(0, 242, 254, 0.3);
    border: 2px solid var(--glass-border);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

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

/* About Section */
.about {
    padding: 100px 5%;
    position: relative;
    z-index: 10;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-container.active {
    opacity: 1;
    transform: translateY(0);
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.4);
}

.stat-item p {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hype-list {
    margin: 25px 0;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--primary);
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 242, 254, 0.3);
}

.highlight-text {
    font-size: 1.1rem;
    color: var(--text-main);
    border-left: 4px solid var(--primary);
    padding-left: 15px;
    margin-top: 20px;
    background: rgba(0, 242, 254, 0.05);
    padding: 15px;
    border-radius: 0 10px 10px 0;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.glass-card:hover {
    transform: translateY(-10px);
}

.water-icon {
    color: var(--primary);
    margin-bottom: 20px;
}

.glass-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Chart Section */
.chart-section {
    padding: 100px 5%;
    position: relative;
    z-index: 10;
    text-align: center;
}

.chart-container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.chart-container.active {
    opacity: 1;
    transform: translateY(0);
}

.chart-container h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.dexscreener-embed {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.3);
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
}

.dexscreener-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    padding: 50px 5%;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    background: rgba(10, 10, 26, 0.9);
    position: relative;
    z-index: 10;
}

.footer-content h2 {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-main);
    font-size: 1.5rem;
    transition: color 0.3s;
}

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

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* About Image Collage */
.about-image-collage {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.collage-img {
    position: absolute;
    width: 180px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), z-index 0s;
    cursor: pointer;
}

.img4 { transform: rotate(-25deg) translate(-140px, -40px); z-index: 1; }
.img1 { transform: rotate(-10deg) translate(-70px, 10px); z-index: 2; }
.img2 { transform: rotate(0deg) translate(0, 50px); z-index: 3; }
.img5 { transform: rotate(10deg) translate(70px, 10px); z-index: 2; }
.img3 { transform: rotate(25deg) translate(140px, -40px); z-index: 1; }

.collage-img:hover {
    transform: scale(1.15) rotate(0deg) !important;
    z-index: 10 !important;
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .nav-links li:not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }
    .glitch {
        font-size: 3.5rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .about-image-collage {
        min-height: 400px;
        margin-top: 30px;
    }
    .collage-img {
        width: 120px;
        height: 160px;
    }
    .img4 { transform: rotate(-25deg) translate(-80px, -20px); }
    .img1 { transform: rotate(-10deg) translate(-40px, 0px); }
    .img2 { transform: rotate(0deg) translate(0, 20px); }
    .img5 { transform: rotate(10deg) translate(40px, 0px); }
    .img3 { transform: rotate(25deg) translate(80px, -20px); }
}
