﻿/* CSS Reset and Basic Setup */
:root {
    --bg-color: #f0f2f5;
    --text-color: #333;
    --primary-orange: #ff7f50;
    --primary-yellow: #ffda79;
    --primary-blue: #3498db;
    --card-bg: rgba(0, 68, 255, 0.821);
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);

    --primary-gradient: linear-gradient(135deg, #e8b164 0%, #001aff 100%);
    --secondary-gradient: linear-gradient(135deg,  orange  0%,#e8b164 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    
    --border-radius: 20px;
    --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="stars" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite"/></circle><circle cx="75" cy="75" r="1" fill="white" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="3s" repeatCount="indefinite"/></circle></pattern></defs><rect width="100%" height="100%" fill="url(%23stars)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

/* Animated Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #ff7f50, #ffda79, #3498db, #001aff);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease-out infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 120px 0;
    min-height: 90vh;
    position: relative;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: title-float 5s ease-in-out infinite;
}
.section-subtitle {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

@keyframes title-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Header */
header {
    position: fixed;
    width: 100%;
    z-index: 99999;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.3);
    padding: 8px 0;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.logo img {
    border-radius: 100%;
    width: 55px;
    height: 55px;
    margin-right: 10px;
}

@keyframes logo-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.mobile-menu-button { display: none; }
.mobile-menu { display: none; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 127, 80, 0.4);
}

.btn-secondary {
    background-color: var(--primary-blue);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(52, 152, 219, 0.4);
}

/* Hero Section */
.token-symbol {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.main-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
#hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 5px;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-art {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-art img {
    width: 100%;
    border-radius: 100%;
}


.art-placeholder {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow), var(--primary-blue));
    animation: blob-morph 5s ease-in-out infinite alternate;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes blob-morph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(0deg); }
    100% { border-radius: 30% 70% 60% 40% / 50% 60% 30% 60%; transform: rotate(5deg); }
}


.hero-buttons {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
}

.btn {
padding: 1rem 2rem;
border: none;
border-radius: var(--border-radius);
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: var(--transition);
text-transform: uppercase;
letter-spacing: 1px;
position: relative;
overflow: hidden;
}

.btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s;
}

.btn:hover::before {
left: 100%;
}

.btn-primary {
background: var(--secondary-gradient);
color: var(--text-light);
box-shadow: var(--box-shadow);
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
background: transparent;
color: var(--text-light);
border: 1px solid var(--primary-blue);
}

.btn-secondary:hover {
background: var(--pink-primary);
transform: translateY(-3px);
}

.contract-info {
display: flex;
align-items: center;
gap: 1rem;
background: rgba(255, 255, 255, 0.1);
padding: 1rem;
border-radius: var(--border-radius);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
}

.contract-label {
background: var(--accent-gradient);
color: var(--text-light);
padding: 0.5rem 1rem;
border-radius: 10px;
font-weight: 600;
font-size: 0.9rem;
}

.contract-address {
font-family: 'Courier New', monospace;
font-size: 0.9rem;
flex-grow: 1;
}

.copy-btn {
background: transparent;
border: none;
color: var(--primary-orange);
cursor: pointer;
padding: 0.5rem;
border-radius: 50%;
transition: var(--transition);
}

.copy-btn:hover {
background: rgba(255, 105, 180, 0.2);
transform: scale(1.1);
}


/* Generic Card Style */
.card {
    color: rgb(255, 239, 208);
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: rgba(0, 0, 0, 0.5) -10px 20px 28px 0px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 10px rgb(0, 0, 0);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
}


.feature-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-yellow);
}

.feature-card .icon svg {
    width: 32px;
    height: 32px;
    color: blue;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Tokenomics Section */
.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.tokenomics-card {
    text-align: center;
    cursor: pointer;
}

.tokenomics-card h3 {
    font-size: 1.5rem;
    color: var(--primary-yellow);
}

.tokenomics-card .value {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin: 10px 0;
}

/* pairs */
.p-wrap{
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}
.p-wrap p{
    max-width: 50%;
    font-size: x-large;
}
.p-wrap .pairs-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Roadmap Section */
.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    
}

.roadmap-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
    
}

.roadmap-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    z-index: 100;
    
}

.roadmap-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -16.5px;
    background-color: var(--primary-yellow);
    border: 4px solid var(--primary-blue);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.5) -10px 20px 28px 0px;
}

.roadmap-item.left {
    left: 0;
    
}
.roadmap-item.left:hover {
    .roadmap-content {
        transform: translateX(-15px);
        scale: 105%;
    }
}
.roadmap-item.right:hover {
    .roadmap-content {
        transform: translateX(15px);
        scale: 105%;
    }
}

.roadmap-item.right {
    left: 50%;
}

.roadmap-item.right::after {
    left: -16.5px;
}

.roadmap-content {
    padding: 20px 30px;
    background: var(--card-bg);
    position: relative;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.51);
}
.roadmap-content:hover{
    box-shadow: rgba(0, 0, 0, 0.5) -10px 20px 28px 0px;
}

