@font-face {
    font-family: New1;
    src: url(TitanOne-Regular.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: New1, sans-serif;
    background-color: #ffa600;
    color: black;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: black;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #548f3d;
}

.buy-now-btn {
    background: #ffa600;
    color: black;
    border: none;
    font-family: New1, sans-serif;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-now-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    line-height: 1;
    color: black;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: block;
    width: 50px;
    height: 50px;
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.social-link img {
    width: 40px;
    height: 40px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.section-separator {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.separator-img {
    width: 100%;
    height: 20px;
    display: block;
}

.section-separator svg {
    width: 100%;
    height: 20px;
    display: block;
}

.section-separator .elementor-shape-fill {
    fill: black;
}

.about {
    padding: 4rem 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: black;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.how-to-buy {
    padding: 4rem 0;
}

.buy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.buy-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: black;
}

.buy-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.buy-step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.buy-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.step-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.step-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: black;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.swap-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.swap-frame {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.swap-frame iframe {
    border-radius: 10px;
}

.swap-character {
    text-align: center;
}

.swap-character img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .buy-now-btn {
        display: none;
    }
    
    .hero-container,
    .about-container,
    .swap-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-title,
    .buy-title {
        font-size: 2rem;
    }
    
    .buy-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon img {
        width: 35px;
        height: 35px;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero,
    .about,
    .how-to-buy {
        padding: 2rem 0;
    }
    
    .hero {
        padding-top: 6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link img {
        width: 24px;
        height: 24px;
    }
    
    .buy-step {
        padding: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
}

.tokenomics {
    padding: 4rem 0;
}

.tokenomics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tokenomics-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: black;
}

.contract-address {
    text-align: center;
    margin-bottom: 3rem;
}

.contract-address p {
    font-size: 1rem;
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 25px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contract-address p:hover {
    background: rgba(255, 255, 255, 0.2);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.supply-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: black;
}

.supply-info p {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.info-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.info-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.tokenomics-character {
    text-align: center;
    position: relative;
}

.tokenomics-character img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: black;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.footer-social-link img {
    width: 40px;
    height: 40px;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .tokenomics-title {
        font-size: 2rem;
    }
    
    .supply-info h3 {
        font-size: 1.5rem;
    }
    
    .supply-info p {
        font-size: 1.2rem;
    }
    
    
    .footer-socials {
        flex-wrap: wrap;
        gap: 1rem;
    }
}