@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Outfit:wght@400&display=swap');

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(#230000, #140202);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    animation: fade-in 0.5s ease-out; /* Faster fade-in */
    cursor: none;
}

/* Custom cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #e19146, #e7a86d);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Particle canvas */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Navigation menu */
.nav-menu {
    position: fixed;
    top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    z-index: 2;
}

.nav-menu a {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #000;
    background: linear-gradient(45deg, #e19146, #e7a86d);
    border-radius: 5px;
}

/* Page transition */
.page-transition {
    animation: page-fade-in 0.3s ease-out; /* Fast fade for page navigation */
}

@keyframes page-fade-in {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Main content */
main {
    text-align: center;
    padding: 4rem 2rem 2rem;
    max-width: 800px;
    width: 100%;
    z-index: 1;
}

/* Splash main */
.splash-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    z-index: 1;
}

#project-logo {
    width: 250px;
    height: auto;
    margin-bottom: 1.5rem;
    animation: logo-pulse 2s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.bounce {
    animation: bounce 1s infinite;
}

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

.splash-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.splash-button {
    padding: 0.5rem 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.yes {
    background: #fff;
    color: #000;
    text-decoration: none;
}

.yes:hover {
    background: #ddd;
}

.no {
    background: #333;
    color: #fff;
    border: none;
}

.no:hover {
    background: #555;
}

.no-message {
    margin-top: 1rem;
    font-size: 1.2rem;
    display: none;
}

.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scale(0);
    z-index: 1000;
    pointer-events: none;
    transition: transform 0.5s ease-out;
}

.transition-overlay.active {
    transform: scale(5);
}

/* Hero section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

h1 {
    font-family: 'Bungee', sans-serif;
    font-weight: 400; /* Regular weight */
    font-size: 5.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(#e19146, #e7a86d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Time display */
.time-display-container {
    width: 100%;
    overflow: hidden;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.time-display {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    opacity: 0.7;
    display: inline-flex;
    gap: 0.5rem;
    white-space: nowrap;
    animation: slide-left 45s linear infinite;
}

.time-display:hover {
    animation-play-state: paused;
}

.time-display p {
    white-space: nowrap;
}

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

/* Content for Tokenomics/Roadmap */
.content {
    margin: 2rem 0;
    text-align: left;
}

.content h2 {
    font-family: 'Bungee', sans-serif;
    font-weight: 400; /* Regular weight */
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
    background: linear-gradient(#e19146, #e7a86d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slide-in 1s ease-out;
}

.content p {
    font-size: 1rem;
    animation: slide-in 1s ease-out 0.2s;
}

.content ul li {
    animation: slide-in 1s ease-out 0.4s;
}

@keyframes slide-in {
    0% { transform: translateX(-20%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Tokenomics chart */
#tokenomics-chart {
    max-width: 300px;
    margin: 1rem auto;
}

/* Coin address */
.coin-address {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

#coin-address {
    font-size: 1.1rem;
    background: #fff;
    color: #000;
    padding: 0.5rem 1rem;
    border: 1px solid #fff;
    display: inline-block;
    word-break: break-all;
    max-width: 90%;
    font-family: 'Courier New', Courier, monospace;
}

button {
    padding: 0.5rem 1.5rem;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s;
}

button:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}

/* Evolution image */
.evolution-image {
    margin: 1.5rem 0;
}

#evolution-img {
    max-width: 300px;
    height: auto;
    cursor: pointer;
    animation: pump 1.5s ease-in-out infinite;
    transition: opacity 0.15s ease, transform 0.3s ease;
}

#evolution-img:hover {
    transform: scale(1.1);
}

#evolution-img.fade {
    opacity: 0;
}

@keyframes pump {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Social links */
.social-links-container {
    width: 100%;
    overflow: hidden;
}

.social-links {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.social-icon {
    width: 48px;
    height: 48px;
    filter: grayscale(100%);
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Buy button */
.buy-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(45deg, #e19146, #e7a86d);
    color: #333333;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.buy-button:hover {
    background: linear-gradient(45deg, #e7a86d, #e19146);
    transform: scale(1.1);
}

/* Footer */
footer {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    h1 {
        font-size: 3.5rem;
    }

    p {
        font-size: 1rem;
    }

    .time-display {
        font-family: 'Courier New', Courier, monospace;
        font-size: 0.6rem;
        animation: slide-left 45s linear infinite;
    }

    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        padding: 0.3rem;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 0.3rem 0.8nav-menu a {
        font-size: 1rem;
        padding: 0.3rem 0.8rem;
    }

    #coin-address {
        font-size: 0.9rem;
        max-width: 100%;
    }

    button, .buy-button {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    #evolution-img {
        max-width: 200px;
    }

    .content h2 {
        font-size: 1.2rem;
    }

    .content p, .content ul {
        font-size: 0.9rem;
    }

    footer {
        font-family: 'Courier New', Courier, monospace;
        font-size: 0.7rem;
    }

    #tokenomics-chart {
        max-width: 200px;
        height: 200px;
    }

    .splash-main h1 {
        font-size: 3rem;
    }

    .splash-button {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }

    .custom-cursor {
        width: 15px;
        height: 15px;
    }

    #project-logo {
        width: 150px;
    }
}