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

body {
    font-family: 'Sour Gummy', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #4169E1 0%, #5B7DE1 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(65, 105, 225, 0.3);
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.logo-icon {
    animation: bounce 2s infinite;
    border-radius: 4px;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FFD700;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4169E1 0%, #5B7DE1 50%, #7B9DE1 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🐾';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '🦴';
    position: absolute;
    font-size: 150px;
    opacity: 0.05;
    bottom: -30px;
    left: -30px;
    animation: float 8s ease-in-out infinite;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 80px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    line-height: 1;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
    color: #FFD700;
}

.stat-value {
    font-size: 20px;
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 10px 25px;
    border: 2px solid white;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #4169E1;
}

.hero-image {
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
    transition: transform 0.3s;
}

.hero-image:hover {
    transform: scale(1.05) rotate(2deg);
}

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

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

/* About Section */
.about {
    background: linear-gradient(135deg, #FFF8DC 0%, #FFEAA7 100%);
    padding: 100px 0;
    position: relative;
}

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

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

.about-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1;
    color: #8B6914;
    font-weight: 800;
}

.about-text h3 {
    font-size: 28px;
    line-height: 1;

    color: #B8860B;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-social {
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0C8DE4 100%);
    color: white;
}

.btn-telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    color: white;
}

.btn-social:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

/* How to Buy Section */
.how-to-buy {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
    background: linear-gradient(135deg, #4169E1 0%, #8B6914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(65, 105, 225, 0.2);
}

.step-number {
    background: linear-gradient(135deg, #4169E1 0%, #5B7DE1 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.step p {
    color: #666;
    font-size: 14px;
}

/* Roadmap Section */
.roadmap {
    background: linear-gradient(135deg, #F5F5DC 0%, #E8E8CE 100%);
    padding: 100px 0;
    position: relative;
}

.roadmap-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.roadmap-item {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 4px solid #4169E1;
}

.roadmap-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(65, 105, 225, 0.2);
}

.roadmap-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E6F2FF 0%, #D0E8FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.2);
}

.roadmap-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.roadmap-item ul {
    list-style: none;
}

.roadmap-item li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
}

.roadmap-item li:before {
    content: "✓ ";
    color: #4169E1;
    font-weight: bold;
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFEAA7 100%);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.token-item {
    text-align: center;
    padding: 45px 25px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.token-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.3);
}

.token-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #E6F2FF 0%, #D0E8FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.2);
}

.token-percentage {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #4169E1 0%, #5B7DE1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.token-label {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.token-description {
    color: #666;
    font-size: 14px;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #FFF8DC;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
}

.member-avatar  {
    width: 120px!important;
    height: 120px!important;
    border-radius: 50%!important;
    margin: 0 auto 20px;
}

.member-avatar image{

}

.member-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.member-role {
    color: #4169E1;
    font-weight: bold;
    margin-bottom: 15px;
}

.member-bio {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.member-social a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
}

.member-social1 {
    display: flex;
    justify-content: left;
    fill: #7B9DE1;
    gap: 15px;
}

.member-social a {
    color: #333!important;
    text-decoration: none;
    font-size: 18px;
}

/* Checklist Section */
.checklist {
    padding: 100px 0;
    background: white;
}

.checklist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

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

.checklist-items label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    cursor: pointer;
}

.checklist-items input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #F5F5DC;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.faq-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    cursor: pointer;
}

.faq-question {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding-top: 15px;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F5DC 0%, #E8E8CE 100%);
}

.faq-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(65, 105, 225, 0.2);
    border-left-color: #4169E1;
}

.faq-item.active {
    border-left-color: #FFD700;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.3);
}

.faq-question {
    font-weight: 700;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.faq-icon {
    font-size: 24px;
    font-weight: 700;
    color: #4169E1;
    transition: transform 0.3s;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #FFD700;
}

.faq-answer {
    display: none;
    padding-top: 15px;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-image {
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFEAA7 100%);
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 25px;
    margin-bottom: 20px;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    font-size: 16px;
    font-family: 'Sour Gummy', sans-serif;
    transition: all 0.3s;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4169E1;
    box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.1);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    width: 100%;
    font-size: 18px;
    padding: 18px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #4169E1 0%, #5B7DE1 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about p {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.8;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: #FFD700;
}

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

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

.footer-social a:hover {
    background: rgba(255,215,0,0.3);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.85;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content,
    .about-content,
    .checklist-content,
    .faq-content {
        grid-template-columns: 1fr;
    }

    .steps,
    .roadmap-items,
    .tokenomics-grid,
    .team-members {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}


.stat-value {
    cursor: pointer;
    color: #ffffff;
    user-select: none;
    transition: color 0.2s ease;
}
.stat-value:hover {
    color: #cde2f6;
    text-decoration: underline;
}
.stat-value.copied {
    color: #d9ebff; /* green feedback */
    font-weight: 600;
}