/* ============================================================
   EVOLUTION (moban-20) WordPress Theme - Main Stylesheet
   配色: 背景:#000→#111，卡片:#0a0a0a，边框:#222，强调:玫瑰金#B76E79，白:#f5f5f5
   ============================================================ */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-primary: #000000;
    --bg-secondary: #111111;
    --bg-card: #0a0a0a;
    --border-color: #222222;
    --accent: #B76E79;
    --accent-light: #d4939c;
    --text-primary: #f5f5f5;
    --text-secondary: #888888;
    --text-muted: #555555;
    --transition: all 0.4s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-light); }

img { max-width: 100%; height: auto; display: block; }

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

/* === Header === */
.site-header {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img { max-height: 50px; }

.header-time {
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 1px;
}

.header-btn-group { display: flex; gap: 10px; align-items: center; }

.btn-login, .btn-register, .btn-demo {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}

.btn-login:hover, .btn-demo:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-register {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

.btn-register:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    color: #000;
}

/* === Navigation === */
.main-navigation {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 0;
}

.nav-item { position: relative; }

.nav-link {
    display: block;
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link:focus {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: rgba(183, 110, 121, 0.05);
}

.nav-link i { margin-right: 6px; font-size: 11px; }

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    padding: 12px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

/* Sub-menu */
.nav-item.has-dropdown { position: relative; }
.nav-item.has-dropdown > .nav-link::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 9px;
    margin-left: 6px;
    transition: var(--transition);
}

.sub-menu, .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-item.has-dropdown:hover .sub-menu,
.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a, .nav-dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(34, 34, 34, 0.5);
    transition: var(--transition);
}

.sub-menu li a:hover, .nav-dropdown li a:hover {
    color: var(--accent);
    background: rgba(183, 110, 121, 0.05);
    padding-left: 25px;
}

/* === Notification Bar === */
.notification-bar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    overflow: hidden;
}

.notification-content {
    display: flex;
    gap: 50px;
    animation: scrollNotification 30s linear infinite;
    white-space: nowrap;
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 0.5px;
}

@keyframes scrollNotification {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* === Hero Alt Section (全屏交替布局) === */
.hero-alt-section {
    background: var(--bg-primary);
}

.alt-section {
    min-height: 400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.alt-section.reverse { direction: rtl; }
.alt-section.reverse > * { direction: ltr; }

.alt-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.alt-text h2 {
    font-size: 36px;
    color: var(--accent);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.alt-text p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.alt-image {
    overflow: hidden;
    position: relative;
}

.alt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    transition: transform 0.8s ease;
}

.alt-section.reverse .alt-image img {
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

.alt-image:hover img { transform: scale(1.05); }

/* Buttons */
.btn-rose {
    display: inline-block;
    padding: 14px 40px;
    background: var(--accent);
    color: #000;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-rose:hover {
    background: var(--accent-light);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.3);
}

.btn-rose-outline {
    display: inline-block;
    padding: 12px 35px;
    background: transparent;
    color: var(--accent);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: var(--transition);
}

.btn-rose-outline:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-2px);
}

/* === Rose Divider (玫瑰金线条) === */
.rose-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 0;
}

/* === Script Text (手写体装饰) === */
.script-text {
    font-style: italic;
    color: var(--accent);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

/* === Banner Carousel === */
.banner-carousel {
    padding: 40px 0;
    background: var(--bg-primary);
}

.bannerSwiper { border-radius: 0; overflow: hidden; }

.bannerSwiper .swiper-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 0;
}

.bannerSwiper .swiper-button-next,
.bannerSwiper .swiper-button-prev {
    color: var(--accent);
    background: rgba(0, 0, 0, 0.6);
    width: 44px;
    height: 44px;
    border-radius: 0;
    border: 1px solid var(--accent);
}

.bannerSwiper .swiper-button-next::after,
.bannerSwiper .swiper-button-prev::after { font-size: 14px; }

.bannerSwiper .swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.6;
}

.bannerSwiper .swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
}

/* === Features Alt Section === */
.features-alt-section {
    background: var(--bg-primary);
}

/* === Category Entries (玫瑰金分类入口) === */
.category-entries {
    padding: 60px 0;
    background: var(--bg-primary);
}

.section-header-minimal {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-rose {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-top: 10px;
}

.minimal-entry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 0;
}

.minimal-card {
    padding: 40px 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 0;
    transition: all 0.5s;
    background: var(--bg-card);
    display: block;
    text-decoration: none;
}

.minimal-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(183, 110, 121, 0.1);
}

