/* Announcement banner */
.announcement-banner {
    background: linear-gradient(90deg, var(--success-color), #20c05a);
    color: white;
    padding: 12px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.95em;
    font-weight: 500;
}

.announcement-banner a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

.announcement-banner a:visited {
    color: white;
}

.announcement-banner a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.announcement-dismiss {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    font-size: 1.1em;
    padding: 0 4px;
    margin-left: auto;
    line-height: 1;
}

.announcement-dismiss:hover {
    color: white;
}

/* Hero: DJ/streamer pitch */
.hero-software {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.85);
    margin: 12px 0 6px;
    letter-spacing: 0.01em;
}


.hero-integrations {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}

.hero-platforms {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-color);
    font-weight: bold;
    padding: 12px 28px;
    font-size: 1em;
}

.btn-hero-primary:visited {
    color: var(--primary-color);
}

.btn-hero-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-hover);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    padding: 12px 28px;
    font-size: 1em;
}

.btn-hero-secondary:visited {
    color: white;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
}

/* Social proof section */
.social-proof-section .stat-bar {
    margin-bottom: 20px;
}

.social-proof-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.social-proof-header h2 {
    margin: 0;
    font-size: 1.1em;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-proof-links {
    display: flex;
    gap: 16px;
    font-size: 0.9em;
}

@media (max-width: 600px) {
    .announcement-banner {
        font-size: 0.88em;
        text-align: left;
    }

    .social-proof-header {
        flex-direction: column;
        gap: 6px;
    }
}
