:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --primary-color: #ffd700; /* Gold/Yellow for neon glow */
    --secondary-color: #111;
    --header-font: 'Permanent Marker', cursive;
    --body-font: 'Fredoka', sans-serif;
    --accent-font: 'Caveat', cursive;
    --gradient-border: linear-gradient(145deg, var(--primary-color), #b8860b);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body-font);
    color: var(--text-color);
    text-align: center;
    overflow-x: hidden;
    background-color: #000;
    background-image: url('https://images.pexels.com/photos/956981/milky-way-starry-sky-night-sky-star-956981.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* --- NEW & UPGRADED ANIMATIONS --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); } /* Subtler float */
    100% { transform: translateY(0px); }
}

@keyframes neon-flicker {
    0%, 100% { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--primary-color), 0 0 20px var(--primary-color); }
    50% { text-shadow: 0 0 10px #fff, 0 0 20px var(--primary-color), 0 0 30px var(--primary-color), 0 0 40px var(--primary-color); }
}

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

@keyframes pulse-glow {
    0% { box-shadow: 0 0 15px var(--primary-color); }
    50% { box-shadow: 0 0 30px var(--primary-color), 0 0 10px var(--primary-color); }
    100% { box-shadow: 0 0 15px var(--primary-color); }
}

/* Upgraded Scroll Animation for more smoothness */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px) skewY(2deg);
    transform-origin: top left;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
}

/* --- General Styles --- */
.section, .card, .socials-banner {
    margin-top: 80px; padding: 20px; border-radius: 15px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(8px);
    border: 2px solid transparent;
    background: linear-gradient(rgba(17, 17, 17, 0.85), rgba(17, 17, 17, 0.85)) padding-box,
                var(--gradient-border) border-box;
}
.card{ margin-top: 20px; padding: 25px; }
.socials-banner { margin-top: 30px; }