.minimal-card i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.minimal-card h3 {
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.minimal-card p { margin: 0; }

/* === Poster Gallery === */
.poster-gallery {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.poster-item {
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.poster-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.poster-item:hover img { transform: scale(1.1); }

.poster-item:hover { border-color: var(--accent); }

/* === Download APP Section === */
.download-app-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.download-app-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-app-text h2 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--accent);
    margin: 15px 0 20px;
}

.download-app-text p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-download-app {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
}

.btn-download-app i { font-size: 22px; color: var(--accent); }

.btn-download-app:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.download-app-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

/* === Breadcrumb === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }

/* === Content Area === */
.content-area {
    display: flex;
    gap: 30px;
    padding: 30px 0;
}

.main-content { flex: 1; min-width: 0; }

/* === Article Grid === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.article-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.article-card-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-card-thumb img { transform: scale(1.05); }

.article-card-title {
    padding: 15px 15px 8px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.article-card-title a { color: var(--text-primary); }
.article-card-title a:hover { color: var(--accent); }

.article-card-meta {
    display: flex;
    gap: 15px;
    padding: 0 15px 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.article-card-meta i { margin-right: 4px; color: var(--accent); }

.article-card-excerpt {
    padding: 0 15px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.article-card-more {
    display: inline-block;
    padding: 12px 15px;
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.article-card-more:hover { color: var(--accent-light); }
.article-card-more i { margin-left: 5px; font-size: 10px; }

/* === Category Page === */
.category-header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.category-title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--accent);
}

.category-title i { margin-right: 10px; }

.category-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 10px;
}

/* Provider Tabs */
.provider-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.provider-tab {
    padding: 8px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.provider-tab:hover, .provider-tab.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(183, 110, 121, 0.05);
}

/* === Single Article === */
.single-article {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    margin-bottom: 30px;
}

.article-header { margin-bottom: 25px; }

.article-title {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.article-meta i { margin-right: 5px; color: var(--accent); }

.article-featured-img {
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.article-featured-img img { width: 100%; height: auto; }

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-content h2, .article-content h3 {
    color: var(--text-primary);
    margin: 25px 0 15px;
}

.article-content p { margin-bottom: 15px; }

.article-content img { margin: 20px 0; border: 1px solid var(--border-color); }

.article-content a { color: var(--accent); text-decoration: underline; }

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 25px;
}

.article-tags i { color: var(--accent); }

.article-tags span {
    padding: 4px 12px;
    background: rgba(183, 110, 121, 0.1);
    border: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--accent);
}

/* Article Nav */
.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
}

.article-nav-prev a, .article-nav-next a {
    color: var(--text-secondary);
    font-size: 14px;
}

.article-nav-prev a:hover, .article-nav-next a:hover { color: var(--accent); }

/* === Related Posts === */
.related-posts { margin-bottom: 30px; }

.related-posts-title {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.related-posts-title i { margin-right: 8px; }

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.related-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.related-item:hover { border-color: var(--accent); }

.related-item-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.related-item-title {
    padding: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

/* === Page Article === */
.page-article {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
}

.page-title {
    font-size: 28px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.page-featured-img { margin-bottom: 20px; }
.page-featured-img img { width: 100%; }

.page-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.page-content h2, .page-content h3 { color: var(--text-primary); margin: 25px 0 15px; }
.page-content p { margin-bottom: 15px; }

/* === Pagination === */
.pagination { text-align: center; padding: 30px 0; }

.nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-links a, .nav-links span.page-numbers, .nav-links .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.nav-links .current {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
    font-weight: 600;
}

/* === No Posts === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

/* === Footer === */
.site-footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--accent);
    padding: 50px 0 0;
    margin-top: 60px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand-logo img { max-height: 40px; margin-bottom: 15px; }

.footer-brand-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
    font-size: 13px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

/* Footer License */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.footer-license-bar h4 {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.license-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
}

.license-item i { font-size: 24px; color: var(--accent); }
.license-item span { font-size: 11px; color: var(--text-muted); }

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
}

/* === Floating Sidebar === */
.floating-sidebar {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 999;
}

.sidebar-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 18px;
    transition: var(--transition);
    position: relative;
}

.sidebar-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(183, 110, 121, 0.1);
}

.sidebar-btn-facebook:hover { color: #1877f2; border-color: #1877f2; }
.sidebar-btn-telegram:hover { color: #0088cc; border-color: #0088cc; }

.sidebar-label {
    display: none;
    position: absolute;
    right: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    font-size: 12px;
    white-space: nowrap;
    color: var(--text-primary);
}

.sidebar-btn:hover .sidebar-label { display: block; }

/* === Announcement Modal === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.announcement-modal.active { display: flex; }

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.announcement-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    max-width: 450px;
    width: 90%;
    padding: 30px;
    z-index: 1;
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
}

.announcement-close:hover { color: var(--accent); }

.announcement-header-icon {
    text-align: center;
    margin-bottom: 15px;
}

.announcement-header-icon i { font-size: 36px; color: var(--accent); }

.announcement-title {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 20px;
}

.announcement-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(183, 110, 121, 0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.announcement-item:hover { border-color: var(--accent); }

.announcement-badge {
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.announcement-badge.hot { background: #ff3b3b; color: #fff; }
.announcement-badge.new { background: var(--accent); color: #000; }
.announcement-badge.info { background: #2196f3; color: #fff; }

.announcement-text { flex: 1; font-size: 13px; color: var(--text-primary); }
.announcement-item i { color: var(--text-muted); font-size: 10px; }

.announcement-footer { text-align: center; }

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: var(--accent);
    color: #000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

.announcement-cta:hover {
    background: var(--accent-light);
    color: #000;
}
