/* ============ Reset & Variables ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #9945FF;
    --secondary: #14F195;
    --accent: #FFD700;
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --red: #ff3b3b;
    --green: #14F195;
    --gradient: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ Animated Background ============ */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(153, 69, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(20, 241, 149, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: bgPulse 10s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* ============ Navigation ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.buy-btn {
    background: var(--gradient);
    color: var(--bg-dark);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(153, 69, 255, 0.4);
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(153, 69, 255, 0.6);
}

/* ============ Hero Section ============ */
.hero {
    min-height: 100vh;
    padding: 120px 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    margin-bottom: 40px;
}

.announcement-bar {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 10vw, 100px);
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 0 0 60px rgba(153, 69, 255, 0.5);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ============ Stream Container ============ */
.stream-wrapper {
    display: flex;
    gap: 0;
    max-width: 1100px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.stream-container {
    position: relative;
    flex: 1;
    background: #000;
    aspect-ratio: 16 / 9;
    max-height: 500px;
}

/* ============ Live Badge ============ */
.live-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.6);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 59, 59, 0.6); }
    50% { box-shadow: 0 0 35px rgba(255, 59, 59, 0.9); }
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* ============ Viewer Count ============ */
.viewer-count {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.eye-icon {
    width: 16px;
    height: 16px;
    color: var(--red);
}

/* ============ Quality Badge ============ */
.quality-badge {
    position: absolute;
    top: 16px;
    right: 110px;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary);
    z-index: 10;
}


/* ============ Video Wrapper ============ */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============ Audio Control Panel ============ */
.audio-panel {
    position: absolute;
    bottom: 70px;
    right: 16px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    z-index: 20;
    min-width: 160px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.audio-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent);
}

.panel-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    transition: all 0.2s;
}

.panel-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.audio-panel-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.audio-panel-content.collapsed {
    display: none;
}

.audio-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(153, 69, 255, 0.2);
    border: 1px solid rgba(153, 69, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.audio-btn:hover {
    background: rgba(153, 69, 255, 0.4);
    border-color: rgba(153, 69, 255, 0.6);
    transform: translateX(3px);
}

.audio-btn.playing {
    background: rgba(20, 241, 149, 0.3);
    border-color: rgba(20, 241, 149, 0.6);
    animation: audioPulse 1s ease-in-out infinite;
}

@keyframes audioPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(20, 241, 149, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(20, 241, 149, 0); }
}

.audio-btn.stop-btn {
    background: rgba(255, 59, 59, 0.2);
    border-color: rgba(255, 59, 59, 0.3);
}

.audio-btn.stop-btn:hover {
    background: rgba(255, 59, 59, 0.4);
    border-color: rgba(255, 59, 59, 0.6);
}

.audio-icon {
    font-size: 16px;
}

/* ============ Stream Controls ============ */
.stream-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    z-index: 10;
}

.control-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.control-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hidden {
    display: none !important;
}

.stream-title {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.streamer-name {
    font-weight: 700;
    font-size: 14px;
}

.stream-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ============ Live Chat ============ */
.chat-container {
    width: 320px;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 600;
    font-size: 14px;
}

.chat-viewers {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 400;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 350px;
}

.chat-message {
    display: flex;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
    animation: messageSlide 0.3s ease-out;
}

@keyframes messageSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-user {
    font-weight: 600;
    white-space: nowrap;
}

.chat-user.mod {
    color: var(--secondary);
}

.chat-user.vip {
    color: var(--primary);
}

.chat-user.sub {
    color: var(--accent);
}

.chat-text {
    color: var(--text-secondary);
    word-break: break-word;
}

.chat-input-area {
    display: flex;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
    color: var(--text-primary);
    font-size: 13px;
}

.chat-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-send {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.chat-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-send svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.chat-notice {
    padding: 10px 15px;
    background: rgba(153, 69, 255, 0.1);
    text-align: center;
    font-size: 12px;
    color: var(--primary);
}

/* ============ Stats Ticker ============ */
.stats-ticker {
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.ticker-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 20px 40px;
    animation: tickerGlow 3s ease-in-out infinite alternate;
}

@keyframes tickerGlow {
    0% { background: transparent; }
    100% { background: rgba(153, 69, 255, 0.03); }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-label {
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 2px;
    font-weight: 600;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
}

.price-up {
    color: var(--green);
}

.price-down {
    color: var(--red);
}

/* ============ About Section ============ */
.about-section {
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.about-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(153, 69, 255, 0.3);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* ============ Tokenomics Section ============ */
.tokenomics-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(153, 69, 255, 0.05) 50%, transparent 100%);
    position: relative;
    z-index: 1;
}

.tokenomics-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.token-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
}

.main-card {
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.2) 0%, rgba(20, 241, 149, 0.1) 100%);
    border-color: rgba(153, 69, 255, 0.3);
    min-width: 300px;
}

.token-symbol {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 3px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.token-supply {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 8px;
}

.token-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.token-note {
    font-size: 13px;
    color: var(--accent);
    font-style: italic;
}

.token-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.detail-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
}

.detail-percent {
    font-size: 32px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 8px;
}

.detail-check {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.detail-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--bg-card);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ca-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.contract-address code {
    font-family: monospace;
    font-size: 14px;
    color: var(--secondary);
    background: rgba(20, 241, 149, 0.1);
    padding: 8px 15px;
    border-radius: 6px;
}

.copy-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--text-secondary);
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.copy-btn:hover svg {
    fill: var(--text-primary);
}

/* ============ How to Buy Section ============ */
.howtobuy-section {
    padding: 100px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: rgba(153, 69, 255, 0.3);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: var(--bg-dark);
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

.large-btn {
    display: inline-block;
    padding: 18px 50px;
    font-size: 16px;
}

/* ============ Footer ============ */
.footer {
    padding: 60px 20px 30px;
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-text {
    font-size: 24px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
    transition: fill 0.3s;
}

.social-link:hover {
    background: var(--gradient);
}

.social-link:hover svg {
    fill: var(--bg-dark);
}

.footer-disclaimer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer p {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
    .stream-wrapper {
        flex-direction: column;
    }

    .chat-container {
        width: 100%;
        max-height: 300px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .chat-messages {
        max-height: 150px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 100px 20px 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .ticker-content {
        flex-wrap: wrap;
        gap: 30px;
    }

    .tokenomics-grid {
        flex-direction: column;
    }

    .token-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .stream-controls {
        flex-wrap: wrap;
    }

    .quality-badge {
        display: none;
    }
}

/* ============ Stream Info Banner ============ */
.stream-info-banner {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: rgba(153, 69, 255, 0.08);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.info-icon {
    font-size: 18px;
}

.info-item span:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stream-info-banner {
        flex-direction: column;
        gap: 12px;
        text-align: left;
    }

    .info-item {
        font-size: 12px;
    }
}

/* ============ Starting Soon Overlay ============ */
.starting-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.starting-soon-overlay.active {
    display: flex;
}

.starting-soon-content {
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.starting-soon-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    letter-spacing: 5px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(153, 69, 255, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(20, 241, 149, 0.5));
    }
}

.starting-soon-text {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.starting-soon-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.starting-soon-dots span {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    animation: dotPulse 1.4s ease-in-out infinite;
}

.starting-soon-dots span:nth-child(2) {
    animation-delay: 0.2s;
    background: var(--secondary);
}

.starting-soon-dots span:nth-child(3) {
    animation-delay: 0.4s;
    background: var(--accent);
}

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============ Scrollbar ============ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(153, 69, 255, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(153, 69, 255, 0.7);
}
