/* ============================================
   ECLIPSE88 THEME - main.css (moban-146)
   Solar Eclipse Theme with Corona Ring Effects
   Colors: #0A1628 (DarkBlue), #FFD700 (Gold), #0D0D0D (Black)
   Fonts: Cinzel + Lato
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    background: #0D0D0D;
    color: #E0E4F0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: #FFD700;
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

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

/* === CONTENT AREA === */
.content-area {
    display: flex;
    gap: 25px;
    padding: 25px 0;
}

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

/* === GOLD TEXT === */
.gold-text {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* === BUTTONS === */
.btn-gold-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0A1628;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-gold-primary:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    color: #0A1628;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-outline-gold {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #FFD700;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    border: 2px solid #FFD700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-outline-gold:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

/* === SITE HEADER === */
.site-header {
    background: linear-gradient(180deg, #0A1628, rgba(10, 22, 40, 0.95));
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 50px;
    width: auto;
}

.header-time {
    color: #FFD700;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 1px;
}

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

.header-btn-group .btn-login {
    padding: 8px 20px;
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    border-radius: 25px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.header-btn-group .btn-login:hover {
    background: rgba(255, 215, 0, 0.1);
}

.header-btn-group .btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0A1628;
    border: none;
    border-radius: 25px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.header-btn-group .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.4);
    color: #0A1628;
}

.header-btn-group .btn-demo {
    padding: 8px 20px;
    background: transparent;
    color: #E0E4F0;
    border: 2px solid rgba(224, 228, 240, 0.3);
    border-radius: 25px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.header-btn-group .btn-demo:hover {
    border-color: #FFD700;
    color: #FFD700;
}

/* === NAVIGATION === */
.main-navigation {
    background: linear-gradient(90deg, rgba(10, 22, 40, 0.9), rgba(13, 13, 13, 0.9));
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 18px;
    color: #E0E4F0;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.08);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-link i {
    margin-right: 5px;
    font-size: 12px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #0A1628, #1a2744, #0A1628);
    padding: 8px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.notification-content {
    display: flex;
    gap: 50px;
    animation: darkOrbit 30s linear infinite;
    white-space: nowrap;
    color: #FFD700;
    font-size: 13px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    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(10, 22, 40, 0.9);
    backdrop-filter: blur(5px);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #0A1628, #1a2744);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.2);
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.announcement-close:hover {
    transform: rotate(90deg);
    color: #fff;
}

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

.announcement-header-icon i {
    font-size: 40px;
    color: #FFD700;
    animation: eclipseCorona 3s ease-in-out infinite;
}

.announcement-title {
    text-align: center;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

.announcement-badge {
    display: inline-block;
    min-width: 45px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.announcement-badge.hot {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: #fff;
}

.announcement-badge.new {
    background: linear-gradient(135deg, #00cc66, #009944);
    color: #fff;
}

.announcement-badge.info {
    background: linear-gradient(135deg, #3399ff, #0066cc);
    color: #fff;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    color: #E0E4F0;
}

.announcement-item i {
    color: #FFD700;
    font-size: 10px;
}

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0A1628;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    color: #0A1628;
}

/* === HERO SECTION === */
.eclipse88-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a2744 0%, #0A1628 40%, #0D0D0D 80%);
    border-radius: 0 0 20px 20px;
    margin-bottom: 30px;
}

/* Corona Ring */
.corona-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    animation: eclipseCorona 6s ease-in-out infinite;
}

.corona-ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 180px;
    background: linear-gradient(to top, rgba(255, 215, 0, 0.6), transparent);
    transform-origin: bottom center;
    filter: blur(2px);
}

.corona-ray-1 { transform: translate(-50%, -100%) rotate(0deg); }
.corona-ray-2 { transform: translate(-50%, -100%) rotate(45deg); }
.corona-ray-3 { transform: translate(-50%, -100%) rotate(90deg); }
.corona-ray-4 { transform: translate(-50%, -100%) rotate(135deg); }
.corona-ray-5 { transform: translate(-50%, -100%) rotate(180deg); }
.corona-ray-6 { transform: translate(-50%, -100%) rotate(225deg); }
.corona-ray-7 { transform: translate(-50%, -100%) rotate(270deg); }
.corona-ray-8 { transform: translate(-50%, -100%) rotate(315deg); }

/* Eclipse Moon */
.eclipse-moon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #1a1a2e, #0D0D0D);
    box-shadow:
        0 0 60px rgba(255, 215, 0, 0.3),
        0 0 120px rgba(255, 215, 0, 0.15),
        inset 0 0 40px rgba(0, 0, 0, 0.8);
    animation: darkOrbit 20s linear infinite;
}

/* Solar Flare */
.solar-flare-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: solarFlare 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.hero-main-title {
    margin-bottom: 20px;
}

.hero-brand {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 56px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 8px;
    text-shadow:
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3),
        0 0 80px rgba(255, 215, 0, 0.1);
    animation: solarFlare 5s ease-in-out infinite;
}

.hero-divider-line {
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 15px auto;
}

.hero-tagline {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 500;
    color: #E0E4F0;
    letter-spacing: 5px;
}

.hero-description {
    font-size: 15px;
    color: rgba(224, 228, 240, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(224, 228, 240, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === SECTION TITLES === */
.section-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

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

.section-subtitle {
    text-align: center;
    color: rgba(224, 228, 240, 0.6);
    font-size: 14px;
    margin-bottom: 30px;
}

/* === ECLIPSE SLIDER === */
.eclipse-slider {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.eclipse-swiper .swiper-slide {
    position: relative;
    height: 400px;
}

.eclipse-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95), transparent);
}

.slide-overlay h3 {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.slide-overlay p {
    color: #E0E4F0;
    margin-bottom: 15px;
    font-size: 15px;
}

.eclipse-swiper .swiper-pagination-bullet {
    background: #FFD700;
    opacity: 0.5;
}

.eclipse-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.eclipse-swiper .swiper-button-next,
.eclipse-swiper .swiper-button-prev {
    color: #FFD700;
}

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.provider-tab {
    padding: 8px 18px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    color: #E0E4F0;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab:hover,
.provider-tab.active {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0A1628;
    border-color: #FFD700;
    font-weight: 700;
}

/* === GAME GRID === */
.eclipse-games {
    margin-bottom: 40px;
}

.eclipse-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.eclipse-game-card {
    display: block;
    background: linear-gradient(135deg, #0A1628, #1a2744);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.eclipse-game-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.game-card-img {
    position: relative;
    height: 150px;
    overflow: hidden;
}

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

.eclipse-game-card:hover .game-card-img img {
    transform: scale(1.1);
}

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.eclipse-game-card:hover .game-card-overlay {
    opacity: 1;
}

.corona-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
    animation: eclipseCorona 2s ease-in-out infinite;
}

.play-icon {
    position: relative;
    z-index: 1;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A1628;
    font-size: 16px;
}

.game-card-info {
    padding: 10px;
    text-align: center;
}

.game-card-name {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 600;
    color: #FFD700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card-provider {
    display: block;
    font-size: 10px;
    color: rgba(224, 228, 240, 0.5);
    margin-top: 3px;
}

/* === VIEW MORE BUTTON === */
.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    max-width: 250px;
    margin: 0 auto;
    border: 2px solid #FFD700;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.gold-view-more {
    color: #FFD700;
}

/* === FEATURES SECTION === */
.eclipse-features {
    margin-bottom: 40px;
}

.eclipse-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.eclipse-feature-card {
    background: linear-gradient(135deg, #0A1628, #1a2744);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.eclipse-feature-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.feature-icon {
    margin-bottom: 15px;
}

.corona-icon i {
    font-size: 36px;
    color: #FFD700;
    animation: eclipseCorona 4s ease-in-out infinite;
}

.eclipse-feature-card h3 {
    font-size: 16px;
    color: #FFD700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.eclipse-feature-card p {
    font-size: 13px;
    color: rgba(224, 228, 240, 0.7);
    line-height: 1.7;
}

/* === STATS SECTION === */
.eclipse-stats {
    position: relative;
    padding: 50px 0;
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
}

.eclipse-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0A1628, #1a2744);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
}

.eclipse-stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 30px;
}

.eclipse-stat-card {
    text-align: center;
    padding: 25px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.eclipse-stat-card:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
}

.stat-icon i {
    font-size: 30px;
    color: #FFD700;
    margin-bottom: 10px;
    display: block;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFD700;
    display: inline;
}

.stat-suffix {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #FFD700;
    display: inline;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: rgba(224, 228, 240, 0.6);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === PROMOS SECTION === */
.eclipse-promos {
    margin-bottom: 40px;
}

.eclipse-promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.eclipse-promo-card {
    position: relative;
    background: linear-gradient(135deg, #0A1628, #1a2744);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.eclipse-promo-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.promo-corona-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    animation: darkOrbit 15s linear infinite;
    pointer-events: none;
}

.eclipse-promo-inner {
    position: relative;
    z-index: 1;
    padding: 30px;
    text-align: center;
}

.promo-icon i {
    font-size: 36px;
    color: #FFD700;
    margin-bottom: 15px;
    display: block;
}

.eclipse-promo-inner h3 {
    font-size: 16px;
    color: #FFD700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.eclipse-promo-inner p {
    font-size: 13px;
    color: rgba(224, 228, 240, 0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 12px;
    color: rgba(224, 228, 240, 0.5);
}

.promo-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-badge.hot {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: #fff;
}

.promo-badge.new {
    background: linear-gradient(135deg, #00cc66, #009944);
    color: #fff;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0A1628;
}

.btn-promo {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0A1628;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    color: #0A1628;
}

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 60px 30px;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
}

.footer-cta-coronabg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0A1628, #1a2744, #0A1628);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
}

.corona-gradient-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    animation: eclipseCorona 5s ease-in-out infinite;
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
}

.cta-eclipse-decoration {
    margin-bottom: 20px;
}

.cta-eclipse-ring {
    display: inline-block;
    width: 60px;
    height: 60px;
    border: 3px solid #FFD700;
    border-radius: 50%;
    animation: eclipseCorona 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.footer-cta-inner h2 {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.footer-cta-inner p {
    font-size: 15px;
    color: rgba(224, 228, 240, 0.8);
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.cta-feature {
    color: #E0E4F0;
    font-size: 14px;
}

.cta-feature i {
    color: #FFD700;
    margin-right: 5px;
}

.cta-main-btn {
    font-size: 16px;
    padding: 15px 40px;
}

/* === NEWS SECTION === */
.home-news-section {
    margin-bottom: 40px;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.article-card {
    display: block;
    background: linear-gradient(135deg, #0A1628, #1a2744);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
}

.article-card-thumb {
    height: 180px;
    overflow: hidden;
}

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

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

.article-card-title {
    padding: 12px 15px 5px;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFD700;
    line-height: 1.4;
}

.article-card-title span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    padding: 5px 15px;
    font-size: 11px;
    color: rgba(224, 228, 240, 0.5);
}

.article-card-meta i {
    margin-right: 4px;
}

.article-card-excerpt {
    padding: 5px 15px 15px;
    font-size: 12px;
    color: rgba(224, 228, 240, 0.6);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-more {
    display: inline-block;
    padding: 8px 20px;
    margin: 0 15px 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #FFD700;
    transition: all 0.3s ease;
}

.article-card-more:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

.home-news-placeholder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 13px;
    color: rgba(224, 228, 240, 0.5);
}

.breadcrumb a {
    color: #FFD700;
    font-size: 13px;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(224, 228, 240, 0.3);
}

/* === CATEGORY === */
.category-header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    margin-bottom: 25px;
}

.category-title {
    font-size: 24px;
    letter-spacing: 2px;
}

.category-desc {
    color: rgba(224, 228, 240, 0.6);
    font-size: 14px;
    margin-top: 8px;
}

/* === ARTICLE GRID === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #0A1628, #1a2744);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
}

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

.article-title {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(224, 228, 240, 0.5);
}

.article-meta i {
    margin-right: 4px;
    color: #FFD700;
}

.article-featured-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.article-content {
    color: #E0E4F0;
    line-height: 1.9;
    font-size: 15px;
}

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

.article-content h2,
.article-content h3 {
    color: #FFD700;
    margin: 20px 0 10px;
}

.article-content ul,
.article-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content blockquote {
    border-left: 3px solid #FFD700;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.article-content img {
    border-radius: 8px;
    margin: 15px 0;
}

/* === TAGS === */
.article-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    margin-top: 20px;
}

.article-tags span {
    color: #FFD700;
    font-size: 13px;
}

.tag-link {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    font-size: 12px;
    color: #FFD700;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
}

/* === SHARE === */
.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.article-share span {
    color: #E0E4F0;
    font-size: 13px;
}

.share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.share-btn.fb {
    background: #1877f2;
    color: #fff;
}

.share-btn.tw {
    background: #1da1f2;
    color: #fff;
}

.share-btn.tg {
    background: #0088cc;
    color: #fff;
}

.share-btn.wa {
    background: #25d366;
    color: #fff;
}

.share-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* === AUTHOR BOX === */
.author-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 10px;
    margin-top: 20px;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #FFD700;
}

.author-info h4 {
    font-size: 16px;
    color: #FFD700;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 13px;
    color: rgba(224, 228, 240, 0.6);
    line-height: 1.6;
}

/* === RELATED POSTS === */
.related-posts {
    margin-bottom: 25px;
}

.related-title {
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

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

.related-item {
    display: block;
    background: linear-gradient(135deg, #0A1628, #1a2744);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-item:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
}

.related-item-thumb {
    height: 120px;
    overflow: hidden;
}

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

.related-item-title {
    padding: 10px;
    font-size: 13px;
    color: #E0E4F0;
    line-height: 1.4;
}

/* === PAGE === */
.page-article {
    background: linear-gradient(135deg, #0A1628, #1a2744);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    padding: 30px;
}

.page-title {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-featured-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-content {
    color: #E0E4F0;
    line-height: 1.9;
}

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

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

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: #E0E4F0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-color: #FFD700;
    color: #0A1628;
}

/* === ERROR PAGE === */
.error-page {
    text-align: center;
    padding: 80px 20px;
}

.error-eclipse {
    margin-bottom: 20px;
}

.error-eclipse-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
    border: 4px solid #FFD700;
    border-radius: 50%;
    animation: eclipseCorona 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.error-code {
    font-size: 100px;
    background: linear-gradient(135deg, #FFD700, #FFA500, #0A1628);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.error-title {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 15px;
}

.error-desc {
    color: rgba(224, 228, 240, 0.6);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* === NO POSTS === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: rgba(224, 228, 240, 0.6);
}

.no-posts i {
    display: block;
    margin-bottom: 15px;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0A1628, #0D0D0D);
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    padding: 50px 0 0;
    margin-top: 40px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand-logo {
    margin-bottom: 15px;
}

.footer-brand-logo img {
    height: 45px;
}

.footer-brand-text {
    font-size: 13px;
    color: rgba(224, 228, 240, 0.6);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #FFD700;
    color: #0A1628;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: #FFD700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

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

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

.footer-col ul li a {
    font-size: 13px;
    color: rgba(224, 228, 240, 0.6);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #FFD700;
    padding-left: 5px;
}

/* === LICENSE BAR === */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: #FFD700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

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

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.license-item i {
    font-size: 24px;
    color: #FFD700;
}

.license-item span {
    font-size: 11px;
    color: rgba(224, 228, 240, 0.5);
}

/* === FOOTER BOTTOM === */
.footer-bottom {
    text-align: center;
    padding: 15px 0;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(224, 228, 240, 0.4);
}

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A1628, #1a2744);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    background: #FFD700;
    color: #0A1628;
    border-color: #FFD700;
    transform: scale(1.1);
}

.sidebar-btn-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.sidebar-btn-telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
    color: #fff;
}

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: #0A1628;
    border: 1px solid #FFD700;
    color: #FFD700;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
}

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

/* === KEYFRAME ANIMATIONS === */

/* 1. Eclipse Corona - pulsing corona ring effect */
@keyframes eclipseCorona {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
        box-shadow: 0 0 60px rgba(255, 215, 0, 0.4);
    }
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    }
}

/* 2. Dark Orbit - slow orbital rotation */
@keyframes darkOrbit {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 3. Solar Flare - expanding glow pulse */
@keyframes solarFlare {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* 4. Shadow Pass - eclipse shadow sweep */
@keyframes shadowPass {
    0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    30% {
        clip-path: inset(0 50% 0 0);
        opacity: 0.7;
    }
    50% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
    70% {
        clip-path: inset(0 0 0 50%);
        opacity: 0.7;
    }
    100% {
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }
}

/* Corona icon animation variant */
.corona-icon i,
.announcement-header-icon i {
    animation: eclipseCorona 3s ease-in-out infinite;
    transform-origin: center;
}

/* Shadow pass on header */
.site-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.03), transparent);
    animation: shadowPass 8s ease-in-out infinite;
    pointer-events: none;
}

/* Dark orbit for notification */
@keyframes darkOrbitScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
