﻿/* Base Styles */
@import url('css2');

:root {
    --primary-color: #008a07;
    --secondary-color: #8b5cf6;
    --tertiary-color: #06b6d4;
    --dark-bg: #000000;
    --card-bg: rgba(30, 0, 60, 0.3);
    --text-color: #ffffff;
    --border-color: rgba(236, 72, 153, 0.2);
    --glow-color: #008a07;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.7));
    z-index: -1;
}

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

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Disco Lights Effect */
.disco-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.light {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: pulse 4s infinite alternate;
}

.light-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    animation-delay: 0s;
}

.light-2 {
    top: 60%;
    left: 80%;
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    animation-delay: 1s;
}

.light-3 {
    top: 80%;
    left: 30%;
    width: 350px;
    height: 350px;
    background: var(--tertiary-color);
    animation-delay: 2s;
}

.light-4 {
    top: 10%;
    left: 70%;
    width: 250px;
    height: 250px;
    background: #f59e0b;
    animation-delay: 3s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

/* Neon Text and Glow Effects */
.neon-text {
    color: var(--primary-color);
    text-shadow: 0 0 5px #008a07,
                 0 0 10px rgba(236, 72, 153, 0.5),
                 0 0 15px rgba(236, 72, 153, 0.3);
}

.pulse {
    animation: textPulse 2s infinite alternate;
}

@keyframes textPulse {
    0% {
        text-shadow: 0 0 5px #008a07,
                    0 0 10px rgba(236, 72, 153, 0.5),
                    0 0 15px rgba(236, 72, 153, 0.3);
    }
    100% {
        text-shadow: 0 0 10px rgba(236, 72, 153, 0.9),
                    0 0 20px #008a07,
                    0 0 30px rgba(236, 72, 153, 0.5),
                    0 0 40px rgba(236, 72, 153, 0.3);
    }
}

.glow-border {
    border: 2px solid transparent;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--glow-color);
    animation: borderGlow 3s infinite alternate;
    overflow: hidden;
}

@keyframes borderGlow {
    0% {
        box-shadow: 0 0 5px var(--glow-color);
        border-color: rgba(236, 72, 153, 0.3);
    }
    100% {
        box-shadow: 0 0 20px var(--glow-color), 0 0 30px var(--glow-color);
        border-color: #008a07;
    }
}

.glow-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 10px var(--glow-color);
    animation: btnGlow 3s infinite alternate;
}

@keyframes btnGlow {
    0% {
        box-shadow: 0 0 5px var(--glow-color);
    }
    100% {
        box-shadow: 0 0 15px var(--glow-color), 0 0 25px var(--glow-color);
    }
}

.glow-icon {
    animation: iconGlow 2s infinite alternate;
}

@keyframes iconGlow {
    0% {
        box-shadow: 0 0 5px var(--glow-color);
    }
    100% {
        box-shadow: 0 0 15px var(--glow-color);
    }
}

/* Glass Card Effect */
.glass-card {
    background: rgba(30, 0, 60, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(236, 72, 153, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.2);
    border-color: rgba(236, 72, 153, 0.5);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

section:nth-child(odd) {
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(30,0,60,0.2));
}

section:nth-child(even) {
    background: linear-gradient(to bottom, rgba(30,0,60,0.2), rgba(0,0,0,0.9));
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
}

.outline-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.outline-btn:hover {
    background: rgba(236, 72, 153, 0.1);
    transform: translateY(-3px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section - Updated to match the image */
#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.feetcoin-text {
    color: #008a07;
    text-shadow: 0 0 10px #008a07,
                 0 0 20px rgba(236, 72, 153, 0.5),
                 0 0 30px rgba(236, 72, 153, 0.3);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.buy-now-btn {
    background: linear-gradient(to right, #6b21a8, #9333ea);
    color: white;
    border: none;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.5);
}

.buy-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.7);
}

.view-chart-btn {
    background: transparent;
    border: 2px solid #008a07;
    color: white;
}

.view-chart-btn:hover {
    background: rgba(236, 72, 153, 0.1);
    transform: translateY(-3px);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

.social-icon:hover {
    background: #008a07;
    transform: translateY(-3px);
}

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

/* Video Section */
#video-section {
    padding: 100px 0;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    display: block;
    border-radius: 8px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.small-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.small-images img {
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* How to Buy Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.step:hover {
    transform: translateY(-10px) rotateY(5deg);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
}

.step h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.center-btn {
    text-align: center;
    margin-top: 20px;
}

/* Tokenomics Section */
.tokenomics-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tokenomics-card h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.distribution-item {
    margin-bottom: 20px;
}

.distribution-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    border-radius: 10px;
    animation: progressAnimation 2s ease-out forwards;
}

@keyframes progressAnimation {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.token-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
    color: rgba(255, 255, 255, 0.7);
}

.detail-value {
    font-weight: 600;
}

/* Community Section */
.community-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.community-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.community-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.twitter-btn {
    background: #1DA1F2;
    color: white;
}

.telegram-btn {
    background: #0088cc;
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-text {
        order: 1;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .light {
        opacity: 0.2;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .community-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .light {
        opacity: 0.15;
        filter: blur(40px);
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .step {
        padding: 20px;
    }
    
    .light {
        opacity: 0.1;
        filter: blur(30px);
    }
}