:root {
    --bg-color: #000000;
    --primary-yellow: #FEEA00;
    --hot-pink: #FF007F;
    --bright-green: #00FF00;
    --font-header: 'Luckiest Guy', cursive;
    --font-body: 'Comic Sans MS', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: #fff;
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
}

#cursor-glow {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bright-green);
    filter: blur(15px);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    z-index: 9999;
}

.ticker {
    background: var(--primary-yellow);
    color: var(--bg-color);
    padding: 5px 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 0;
    z-index: 1001;
}

.ticker-text {
    display: inline-block;
    font-family: var(--font-header);
    font-size: 1.2rem;
    animation: ticker-scroll 15s linear infinite;
}

@keyframes ticker-scroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

header {
    position: fixed;
    width: 100%;
    top: 35px; /* Height of ticker */
    padding: 15px 5%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* === UNDERLINE REMOVED FROM HERE === */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none; /* यह लाइन अंडरलाइन को हटाती है */
}

.logo img {
    width: 50px;
    animation: spin 5s linear infinite;
}

.logo span {
    font-family: var(--font-header);
    font-size: 2rem;
    color: var(--primary-yellow);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--bright-green);
    text-shadow: 0 0 10px var(--bright-green);
}

.copy-btn {
    background: var(--hot-pink);
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    font-family: var(--font-header);
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    box-shadow: 4px 4px 0 #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.copy-btn:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 #fff;
}

.copy-btn .tooltip {
    visibility: hidden;
    background-color: var(--bright-green);
    color: var(--bg-color);
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.copy-btn.copied .tooltip {
    visibility: visible;
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px 20px 50px;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDEwMCAxMDAiPgo8cmVjdCB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0iIzAwMDAwMCI+PC9yZWN0Pgo8Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIyIiBmaWxsPSIjRkVFQTAwIj48L2NpcmNsZT4KPGNpcmNsZSBjeD0iODUiIGN5PSI0MCIgcj0iMiIgZmlsbD0iI0ZFRUEwMCI+PC9jaXJjbGU+CjxjaXJjbGUgY3g9IjQwIiBjeT0iNzUiIHI9IjIiIGZpbGw9IiNGRUVBMDAiPjwvY2lyY2xlPgo8L3N2Zz4=');
}

.hero-content h1 {
    font-family: var(--font-header);
    font-size: 5rem;
    color: var(--primary-yellow);
    text-shadow: 4px 4px 0 var(--hot-pink);
}

.hero-content p {
    font-size: 1.5rem;
    margin: 20px 0 40px;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    margin: 10px;
    font-family: var(--font-header);
    font-size: 1.5rem;
    border: 3px solid #fff;
    box-shadow: 5px 5px 0 #fff;
    transition: all 0.2s ease-in-out;
}
.btn:hover {
    transform: translate(5px, 5px);
    box-shadow: 0 0 0 #fff;
}
.btn-buy {
    background: var(--bright-green);
    color: var(--bg-color);
}
.btn-telegram {
    background: var(--hot-pink);
    color: #fff;
}

.hero-gif {
    margin-top: 40px;
    max-width: 300px;
    border-radius: 15px;
    border: 5px solid var(--primary-yellow);
}

.glitch {
    position: relative;
    animation: glitch-anim 2.5s infinite;
}

@keyframes glitch-anim {
  0% { transform: translate(0); }
  20% { transform: translate(-5px, 5px); }
  40% { transform: translate(-5px, -5px); }
  60% { transform: translate(5px, 5px); }
  80% { transform: translate(5px, -5px); }
  100% { transform: translate(0); }
}

/* Sections */
.section-title {
    font-family: var(--font-header);
    font-size: 3.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.about-section, .community-section {
    padding: 100px 5%;
    text-align: center;
}
.about-section p, .community-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 1.6;
}
.about-section .section-title {
    color: var(--bright-green);
}
.tokenomics-section {
    padding: 100px 5%;
    background: var(--primary-yellow);
    color: var(--bg-color);
    text-align: center;
}
.tokenomics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.token-item {
    background: #fff;
    padding: 20px;
    border: 4px solid var(--bg-color);
}
.token-item h3 {
    font-family: var(--font-header);
    font-size: 1.8rem;
}
.total-supply {
    margin-top: 40px;
    font-size: 1.5rem;
    font-weight: bold;
}
.roadmap-section {
    padding: 100px 5%;
    background-image: url('assets/bg.jpg');
    background-size: cover;
    background-position: center;
}
.roadmap-section .section-title {
    color: var(--hot-pink);
}
.roadmap-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.phase {
    background: rgba(255, 255, 255, 0.9);
    color: var(--bg-color);
    padding: 25px;
    border: 3px dashed var(--hot-pink);
    max-width: 300px;
    flex-grow: 1;
}
.phase h3 {
    font-family: var(--font-header);
    font-size: 2rem;
}

.community-section .section-title {
    color: var(--primary-yellow);
}
.social-links {
    margin-top: 30px;
}
.social-btn {
    display: inline-block;
    padding: 20px 40px;
    font-size: 2rem;
    margin: 10px;
    text-decoration: none;
    font-family: var(--font-header);
    border: 4px solid #fff;
    color: #fff;
    transition: transform 0.2s;
}
.social-btn:hover {
    transform: scale(1.1) rotate(-5deg);
}
.social-btn.telegram { background-color: #2AABEE; }
.social-btn.twitter { background-color: #1DA1F2; }

/* Footer */
footer {
    padding: 40px;
    text-align: center;
    background: #111;
}
.disclaimer {
    color: var(--hot-pink);
    font-weight: bold;
    font-size: 1.1rem;
}
.contract-address {
    margin: 15px 0;
    word-break: break-all;
}

/* Mobile Friendly */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .roadmap-content {
        flex-direction: column;
        align-items: center;
    }
}