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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #1a0033, #330066, #660099);
    overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3 {
    font-family: 'Fredoka One', cursive;
}

.gradient-text {
    background: linear-gradient(45deg, #00ff88, #ff0080, #ffff00, #00ffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 0, 51, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #ff0080;
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00ff88, #ff0080);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #00ff88;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #00ff88, #00ffff);
    color: #1a0033;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #650a55;
    border: 2px solid #ff3dbc;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.3);
}

.btn-secondary:hover {
    background: #ff0080;
    color: #fff;
    transform: translateY(-2px);
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.8);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

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

.glow {
    animation: glow 2s ease-in-out infinite;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: radial-gradient(circle at 30% 70%, #ff0080, transparent 50%),
        radial-gradient(circle at 70% 30%, #00ff88, transparent 50%),
        linear-gradient(135deg, #1a0033, #330066);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffff00;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px #ffff00;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: floating 4s ease-in-out infinite;
}

.orb-1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #00ff88, transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #ff0080, transparent);
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.orb-3 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #ffff00, transparent);
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

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

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #330066, #1a0033);
}

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

.about-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-item h3 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.about-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0033, #660099);
}

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

.tokenomics-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.token-stats {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 128, 0.3);
}

.stat-item h3 {
    color: #ff0080;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ff88;
}

.tokenomics-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* 
Roadmap Section */
.roadmap-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #330066, #1a0033);
}

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

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.timeline-item.reverse {
    direction: rtl;
}

.timeline-item.reverse .timeline-content {
    direction: ltr;
    text-align: right;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.phase-number {
    display: inline-block;
    background: linear-gradient(45deg, #00ff88, #00ffff);
    color: #1a0033;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.timeline-content h3 {
    color: #ffff00;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.timeline-content p {
    line-height: 1.6;
    color: #e0e0e0;
}

.timeline-image {
    text-align: center;
}

.roadmap-img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

/* Community Section */
.community-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #660099, #330066);
}

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

.social-links {
    display: grid;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.social-icon {
    font-size: 2rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #00ff88, #00ffff);
    border-radius: 50%;
    padding: 12px;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.social-link span {
    font-size: 1.2rem;
    font-weight: 600;
}

.community-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Footer Section */
.footer-section {
    padding: 60px 0 20px;
    background: linear-gradient(135deg, #1a0033, #000);
    border-top: 2px solid #ff0080;
}

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

.footer-text h3 {
    color: #ffff00;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-text p {
    line-height: 1.8;
    color: #e0e0e0;
}

.footer-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

.contact-email {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.contact-email a {
    color: #00ff88;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-email a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 0, 51, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container,
    .about-content,
    .tokenomics-content,
    .community-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-item,
    .timeline-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .timeline-item.reverse .timeline-content {
        text-align: left;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .social-link {
        padding: 1rem;
    }
}

/* Additional Psychedelic Effects */
.psychedelic-bg {
    background: linear-gradient(45deg, #ff0080, #00ff88, #ffff00, #00ffff);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
}

.neon-border {
    border: 2px solid #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5),
        inset 0 0 20px rgba(0, 255, 136, 0.1);
}

.text-glow {
    text-shadow: 0 0 10px currentColor,
        0 0 20px currentColor,
        0 0 30px currentColor;
}

/* Scroll animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}/* Contra
ct Address Section */
.contract-address-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contract-address-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.contract-title {
    color: #00ff88;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 0 10px #00ff88;
}

.contract-address-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 128, 0.3);
    position: relative;
}

.contract-address {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #ffff00;
    word-break: break-all; 
    padding: 0.5rem;
    background: rgba(255, 255, 0, 0.1);
    border-radius: 5px;
    text-shadow: 0 0 5px #ffff00;
}

.copy-btn {
    background: linear-gradient(45deg, #ff0080, #ff3dbc);
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.3);
    min-width: 80px;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 128, 0.5);
    background: linear-gradient(45deg, #ff3dbc, #ff0080);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-icon {
    font-size: 1rem;
}

.copy-success {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00ff88, #00ffff);
    color: #1a0033;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
    z-index: 10;
}

.copy-success.show {
    opacity: 1;
    visibility: visible;
    top: -50px;
}

/* Mobile responsiveness for contract address */
@media (max-width: 768px) {
    .contract-address-container {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .contract-address {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contract-address {
        font-size: 0.7rem;
        padding: 0.8rem 0.5rem;
    }
    
    .contract-title {
        font-size: 1rem;
    }
}