/* আপনার দেওয়া সম্পূর্ণ CSS কোড এখানে থাকবে */
:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --primary-color: #8A2BE2; /* Blue-Violet / Purple */
    --secondary-color: #00FFFF; /* Cyan */
    --header-font: 'Orbitron', sans-serif;
    --body-font: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    text-align: center;
    overflow-x: hidden;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
    height: 100vh;
}

/* --- High-Performance CSS Starfield Background --- */
@keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
.stars, .twinkling {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    height:100%;
    display:block;
    z-index: 0;
}
.stars {
    background:#000 url(https://www.script-tutorials.com/demos/360/images/stars.png) repeat top center;
}
.twinkling{
    background:transparent url(https://www.script-tutorials.com/demos/360/images/twinkling.png) repeat top center;
    animation:move-twink-back 200s linear infinite;
}

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

/* --- Animations & Effects --- */
@keyframes slideInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    /* IMPROVEMENT: Added will-change for better performance and smoother animation */
    will-change: opacity, transform;
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- General Styles --- */
.section {
    margin-top: 60px;
    padding: 30px;
    background-color: rgba(10, 10, 20, 0.8);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.neon-title {
    font-family: var(--header-font);
    color: var(--text-color);
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
    animation: neon-pulse 3s infinite alternate;
}

.sub-heading {
    font-family: var(--header-font);
    font-size: 1.8em;
    color: var(--secondary-color);
    text-shadow: 0 0 8px var(--secondary-color);
    margin-top: -10px;
}

p { line-height: 1.6; font-size: 1.1em; }

/* --- Hero Section --- */
.hero { padding-top: 50px; }
.hero img {
    width: 150px;
    height: auto;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    margin-bottom: 20px;
    animation: slideInUp 1s ease-out forwards;
}
.hero h1 { font-size: 5em; margin: 10px 0; animation: slideInUp 1.2s ease-out forwards; opacity: 0; animation-fill-mode: forwards; }
.hero h2 { font-size: 2.2em; margin-top: -10px; animation: slideInUp 1.4s ease-out forwards; opacity: 0; animation-fill-mode: forwards; }

.buy-button {
    display: inline-block;
    background-color: var(--secondary-color);
    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: 30px;
    border: none;
    box-shadow: 0 0 15px var(--secondary-color);
    /* IMPROVEMENT: Smoother transition timing */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.3s ease;
}
.buy-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 25px var(--secondary-color), 0 0 10px var(--secondary-color);
    background-color: #00e6e6; /* Lighter cyan */
}

/* --- Live Info Section --- */
.live-info { margin-top: 80px; }
.card { 
    background-color: rgba(5, 5, 15, 0.7); 
    border: 1px solid var(--secondary-color); 
    border-radius: 12px; 
    padding: 20px; 
    margin-top: 25px; 
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2); 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.contract-address h4 { margin: 0; color: #aaa; font-weight: 400; font-size: 0.9em; text-align: left; }
.address-box { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background-color: rgba(0,0,0,0.5); 
    border-radius: 8px; 
    padding: 10px 15px; 
    margin-top: 10px; 
    border: 1px solid #333; 
}
.address-box code { 
    font-size: 0.85em; 
    word-break: break-all; 
    text-align: left; 
    color: var(--secondary-color);
    text-shadow: 0 0 5px var(--secondary-color);
}
.copy-btn { background: none; border: none; color: var(--secondary-color); cursor: pointer; font-size: 1.2em; transition: color 0.3s, transform 0.2s;}
.copy-btn:hover { color: var(--primary-color); transform: scale(1.1); }
.copy-btn:active { transform: scale(0.9); } /* Added click effect */

#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;}

/* --- Tokenomics Section --- */
.tokenomics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; }
.token-card { 
    background-color: rgba(0, 0, 0, 0.6); 
    padding: 20px; 
    border-radius: 10px; 
    border: 1px solid var(--secondary-color); 
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
    /* IMPROVEMENT: Smoother transition timing */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.token-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.5), 0 0 15px rgba(0, 255, 255, 0.3); 
}
.token-card h4 { margin: 0 0 10px 0; color: var(--primary-color); font-size: 1.3em; font-family: var(--header-font); text-shadow: 0 0 5px var(--primary-color); }
.token-card p { margin: 0; font-size: 1.1em; color: #ccc; }

/* --- How to Buy Section --- */
.how-to-buy-steps { margin-top: 30px; text-align: left; }
.how-to-buy-steps h3 { color: var(--secondary-color); font-family: var(--header-font); text-shadow: 0 0 8px var(--secondary-color); margin-bottom: 20px;}
.step-item { 
    display: flex; 
    align-items: flex-start; 
    margin-bottom: 25px; 
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    /* IMPROVEMENT: Smoother transition timing */
    transition: border-left-color 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.step-item:hover {
    border-left-color: var(--secondary-color);
    transform: translateX(5px);
}
.step-number { 
    background-color: var(--primary-color); 
    color: #fff; 
    border-radius: 50%; 
    width: 35px; 
    height: 35px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-family: var(--header-font); 
    font-size: 1.4em; 
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--primary-color);
}
.step-content { flex-grow: 1; }
.step-content h4 { margin: 0 0 5px 0; color: var(--secondary-color); font-family: var(--header-font); font-size: 1.2em; }
.step-content p { margin: 0; color: #eee; font-size: 1em;}
.step-content a { color: var(--secondary-color); text-decoration: none; transition: color 0.3s;}
.step-content a:hover { color: var(--primary-color); text-decoration: underline;}

/* --- Roadmap Section --- */
.roadmap-timeline { position: relative; max-width: 100%; margin: 0 auto; padding-bottom: 20px; }
.roadmap-timeline::after { content: ''; position: absolute; width: 4px; background-color: var(--primary-color); top: 0; bottom: 0; left: 50%; margin-left: -2px; border-radius: 2px; }
.roadmap-item { padding: 10px 40px; position: relative; background-color: inherit; width: 50%; box-sizing: border-box; }
.roadmap-item.left { left: 0; }
.roadmap-item.right { left: 50%; }
.roadmap-item::after { 
    content: '✨'; position: absolute; width: 30px; height: 30px; 
    background-color: var(--bg-color); border: 4px solid var(--secondary-color); 
    top: 15px; border-radius: 50%; z-index: 1; text-align: center; 
    line-height: 22px; font-size: 1.2em;
    box-shadow: 0 0 10px var(--secondary-color);
}
.roadmap-item.left::after { right: -19px; }
.roadmap-item.right::after { left: -19px; }
.roadmap-content { 
    padding: 20px; background-color: rgba(5, 5, 15, 0.7); 
    border-radius: 10px; border: 1px solid var(--secondary-color);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
    /* IMPROVEMENT: Smoother transition timing */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    text-align: left;
}
.roadmap-item:hover .roadmap-content {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    transform: scale(1.03);
}
.roadmap-content h3 { color: var(--primary-color); font-family: var(--header-font); margin-top: 0; font-size: 1.5em;}
.roadmap-content p { color: #ccc; font-size: 1em;}

/* --- Socials Banner --- */
.socials-banner { 
    margin-top: 60px; padding: 25px; background-color: rgba(10, 10, 20, 0.8); 
    border: 2px solid var(--primary-color); border-radius: 15px; 
    display: flex; justify-content: center; align-items: center; 
    gap: 25px; backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.3);
}
.socials-banner a { 
    color: var(--secondary-color); text-decoration: none; 
    font-family: var(--header-font); font-size: 1.4em; 
    transition: color 0.3s ease, transform 0.3s ease;
}
.socials-banner a:hover { color: var(--primary-color); transform: scale(1.1); }
.socials-banner i { margin-right: 8px; }

/* --- Footer --- */
.site-footer {
    margin-top: 80px;
    padding: 40px 20px;
    color: #999;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
}
.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-disclaimer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}
.footer-disclaimer p {
    font-size: 0.9em;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 { font-size: 3.5em; }
    .hero h2 { font-size: 1.8em; }
    .neon-title { font-size: 2.5em; }
    .sub-heading { font-size: 1.4em; }
    .tokenomics-grid { grid-template-columns: 1fr; }
    .roadmap-timeline::after { left: 20px; }
    .roadmap-item { width: 100%; padding-left: 50px; }
    .roadmap-item.right { left: 0; }
    .roadmap-item.left::after, .roadmap-item.right::after { left: 10px; }
    .socials-banner { flex-direction: column; gap: 15px; }
}