.neon-text {
    font-family: var(--header-font); color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color), 0 0 20px #ffc400, 0 0 30px #ffc400;
}
.section-title { font-size: 3em; margin-bottom: 30px; }
.script-text { font-family: var(--accent-font); font-size: 1.8em; color: #fff; text-shadow: 0 0 5px #fff; }

/* --- Hero Section --- */
.hero .hero-main-icon {
    border-radius: 50%; border: 2px solid var(--primary-color); width: 120px; height: auto;
    animation: float 4s ease-in-out infinite; /* Floating animation */
}
.hero h1 { 
    font-size: 6em; margin: 10px 0; 
    animation: slideInDown 1s ease-out forwards, neon-flicker 2.5s infinite alternate ease-in-out; /* Combined animations */
}
.hero h2 { font-size: 2.5em; margin-top: -10px; animation: slideInDown 1.2s ease-out forwards; opacity: 0; animation-fill-mode: forwards; }
.hero p { font-size: 1.2em; max-width: 450px; margin: 20px auto; }

.buy-button {
    display: inline-block; color: #000; padding: 15px 40px; border-radius: 50px;
    text-decoration: none; font-size: 1.5em; font-weight: 600; font-family: var(--header-font);
    margin-top: 20px; border: none; transition: all 0.3s ease-out;
    animation: pulse-glow 2s infinite ease-in-out;
    background: linear-gradient(45deg, #ffd700, #f0c400);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
}
.buy-button:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 7px 25px rgba(255, 215, 0, 0.6);
    animation-play-state: paused;
}

.image-gallery { margin-top: 30px; display: flex; justify-content: center; align-items: center; gap: 20px; }
.image-gallery img { 
    width: 150px; height: auto; border: 3px solid var(--primary-color); 
    border-radius: 10px; box-shadow: 0 0 10px var(--primary-color); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: float 5s ease-in-out infinite; /* Floating animation */
}
.image-gallery img:nth-child(2){
    animation-delay: 0.4s; /* Make floating less uniform */
}
.image-gallery img:hover {
    transform: scale(1.08); box-shadow: 0 0 25px var(--primary-color);
    animation-play-state: paused; /* Stop floating on hover */
}

/* --- Live Info Section --- */
.live-info { margin-top: 50px; }
.live-info h3 { font-size: 3em; margin-bottom: 5px; }
.live-info p { font-family: var(--header-font); font-size: 1.5em; letter-spacing: 2px; color: #fff; margin-top: 0; }
.contract-address h4 { margin: 0; color: #aaa; font-weight: 400; font-size: 1em; text-align: left; }
.address-box { display: flex; justify-content: space-between; align-items: center; background-color: #000; border-radius: 10px; padding: 10px 15px; margin-top: 10px; border: 1px solid #333; }
.address-box code { font-size: 0.9em; word-break: break-all; text-align: left; }
.copy-btn { background: none; border: none; color: var(--primary-color); cursor: pointer; font-size: 1.2em; }
#dexscreener-embed{position:relative;width:100%;padding-bottom:125%;margin-top: 20px;}
#dexscreener-embed iframe{position:absolute;width:100%;height:100%;top:0;left:0;border:0; border-radius: 10px;}

/* --- Socials Banner --- */
.socials-banner { display: flex; justify-content: center; align-items: center; gap: 20px; }
.socials-banner a { color: var(--primary-color); text-decoration: none; font-family: var(--header-font); font-size: 1.2em; transition: color 0.3s ease, transform 0.3s ease; }
.socials-banner a:hover { color: #fff; transform: scale(1.1); }
.socials-banner i { margin-right: 8px; }

/* --- Tokenomics Section --- */
.tokenomics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.token-card { background-color: #000; padding: 20px; border-radius: 10px; border: 1px solid var(--primary-color); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.token-card:hover { transform: translateY(-8px); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3); border-color: #fff; }
.token-card h4 { margin: 0 0 10px 0; color: var(--primary-color); font-size: 1.2em; }
.token-card p { margin: 0; font-size: 1.1em; }

/* --- Roadmap Section --- */
.roadmap-timeline { position: relative; max-width: 100%; margin: 0 auto; }
.roadmap-timeline::after { content: ''; position: absolute; width: 4px; background-image: var(--gradient-border); top: 0; bottom: 0; left: 50%; margin-left: -2px; border-radius: 2px; }
.roadmap-item { padding: 10px 40px; position: relative; background-color: inherit; width: 50%; }
.roadmap-item.left { left: 0; }
.roadmap-item.right { left: 50%; }
.roadmap-item::after { 
    font-family: "Font Awesome 6 Free"; content: '\f135'; font-weight: 900;
    color: var(--primary-color); position: absolute; width: 30px; height: 30px; 
    right: -17px; background-color: #000; border: 4px solid var(--primary-color); 
    top: 15px; border-radius: 50%; z-index: 1; text-align: center; 
    line-height: 22px; font-size: 14px;
}
.roadmap-item.right::after { left: -17px; }
.roadmap-content { padding: 20px; background-color: #000; border-radius: 10px; }

/* --- Footer --- */
.site-footer {
    margin-top: 80px;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}
.footer-credits p {
    margin: 5px 0;
    font-size: 1.1em;
    color: #ccc; /* Lighter color for better visibility */
}
.footer-credits a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: text-shadow 0.3s ease;
}
.footer-credits a:hover {
    text-shadow: 0 0 8px var(--primary-color);
}
.footer-contact {
    margin: 30px 0;
}
.footer-contact h3 {
    font-family: var(--header-font);
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
}
.footer-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.footer-social-links a svg {
    width: 45px;
    height: 45px;
    fill: var(--primary-color);
    transition: all 0.3s ease;
}
.footer-social-links a:hover svg {
    fill: #fff;
    transform: scale(1.1);
}
.footer-disclaimer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}
.footer-disclaimer p {
    font-size: 0.9em;
    color: #aaa; /* Lighter color for better visibility */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.footer-disclaimer p strong {
    color: var(--primary-color);
}

/* --- Responsive Design for Mobile --- */
@media screen and (max-width: 768px) {
    .roadmap-timeline::after { left: 31px; }
    .roadmap-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .roadmap-item.left, .roadmap-item.right { left: 0%; }
    .roadmap-item::after, .roadmap-item.right::after { left: 15px; }
}