.roadmap-content h3 { color: var(--primary-yellow); font-size: 1.5rem; }
.roadmap-content ul { list-style-type: '🚀'; padding-left: 20px; }
.roadmap-content li { margin-top: 5px; color: rgb(255, 242, 219); }

/* How to Buy Section */
.how-to-buy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.how-to-buy-step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: white;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--primary-blue);
}

.how-to-buy-step:nth-child(1) .step-number { background-color: var(--primary-orange); box-shadow: 0 0 0 4px var(--primary-orange); }
.how-to-buy-step:nth-child(2) .step-number { background-color: var(--primary-yellow); box-shadow: 0 0 0 4px var(--primary-yellow); color: #333; }
.how-to-buy-step:nth-child(3) .step-number { background-color: var(--primary-blue); box-shadow: 0 0 0 4px var(--primary-blue); }
.how-to-buy-step:nth-child(4) .step-number { background-color: #9b59b6; box-shadow: 0 0 0 4px #9b59b6; }

.how-to-buy-step h3 { font-size: 1.5rem; margin-bottom: 10px; }


/* partnered projects */

.partner-card{
    display: flex;
    gap: 10px;
    color: white;
    margin: 25px 0;
    /* flex-wrap: wrap; */
}
.partner-card .partner-detail{
    flex-wrap: wrap;
    padding: 15px;
    border-radius: var(--border-radius);
    width: 50%;
    background-color: blue;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}
.partner-detail a{
    color: white;
    transition: all 0.3s ease;
}
.partner-detail a:hover{
    scale: 120%;
}
.partner-card .partner-img{
    width: 50%;
}
.partner-img img{
    width: 90%;
}


/* Join Us Section */
#join-us .container {
    text-align: center;
}

#join-us p {
    max-width: 600px;
    margin: 0 auto 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border-radius: 50%;
    text-decoration: none;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-5px) rotate(10deg);
}

.social-links svg {
    width: 28px;
    height: 28px;
}

.whitepaper-para{
    background-color: rgb(46, 46, 255);
    color: wheat;
    padding: 20px;
    border-radius: var(--border-radius);
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.w-wrap{
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.w-wrap .text-right{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

#team {
    padding: 6rem 0;
    /* background: var(--primary-gradient); */
}

#team .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

#team .team-member {
    text-align: center;
}

#team .team-member img {
    width: 250px;
    height: 300px;
    border-radius: 20%;
    margin: 0 auto 20px;
    object-fit: cover;
    object-position: center;
}

#team .team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#team .team-member p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

#team .team-member a {
    display: block;
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s ease;
}

#team .team-member a:hover {
    color: blue;
}
 #team .team-member .socials{
     display: flex;
     justify-content: center;
     gap: 10px;
    }
#team .team-member .socials i{

}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    color: white;
    background: var(--card-bg);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.faq-item button{
    color: white;
}

.faq-toggle {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle .arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 20px 20px;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
}

/* Animations on scroll */
.reveal {
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    transform: translateY(0px);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo{
        font-size: 1.1em;
    }
    .section-title { font-size: 3rem; }
    .nav-links { display: none; }
    .mobile-menu-button {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 101;
    }
    .mobile-menu {
        display: none; /* Initially hidden */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #0000007a;
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 10;
        
    }
    .mobile-menu.active { 
        display: flex;
     }

    .mobile-menu a { 
        font-size: 1.5rem;
        color: wheat;
        text-decoration: none;
     }
    
    .hero-content { flex-direction: column-reverse; text-align: center; }
    .hero-text h1 { font-size: 2rem; }
    .hero-text h2 { font-size: 2rem; }
    .hero-buttons { justify-content: center; }
    .art-placeholder { width: 250px; height: 250px; }
    .contract-address {
        font-family: 'Courier New', monospace;
        font-size: 0.5rem;
        flex-grow: 1;
        }
    
    .tokenomics-grid { grid-template-columns: 1fr; }
    .p-wrap p{
        max-width: 100%;
        font-size: large;
    }
    .partner-card{
        flex-direction: column;
    }
    .partner-card .partner-detail{
        width: 100%;
    }
    .partner-card .partner-img{
        width: 100%;
    }
    .partner-card:nth-child(2){
        flex-direction: column-reverse;
    }
    .partner-card:nth-child(3){
        flex-direction: column;
    }
    .partner-card:nth-child(4){
        flex-direction: column-reverse;
    }
    
    .roadmap-timeline::after { left: 30px; }
    .roadmap-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .roadmap-item.right { left: 0%; }
    .roadmap-item::after { left: 15px; }
    .roadmap-item.left:hover {
        .roadmap-content {
            transform: translateX(15px);
            scale: 105%;
        }
    }
    
    .roadmap-item.right::after {
        left: 15px;
    }
    .roadmap-item.right:hover {
        .roadmap-content {
            transform: translateX(15px);
            scale: 105%;
        }
    }
    .whitepaper-para{
        max-width: 100%;

    }
}
