* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

:root {
    --primary-color: #1a1a2e;
    --accent-color: #0ED9E4;
    --button-primary: #009DA6;
    --text-light: #ffffff;
}

body {
    background-color: #f5f5f5;
}

nav {
    background-color: var(--primary-color);
    padding: 1rem;
    width: 100%;
    border-top: 3px solid #EFB6FF;
}

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

.logo {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
}

.cta-button {
    background-color: var(--button-primary);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
}

.hero {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 5rem 0rem 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.hero-text {
    flex: 1;
    align-items: center;
    text-align: center;
    max-width: 750px;
    padding: 0 1rem 6rem;
}

.hero-highlight {
    color: #0ED9E4;
    text-decoration: underline;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-text h1 span {
    color: var(--accent-color);
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
}

.hero-tag {
    display: inline-flex;
    color: #EFB6FF;
    gap: 8px;
    border: 2px solid #EFB6FF85;
    align-items: center;
    border-radius: 40px;
    padding: 2px 8px;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-primary {
    background-color: var(--button-primary);
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    text-wrap: nowrap;
}

.hero-image {
    height: 350px;
    background-image:url(touching.jpg);
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        height: 250px;
    }

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

    .nav-links {
        display: none;
    }
}

.contract-section {
    background-color: #262639;
    color: var(--text-light);
    padding: 4rem 1rem;
    text-align: center;
    
    border-color: var(--accent-color);
}

.contract-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contract-box {
    background-color: white;
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contract-label {
    background-color: black;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
}

.contract-address {
    flex: 1;
    text-align: left;
    color: black;
    font-family: monospace;
    font-size: 1.1rem;
}

.contract-address input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: monospace;
    font-size: 1.1rem;
}

.copy-button {
    background-color: var(--button-primary);
    color: white;
    border: none;
    padding: 0.74rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.copy-button:hover {
    opacity: 0.9;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

.disclaimer a {
    color: var(--accent-color);
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contract-box {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .contract-address {
        text-align: center;
        word-break: break-all;
        width: 100%;
    }
}

.info-sections {
    background-color: var(--primary-color);
    padding: 6rem 0;
}

.info-section {
    color: var(--text-light);
    padding: 1rem;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 16px;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.info-text h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-weight: normal;
}

.info-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.info-image {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .info-text {
        text-align: center;
    }

    .info-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

.tokenomics-content {
    width: 100%;
}

.token-intro {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.token-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.token-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.token-features li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

#tokenomics .contract-box {
    margin: 4rem auto 0;
    max-width: 100%;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.mission-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.mission-list li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.join-cta {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 2rem;
    color: var(--accent-color);
}

#community .info-container {
    background: rgba(255, 255, 255, 0.03);
}

#community h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    opacity: 0.9;
}

.community-image {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.community-image img {
    max-width: 100%;
    min-width: 450px;
    height: auto;
}

.payment-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.payment-container {
    max-width: 800px;
    margin: 0 auto;
}

.payment-section h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
    font-weight: 800;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.payment-icon:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

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

.buy-button {
    display: inline-block;
    background-color: var(--button-primary);
    color: var(--text-light);
    padding: 1.5rem 4rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.buy-button:hover {
    transform: translateY(-2px);
    background-color: var(--accent-color);
}

.powered-by {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.pump {
    font-weight: bold;
    letter-spacing: 0.5px;
}

.payment-disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .payment-section h2 {
        font-size: 2.5rem;
    }

    .payment-methods {
        gap: 1rem;
    }

    .payment-icon {
        width: 60px;
        height: 60px;
    }

    .buy-button {
        padding: 1.2rem 3rem;
        font-size: 1.3rem;
    }

    .mission-list {
        text-align: left;
    }

    .token-features {
        text-align: left;
    }

    .community-image img {
        width: 100%;
        min-width: auto;
    }
}

.faq-section {
    background-color: #FFF;
    color: var(--primary-color);
    padding: 6rem 1rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--primary-color);
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 0 1.5rem 0;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: #ffd700;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-section h2 {
        font-size: 2.5rem;
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 1.2rem 0;
    }
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 1rem 2rem;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    align-items: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
}

.text-white {
    color: white;
}

.x-link {
    color: var(--text-light);
    transition: opacity 0.2s ease;
}

.x-link:hover {
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.warning {
    color: var(--accent-color);
    opacity: 1 !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-nav,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        margin-top: 1rem;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-nav {
        margin-top: 2rem;
    }
}

.scrolling-banner {
    background-color: #0C000F;
    border-top: 1px solid #EFB6FF;
    border-bottom: 1px solid #EFB6FF;
    overflow: hidden;
    padding: 1rem 0;
    position: relative;
}

.scrolling-banner.small {
    padding: 0.2rem 0;
}

.scroll-content {
    display: flex;
    width: fit-content;
    animation: scroll 60s linear infinite;
}

.scroll-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    white-space: nowrap;
    justify-content: space-between;
    text-align: center;;
}

.small .scroll-item {
    gap: 1rem;
    padding: 0 1.5rem;
}

.symbol-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.small .symbol-circle {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.banner-text {
    color: #EFB6FF;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

.small .banner-text {
    font-size: 0.75rem;
}

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

@media (max-width: 768px) {
    .symbol-circle {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .banner-text {
        font-size: 1.2rem;
    }

    .scroll-item {
        gap: 1rem;
        padding: 0 1rem;
    }
}