/* Home page extras — below-fold animations & scrollbars (async-loaded) */
.rounded-2xl {
    border-radius: 4px !important;
}

.visual-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.95));
    border-radius: 4px;
    border: 1px solid rgba(55, 65, 81, 0.5);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(218, 165, 32, 0.1), transparent 70%);
    pointer-events: none;
}

.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.svg-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    opacity: 0.6;
    animation: floatIcon 6s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(218, 165, 32, 0.3));
    transition: opacity 0.3s ease;
}

.svg-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.svg-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.logo-container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.logo-image {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0.9);
}

.logo-title {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
}

.logo-description {
    font-size: 1rem;
    color: #9ca3af;
    max-width: 500px;
    margin: 0 auto;
}

#newsFeedContent {
    scroll-behavior: smooth;
}

#newsFeedContent > div:hover {
    background-color: rgba(31, 41, 55, 0.5);
}

.tweets-feed-scroll::-webkit-scrollbar {
    width: 8px;
}

.tweets-feed-scroll::-webkit-scrollbar-track {
    background: #111827;
    margin: 8px 0;
}

.tweets-feed-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(218, 165, 32, 0.35) 0%, rgba(218, 165, 32, 0.6) 50%, rgba(218, 165, 32, 0.35) 100%);
    border-radius: 10px;
    border: 2px solid #111827;
}

.tweets-feed-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(218, 165, 32, 0.5) 0%, rgba(218, 165, 32, 0.85) 50%, rgba(218, 165, 32, 0.5) 100%);
}

.tweets-feed-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(218, 165, 32, 0.6) #111827;
}

@keyframes featured-badge-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.featured-badge-exclamation {
    animation: featured-badge-blink 1.2s ease-in-out infinite;
}

.coin-social-score-scroll {
    -webkit-overflow-scrolling: touch;
}
