* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink: #ff6bb5;
    --purple: #a855f7;
    --yellow: #facc15;
    --green: #4ade80;
    --dark: #141418;
    --darker: #0e0e12;
    --card-bg: #1c1c22;
}

body {
    font-family: 'Oswald', sans-serif;
    background: var(--dark);
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Floating music notes */
.bg-notes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.note {
    position: absolute;
    font-size: 2rem;
    opacity: 0.06;
    animation: floatNote linear infinite;
}

.note:nth-child(1) { left: 5%; font-size: 2.5rem; animation-duration: 12s; animation-delay: 0s; color: var(--pink); }
.note:nth-child(2) { left: 15%; font-size: 1.8rem; animation-duration: 15s; animation-delay: 2s; color: var(--yellow); }
.note:nth-child(3) { left: 30%; font-size: 3rem; animation-duration: 10s; animation-delay: 4s; color: var(--green); }
.note:nth-child(4) { left: 50%; font-size: 2rem; animation-duration: 14s; animation-delay: 1s; color: var(--purple); }
.note:nth-child(5) { left: 65%; font-size: 2.2rem; animation-duration: 11s; animation-delay: 3s; color: var(--pink); }
.note:nth-child(6) { left: 78%; font-size: 1.5rem; animation-duration: 16s; animation-delay: 5s; color: var(--yellow); }
.note:nth-child(7) { left: 88%; font-size: 2.8rem; animation-duration: 13s; animation-delay: 0.5s; color: var(--green); }
.note:nth-child(8) { left: 95%; font-size: 2rem; animation-duration: 12s; animation-delay: 6s; color: var(--purple); }

@keyframes floatNote {
    0% { transform: translateY(110vh) rotate(0deg); }
    100% { transform: translateY(-10vh) rotate(360deg); }
}

/* Hero */
.hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 20px 60px;
    background: radial-gradient(ellipse at center top, rgba(168, 85, 247, 0.15) 0%, transparent 60%);
    overflow: visible;
}

.title {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(3rem, 10vw, 8rem);
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    white-space: normal;
    overflow: visible;
    max-width: 100%;
    display: inline-block;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.bounce {
    animation: bounce 2s ease-in-out infinite;
}

.bounce {
    animation: bounce 2s ease-in-out infinite;
}

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

.subtitle {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.tagline {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 40px;
}

.hero-image {
    max-width: 700px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--purple);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}

.hero-image img {
    width: 100%;
    display: block;
}

.ca-box {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    width: min(100%, 820px);
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(22, 12, 44, 0.9), rgba(40, 16, 64, 0.8));
    border: 1px solid rgba(138, 78, 255, 0.75);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: 0 0 30px rgba(138, 78, 255, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.ca-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 36px rgba(138, 78, 255, 0.7);
}

.ca-label {
    font-weight: 800;
    color: #ff5acf;
    font-size: 1.05rem;
    text-shadow: 0 0 8px rgba(255, 90, 207, 0.7);
    letter-spacing: 1px;
}

.ca-address {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fcff68;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 0 12px rgba(252, 255, 104, 0.75);
    flex: 1;
    margin: 0 14px;
    min-width: 0;
}

.copy-btn {
    min-width: 100px;
    padding: 10px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff78b3, #8f57ff);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 14px rgba(255, 78, 200, 0.35);
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 78, 200, 0.55);
}


.copy-btn {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 2px 10px rgba(168, 85, 247, 0.3);
}

.copy-btn:hover {
    background: linear-gradient(135deg, var(--pink), var(--yellow));
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 107, 181, 0.5);
}

.hero-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

/* Sections */
.section {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
}

.section h2 {
    font-family: 'Dela Gothic One', cursive;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--yellow), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* About */
.about {
    background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.05), transparent);
}

.about p {
    max-width: 700px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
}

/* Videos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.video-item {
    background: transparent;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-item video {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #222;
    transition: border-color 0.3s;
}

.video-item:hover video {
    border-color: var(--pink);
}

.tiktok-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--pink);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.tiktok-link:hover {
    color: var(--purple);
}

/* Tokenomics */
.tokenomics {
    background: linear-gradient(180deg, transparent, rgba(250, 204, 21, 0.05), transparent);
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.token-card {
    background: var(--card-bg);
    border: 1px solid #222;
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.token-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.token-card h3 {
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.8rem;
    color: var(--yellow);
    margin-bottom: 8px;
}

.token-card p {
    color: #888;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.token-motto {
    text-align: center;
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.3rem;
    color: var(--pink);
}

/* How to Buy */
.how-to-buy {
    background: linear-gradient(180deg, transparent, rgba(74, 222, 128, 0.05), transparent);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 20px;
}

.step {
    background: var(--card-bg);
    border: 1px solid #222;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.step:hover {
    border-color: var(--green);
    transform: translateY(-5px);
}

.step-num {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-family: 'Dela Gothic One', cursive;
    font-size: 1.2rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--green);
}

.step p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid #1a1a1a;
    padding: 40px 20px;
    text-align: center;
}

.footer-ca {
    margin-bottom: 20px;
    color: #555;
    font-size: 0.75rem;
    word-break: break-all;
}

.footer-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--purple);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--pink);
}

.copy {
    color: #444;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .ca-address {
        margin: 0;
    }

    .hero {
        padding: 40px 15px 30px;
    }

    .title {
        font-size: clamp(2.2rem, 10vw, 5rem);
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: clamp(1rem, 4vw, 1.5rem);
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 1rem;
    }

    .ca-box {
        padding: 12px 16px;
        gap: 8px;
        text-align: center;
    }

    .ca-address {
        font-size: 0.9rem;
        text-align: center;
    }

    .ca-label {
        font-size: 1rem;
    }

    .copy-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .hero-links {
        margin-top: 20px;
    }

    .hero-links .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .section {
        padding: 40px 0;
    }

    .videos h2 {
        font-size: 1.5rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .video-item video {
        height: 320px;
        border-radius: 10px;
        border: 1px solid #222;
    }

    .token-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .token-card {
        padding: 20px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step {
        padding: 20px;
    }

    .footer {
        padding: 30px 0;
        text-align: center;
    }

    .footer-links {
        margin-bottom: 15px;
    }

    .footer-links a {
        display: block;
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .bg-notes .note {
        font-size: 1.5rem;
    }

    .hero {
        padding: 30px 10px 20px;
    }

    .title {
        font-size: clamp(2rem, 10vw, 4rem);
        line-height: 1.1;
        white-space: normal;
        overflow: visible;
    }

    .hero-image {
        margin-bottom: 20px;
        border: none;
        box-shadow: none;
    }

    .ca-box {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
        gap: 8px;
        background: rgba(28, 14, 52, 0.92);
        border: 1px solid rgba(162, 112, 255, 0.85);
        padding: 11px 12px;
        border-radius: 14px;
    }

    .ca-label {
        font-size: 0.95rem;
        color: #ff54a3;
    }

    .ca-address {
        font-size: 0.83rem;
        color: #ffea6b;
        text-shadow: 0 0 9px rgba(255, 234, 107, 0.75);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .copy-btn {
        min-width: 86px;
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    .hero-image img {
        max-width: 100%;
        border-radius: 12px;
    }

    .ca-address {
        font-size: 0.8rem;
    }

    .video-grid {
        gap: 10px;
    }

    .video-item {
        border-radius: 8px;
    }

    .video-item video {
        height: 350px;
        border-radius: 8px;
        border: 1px solid #222;
    }

    .step-num {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
