/* ============================================================
   ROYALVEGAS WordPress Theme - Main Stylesheet (main.css)
   Royal Purple + Gold + Silver Casino Aesthetic
   ============================================================ */

/* Section 1: Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    background: linear-gradient(180deg, #1A0533, #2D1B69);
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Cinzel', 'Segoe UI', Tahoma, Geneva, Verdana, serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: #FFD700; text-decoration: none; transition: color 0.3s ease, background 0.3s ease; }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

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

/* Section 2: Header */
.site-header { background: linear-gradient(180deg, #0e0220, #1A0533); border-bottom: 2px solid #4a2090; position: sticky; top: 0; z-index: 1000; }
.header-top { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.logo img { max-height: 50px; }
.header-time { color: #C0C0C0; font-size: 14px; font-family: monospace; }
.header-btn-group { display: flex; gap: 8px; }
.btn-login { padding: 8px 16px; background: transparent; border: 1px solid #FFD700; color: #FFD700; border-radius: 6px; font-size: 13px; font-weight: 600; transition: all 0.3s; }
.btn-login:hover { background: rgba(255,215,0,0.1); color: #FFD700; }
.btn-register { padding: 8px 16px; background: linear-gradient(135deg, #FFD700, #B8960C); color: #1A0533; border-radius: 6px; font-size: 13px; font-weight: 700; border: none; transition: all 0.3s; }
.btn-register:hover { background: linear-gradient(135deg, #fff, #FFD700); color: #1A0533; transform: translateY(-1px); }
.btn-demo { padding: 8px 16px; background: transparent; border: 1px solid #C0C0C0; color: #C0C0C0; border-radius: 6px; font-size: 13px; font-weight: 600; transition: all 0.3s; }
.btn-demo:hover { background: rgba(192,192,192,0.1); color: #fff; }

/* Section 3: Navigation */
.main-navigation { background: #0e0220; border-top: 1px solid #4a2090; }
.nav-menu { display: flex; justify-content: center; flex-wrap: wrap; gap: 0; }
.nav-link { display: block; padding: 12px 14px; color: #C0C0C0; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; }
.nav-link:hover, .nav-link:focus { color: #FFD700; background: rgba(255,215,0,0.05); }
.nav-link i { margin-right: 4px; color: #FFD700; font-size: 11px; }
.mobile-menu-toggle { display: none; background: none; border: none; color: #FFD700; font-size: 22px; cursor: pointer; padding: 10px; }

/* Section 4: Notification Bar */
.notification-bar { background: linear-gradient(90deg, #4a2090, #2D1B69, #4a2090); padding: 8px 0; overflow: hidden; }
.notification-content { display: flex; gap: 40px; white-space: nowrap; animation: scrollNotification 30s linear infinite; color: #FFD700; font-size: 13px; font-weight: 500; }
@keyframes scrollNotification { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* Section 5: Hero Royal */
.hero-royal { background: linear-gradient(180deg, #1A0533 0%, #2D1B69 50%, #1A0533 100%); padding: 80px 0 60px; position: relative; overflow: hidden; text-align: center; }
.hero-royal-content { position: relative; z-index: 2; }
.hero-crown-icon { font-size: 80px; color: #FFD700; text-shadow: 0 0 40px rgba(255,215,0,0.5), 0 0 80px rgba(255,215,0,0.2); animation: crownPulse 3s ease-in-out infinite; margin-bottom: 10px; }
@keyframes crownPulse { 0%,100%{transform:scale(1);text-shadow:0 0 40px rgba(255,215,0,0.5)} 50%{transform:scale(1.05);text-shadow:0 0 60px rgba(255,215,0,0.8)} }
.hero-brand-title { font-size: 48px; font-weight: 700; color: #FFD700; letter-spacing: 8px; text-shadow: 0 2px 20px rgba(255,215,0,0.3); margin-bottom: 8px; }
.hero-brand-subtitle { font-size: 16px; color: #C0C0C0; letter-spacing: 4px; margin-bottom: 15px; }
.hero-brand-desc { font-size: 15px; color: #ccc; max-width: 600px; margin: 0 auto 30px; line-height: 1.7; font-family: 'Segoe UI', sans-serif; }
.hero-brand-desc strong { color: #FFD700; }
.hero-cta-group { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.btn-cta-primary { padding: 14px 36px; background: linear-gradient(135deg, #FFD700, #B8960C); color: #1A0533; font-size: 16px; font-weight: 700; border-radius: 50px; letter-spacing: 2px; transition: all 0.3s; box-shadow: 0 4px 20px rgba(255,215,0,0.3); }
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,215,0,0.5); color: #1A0533; }
.btn-cta-secondary { padding: 14px 36px; background: transparent; border: 2px solid #C0C0C0; color: #C0C0C0; font-size: 16px; font-weight: 600; border-radius: 50px; letter-spacing: 2px; transition: all 0.3s; }
.btn-cta-secondary:hover { border-color: #FFD700; color: #FFD700; transform: translateY(-3px); }

.hero-royal-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.particle { position: absolute; font-size: 20px; opacity: 0.15; animation: floatParticle 8s ease-in-out infinite; }
.particle-1 { top: 10%; left: 10%; animation-delay: 0s; font-size: 30px; }
.particle-2 { top: 20%; right: 15%; animation-delay: 1s; font-size: 24px; }
.particle-3 { top: 60%; left: 5%; animation-delay: 2s; }
.particle-4 { top: 70%; right: 10%; animation-delay: 3s; font-size: 26px; }
.particle-5 { top: 40%; left: 20%; animation-delay: 4s; }
.particle-6 { top: 50%; right: 20%; animation-delay: 5s; font-size: 22px; }
@keyframes floatParticle { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-30px) rotate(180deg)} }

/* Section 6: Crown Title Decoration */
.crown-title { position: relative; text-align: center; padding-top: 40px; margin-bottom: 20px; }
.crown-title::before { content: '\265B'; position: absolute; top: 0; left: 50%; transform: translateX(-50%); font-size: 30px; color: #FFD700; }
.crown-title h2 { color: #FFD700; font-size: 24px; letter-spacing: 3px; }

/* Section 7: Banner Slider */
.banner-slider-section { padding: 20px 0; }
.hero-slider { border-radius: 12px; overflow: hidden; border: 2px solid #4a2090; }
.hero-slider .swiper-slide img { width: 100%; height: 350px; object-fit: cover; }
.hero-slider .swiper-button-next, .hero-slider .swiper-button-prev { color: #FFD700; background: rgba(26,5,51,0.7); width: 40px; height: 40px; border-radius: 50%; }
.hero-slider .swiper-pagination-bullet-active { background: #FFD700; }

/* Section 8: Shield Categories */
.shield-categories { padding: 40px 0; }
.shield-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 30px 0; }
.shield-item { text-align: center; text-decoration: none; color: #fff; transition: all 0.3s; }
.shield-item:hover { transform: translateY(-5px); color: #FFD700; }
.shield-shape { width: 100px; height: 120px; margin: 0 auto 10px; background: linear-gradient(180deg, #4a2090, #2D1B69); clip-path: polygon(50% 0%, 100% 15%, 100% 70%, 50% 100%, 0% 70%, 0% 15%); display: flex; align-items: center; justify-content: center; font-size: 32px; color: #FFD700; border: none; transition: all 0.3s; }
.shield-item:hover .shield-shape { background: linear-gradient(180deg, #FFD700, #B8960C); color: #1A0533; }
.shield-name { font-size: 12px; font-weight: 600; }

/* Section 9: Hot Games */
.hot-games-section { padding: 40px 0; }
.hot-games-swiper { padding-bottom: 40px; }
.game-card { background: #220a4a; border: 1px solid #4a2090; border-radius: 10px; overflow: hidden; transition: all 0.3s; }
.game-card:hover { transform: translateY(-5px); border-color: #FFD700; box-shadow: 0 8px 25px rgba(74,32,144,0.5); }
.game-card-img { position: relative; height: 150px; overflow: hidden; background: linear-gradient(135deg, #4a2090, #2D1B69); }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; }
.game-hot-badge { position: absolute; top: 8px; right: 8px; background: linear-gradient(135deg, #FFD700, #B8960C); color: #1A0533; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.game-card-info { padding: 10px 12px; }
.game-card-info h4 { font-size: 13px; color: #fff; margin-bottom: 2px; }
.game-provider { font-size: 11px; color: #C0C0C0; }

/* Section 10: Royal Scroll */
.royal-scrolls-section { padding: 40px 0; }
.royal-scroll { background: linear-gradient(180deg, #2D1B69, #220a4a); border: 2px solid #FFD700; border-radius: 12px; padding: 0; overflow: hidden; max-height: 60px; transition: max-height 0.5s ease; cursor: pointer; margin-bottom: 10px; }
.royal-scroll.open { max-height: 300px; }
.scroll-header { padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; color: #FFD700; font-weight: 600; }
.scroll-header i { transition: transform 0.3s; }
.royal-scroll.open .scroll-header i { transform: rotate(180deg); }
.scroll-body { padding: 0 20px 20px; color: #C0C0C0; font-size: 14px; line-height: 1.6; font-family: 'Segoe UI', sans-serif; }

/* Section 11: Poster Grid */
.poster-section { padding: 40px 0; }
.poster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.poster-item { border-radius: 10px; overflow: hidden; border: 2px solid #4a2090; transition: all 0.3s; }
.poster-item:hover { border-color: #FFD700; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(74,32,144,0.4); }
.poster-item img { width: 100%; height: 200px; object-fit: cover; }

/* Section 12: News Section */
.news-section { padding: 40px 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { background: #220a4a; border: 1px solid #4a2090; border-radius: 10px; overflow: hidden; transition: all 0.3s; }
.news-card:hover { transform: translateY(-5px); border-color: #FFD700; box-shadow: 0 8px 25px rgba(74,32,144,0.5); }
.news-card-thumb img { width: 100%; height: 180px; object-fit: cover; }
.news-card-body { padding: 15px; }
.news-card-title { font-size: 15px; margin-bottom: 8px; }
.news-card-title a { color: #fff; }
.news-card-title a:hover { color: #FFD700; }
.news-card-meta { font-size: 12px; color: #C0C0C0; margin-bottom: 8px; }
.news-card-meta i { color: #FFD700; margin-right: 4px; }
.news-card-excerpt { font-size: 13px; color: #C0C0C0; line-height: 1.6; margin-bottom: 10px; font-family: 'Segoe UI', sans-serif; }
.news-card-more { font-size: 13px; color: #FFD700; font-weight: 600; }
.news-card-more:hover { color: #fff; }
.news-empty { grid-column: span 3; text-align: center; padding: 40px; color: #C0C0C0; }

.section-more-btn { text-align: center; margin-top: 25px; }
.btn-view-more { display: inline-block; padding: 12px 30px; background: transparent; border: 2px solid #FFD700; color: #FFD700; border-radius: 50px; font-size: 14px; font-weight: 600; letter-spacing: 1px; transition: all 0.3s; }
.btn-view-more:hover { background: linear-gradient(135deg, #FFD700, #B8960C); color: #1A0533; transform: translateY(-2px); }

/* Section 13: Download App */
.download-app-section { padding: 50px 0; }
.download-app-wrapper { background: linear-gradient(135deg, #220a4a, #2D1B69); border: 2px solid #FFD700; border-radius: 16px; padding: 50px 30px; text-align: center; position: relative; overflow: hidden; }
.download-app-icon { font-size: 50px; color: #FFD700; margin-bottom: 15px; }
.download-app-title { font-size: 28px; color: #FFD700; letter-spacing: 3px; margin-bottom: 10px; }
.download-app-desc { font-size: 15px; color: #C0C0C0; max-width: 500px; margin: 0 auto 25px; font-family: 'Segoe UI', sans-serif; }
.download-app-desc strong { color: #FFD700; }
.download-app-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.download-app-btn { display: flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: all 0.3s; }
.download-ios { background: #1A0533; border: 1px solid #FFD700; color: #FFD700; }
.download-ios:hover { background: #FFD700; color: #1A0533; }
.download-android { background: #1A0533; border: 1px solid #C0C0C0; color: #C0C0C0; }
.download-android:hover { background: #C0C0C0; color: #1A0533; }
.download-qr { background: #1A0533; border: 1px solid #4a2090; color: #fff; }
.download-qr:hover { border-color: #FFD700; color: #FFD700; }
.download-app-btn i { font-size: 20px; }

/* Section 14: Footer */
.site-footer { background: #0a0118; border-top: 3px solid #FFD700; padding: 40px 0 20px; margin-top: 40px; }
.footer-columns-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-brand-logo img { max-height: 40px; margin-bottom: 12px; }
.footer-brand-text { font-size: 13px; color: #C0C0C0; line-height: 1.7; margin-bottom: 12px; font-family: 'Segoe UI', sans-serif; }
.footer-18plus { display: inline-block; background: #ff3333; color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; }
.footer-social-links { display: flex; gap: 10px; }
.footer-social-links a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: #220a4a; border: 1px solid #4a2090; border-radius: 50%; color: #FFD700; font-size: 14px; transition: all 0.3s; }
.footer-social-links a:hover { background: #FFD700; color: #1A0533; border-color: #FFD700; }
.footer-col h4 { color: #FFD700; font-size: 14px; letter-spacing: 1px; margin-bottom: 15px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #C0C0C0; font-size: 13px; transition: all 0.3s; font-family: 'Segoe UI', sans-serif; }
.footer-col ul li a:hover { color: #FFD700; padding-left: 4px; }

.footer-license-bar { border-top: 1px solid #4a2090; padding: 20px 0; text-align: center; }
.footer-license-bar h4 { color: #FFD700; font-size: 14px; letter-spacing: 2px; 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: 4px; }
.license-item i { font-size: 24px; color: #C0C0C0; }
.license-item span { font-size: 11px; color: #C0C0C0; }

.footer-bottom { border-top: 1px solid #4a2090; padding-top: 20px; text-align: center; }
.footer-copyright { font-size: 13px; color: #C0C0C0; margin-bottom: 8px; }
.footer-disclaimer { font-size: 12px; color: #888; font-family: 'Segoe UI', sans-serif; }

/* Section 15: Breadcrumb */
.breadcrumb { padding: 15px 0; font-size: 13px; color: #C0C0C0; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-family: 'Segoe UI', sans-serif; }
.breadcrumb a { color: #FFD700; }
.breadcrumb span { color: #C0C0C0; }

/* Section 16: Content Layout */
.content-area { display: flex; gap: 25px; padding: 20px 0; }
.main-content { flex: 1; min-width: 0; }

/* Section 17: Article Grid */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { background: #220a4a; border: 1px solid #4a2090; border-radius: 10px; overflow: hidden; transition: all 0.3s; }
.article-card:hover { transform: translateY(-5px); border-color: #FFD700; box-shadow: 0 8px 25px rgba(74,32,144,0.5); }
.article-card-thumb img { width: 100%; height: 180px; object-fit: cover; }
.article-card-title { padding: 12px 12px 6px; font-size: 15px; }
.article-card-title a { color: #fff; }
.article-card-title a:hover { color: #FFD700; }
.article-card-meta { padding: 0 12px; font-size: 12px; color: #C0C0C0; display: flex; gap: 12px; margin-bottom: 8px; font-family: 'Segoe UI', sans-serif; }
.article-card-meta i { color: #FFD700; margin-right: 4px; }
.article-card-excerpt { padding: 0 12px; font-size: 13px; color: #C0C0C0; line-height: 1.5; margin-bottom: 10px; font-family: 'Segoe UI', sans-serif; }
.article-card-more { display: inline-block; margin: 0 12px 12px; font-size: 13px; color: #FFD700; font-weight: 600; }
.article-card-more:hover { color: #fff; }
.no-posts { text-align: center; padding: 60px 20px; grid-column: span 3; }

/* Section 18: Pagination */
.pagination { padding: 30px 0; text-align: center; }
.nav-links { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; }
.nav-links a, .nav-links .current, .nav-links span.page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 6px 12px; border-radius: 6px; font-size: 14px; font-weight: 600; }
.nav-links a { background: #220a4a; border: 1px solid #4a2090; color: #C0C0C0; }
.nav-links a:hover { border-color: #FFD700; color: #FFD700; }
.nav-links .current { background: linear-gradient(135deg, #FFD700, #B8960C); color: #1A0533; border: none; }

/* Section 19: Category Page */
.category-header { text-align: center; padding: 25px 0; }
.category-title { font-size: 28px; color: #FFD700; letter-spacing: 2px; }
.category-title i { margin-right: 8px; }
.category-desc { color: #C0C0C0; margin-top: 8px; font-family: 'Segoe UI', sans-serif; }

.provider-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; justify-content: center; }
.provider-tab { padding: 8px 16px; background: #220a4a; border: 1px solid #4a2090; color: #C0C0C0; border-radius: 6px; font-size: 13px; cursor: pointer; transition: all 0.3s; font-family: 'Segoe UI', sans-serif; }
.provider-tab:hover, .provider-tab.active { background: linear-gradient(135deg, #FFD700, #B8960C); color: #1A0533; border-color: #FFD700; }

/* Section 20: Single Article */
.single-article { background: #220a4a; border: 1px solid #4a2090; border-radius: 12px; padding: 30px; }
.article-title { font-size: 28px; color: #FFD700; margin-bottom: 12px; line-height: 1.3; }
.article-meta { display: flex; gap: 15px; flex-wrap: wrap; font-size: 13px; color: #C0C0C0; margin-bottom: 20px; font-family: 'Segoe UI', sans-serif; }
.article-meta i { color: #FFD700; margin-right: 4px; }
.article-meta a { color: #FFD700; }
.article-featured-img { margin-bottom: 20px; border-radius: 10px; overflow: hidden; border: 1px solid #4a2090; }
.article-featured-img img { width: 100%; }
.article-content { font-size: 15px; color: #ddd; line-height: 1.8; font-family: 'Segoe UI', sans-serif; }
.article-content h2, .article-content h3 { color: #FFD700; margin: 20px 0 10px; }
.article-content p { margin-bottom: 15px; }
.article-content a { color: #FFD700; text-decoration: underline; }
.article-tags { padding: 15px 0; border-top: 1px solid #4a2090; margin-top: 20px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.article-tags i { color: #FFD700; }
.article-tags span { background: #2D1B69; border: 1px solid #4a2090; padding: 4px 12px; border-radius: 4px; font-size: 12px; color: #C0C0C0; }
.article-nav { display: flex; justify-content: space-between; padding-top: 15px; border-top: 1px solid #4a2090; margin-top: 15px; }
.article-nav a { color: #FFD700; font-size: 14px; }

/* Section 21: Related Posts */
.related-posts { margin-top: 30px; }
.related-posts-title { font-size: 20px; color: #FFD700; letter-spacing: 1px; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid #4a2090; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.related-item { background: #220a4a; border: 1px solid #4a2090; border-radius: 8px; overflow: hidden; transition: all 0.3s; }
.related-item:hover { border-color: #FFD700; transform: translateY(-3px); }
.related-item-thumb img { width: 100%; height: 100px; object-fit: cover; }
.related-item-title { padding: 8px 10px; font-size: 13px; color: #fff; }
.related-item:hover .related-item-title { color: #FFD700; }

/* Section 22: Page */
.page-article { background: #220a4a; border: 1px solid #4a2090; border-radius: 12px; padding: 30px; }
.page-title { font-size: 28px; color: #FFD700; margin-bottom: 20px; }
.page-featured-img { margin-bottom: 20px; border-radius: 10px; overflow: hidden; }
.page-content { font-size: 15px; color: #ddd; line-height: 1.8; font-family: 'Segoe UI', sans-serif; }
.page-content h2, .page-content h3 { color: #FFD700; margin: 20px 0 10px; }
.page-content p { margin-bottom: 15px; }

/* Section 23: Floating Sidebar */
.floating-sidebar { position: fixed; right: 15px; top: 50%; transform: translateY(-50%); z-index: 999; display: flex; flex-direction: column; gap: 6px; }
.sidebar-btn { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #4a2090, #2D1B69); border: 1px solid #FFD700; border-radius: 10px; color: #FFD700; font-size: 18px; transition: all 0.3s; position: relative; }
.sidebar-btn:hover { background: linear-gradient(135deg, #FFD700, #B8960C); color: #1A0533; }
.sidebar-btn-facebook { border-color: #1877F2; color: #1877F2; }
.sidebar-btn-facebook:hover { background: #1877F2; color: #fff; }
.sidebar-btn-telegram { border-color: #0088cc; color: #0088cc; }
.sidebar-btn-telegram:hover { background: #0088cc; color: #fff; }
.sidebar-label { display: none; position: absolute; right: 60px; background: #220a4a; border: 1px solid #FFD700; padding: 4px 10px; border-radius: 4px; font-size: 12px; white-space: nowrap; color: #FFD700; }
.sidebar-btn:hover .sidebar-label { display: block; }

/* Section 24: Announcement Modal */
.announcement-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 10000; display: flex; align-items: center; justify-content: center; }
.announcement-modal.hidden { display: none; }
.announcement-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10,1,24,0.85); }
.announcement-content { position: relative; background: linear-gradient(180deg, #220a4a, #1A0533); border: 2px solid #FFD700; border-radius: 16px; padding: 30px; max-width: 450px; width: 90%; z-index: 1; }
.announcement-close { position: absolute; top: 10px; right: 15px; background: none; border: none; color: #C0C0C0; font-size: 28px; cursor: pointer; }
.announcement-close:hover { color: #FFD700; }
.announcement-header-icon { text-align: center; margin-bottom: 10px; }
.announcement-header-icon i { font-size: 40px; color: #FFD700; }
.announcement-title { text-align: center; font-size: 18px; color: #FFD700; letter-spacing: 1px; 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: 12px; background: #2D1B69; border: 1px solid #4a2090; border-radius: 8px; color: #fff; font-size: 13px; transition: all 0.3s; font-family: 'Segoe UI', sans-serif; }
.announcement-item:hover { border-color: #FFD700; color: #FFD700; }
.announcement-badge { font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 3px; text-transform: uppercase; }
.announcement-badge.hot { background: #ff3333; color: #fff; }
.announcement-badge.new { background: #00cc66; color: #fff; }
.announcement-badge.info { background: #3399ff; color: #fff; }
.announcement-text { flex: 1; }
.announcement-footer { text-align: center; }
.announcement-cta { display: inline-block; padding: 12px 40px; background: linear-gradient(135deg, #FFD700, #B8960C); color: #1A0533; font-size: 15px; font-weight: 700; border-radius: 50px; letter-spacing: 1px; }
.announcement-cta:hover { color: #1A0533; transform: scale(1.05); }

/* Section 25: Scroll Top Button */
.scroll-top-btn { position: fixed; bottom: 30px; left: 30px; width: 44px; height: 44px; background: linear-gradient(135deg, #FFD700, #B8960C); color: #1A0533; border: none; border-radius: 50%; font-size: 18px; cursor: pointer; display: none; z-index: 999; box-shadow: 0 4px 15px rgba(255,215,0,0.3); }
.scroll-top-btn:hover { transform: translateY(-3px); }


/* Section 26: 404 Error Page */
.error-404 { text-align: center; padding: 80px 20px; }
.error-404-icon { font-size: 60px; color: #FFD700; margin-bottom: 15px; animation: crownPulse 3s ease-in-out infinite; }
.error-404-title { font-size: 80px; color: #FFD700; letter-spacing: 10px; text-shadow: 0 0 30px rgba(255,215,0,0.3); }
.error-404-subtitle { font-size: 22px; color: #C0C0C0; letter-spacing: 3px; margin-bottom: 15px; }
.error-404-desc { font-size: 15px; color: #C0C0C0; margin-bottom: 30px; font-family: 'Segoe UI', sans-serif; }
.error-404-actions { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
