/* ============================================
   VIKING88 THEME - main.css (moban-85)
   Classic Viking Slots Theme
   Colors: #0D1117 bg, #2B4C7E blue, #B0B0B0 silver, #6B3A2A brown
   ============================================ */

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

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

body {
    font-family: 'Inter', sans-serif;
    background: #0D1117;
    color: #B0B0B0;
    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: #B0B0B0;
    transition: all 0.3s ease;
}

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

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

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

.viking-text {
    color: #2B4C7E;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes axeSwing {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

@keyframes runeGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(43, 76, 126, 0.3), 0 0 10px rgba(43, 76, 126, 0.1);
        color: #2B4C7E;
    }
    50% {
        text-shadow: 0 0 15px rgba(43, 76, 126, 0.8), 0 0 30px rgba(43, 76, 126, 0.4), 0 0 45px rgba(43, 76, 126, 0.2);
        color: #4A7BC8;
    }
}

@keyframes longshipSail {
    0% { transform: translateX(-100px) translateY(0); }
    25% { transform: translateX(-50px) translateY(-5px); }
    50% { transform: translateX(0) translateY(0); }
    75% { transform: translateX(50px) translateY(-3px); }
    100% { transform: translateX(100px) translateY(0); }
}

@keyframes shieldWall {
    0%, 100% { transform: translateY(0); box-shadow: 0 0 10px rgba(43, 76, 126, 0.3); }
    50% { transform: translateY(-5px); box-shadow: 0 0 20px rgba(43, 76, 126, 0.6); }
}

@keyframes vikingFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shieldPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(43, 76, 126, 0.3); }
    50% { box-shadow: 0 0 25px rgba(43, 76, 126, 0.6); }
}

@keyframes waterWave {
    0% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
    100% { transform: translateX(0); }
}

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

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0D1117 0%, #1A2332 100%);
    border-bottom: 2px solid #2B4C7E;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.btn-login {
    background: transparent;
    border: 1px solid #2B4C7E;
    color: #2B4C7E;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #2B4C7E;
    color: #fff;
}

.btn-register {
    background: #2B4C7E;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: #3A6BA8;
    box-shadow: 0 0 15px rgba(43, 76, 126, 0.5);
}

.btn-demo {
    background: #6B3A2A;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: #8B5A3A;
}

/* === NAVIGATION === */
.main-navigation {
    background: #1A2332;
    border-top: 1px solid rgba(43, 76, 126, 0.3);
}

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

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #B0B0B0;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2B4C7E;
    background: rgba(43, 76, 126, 0.1);
}

.nav-link i {
    margin-right: 5px;
    color: #2B4C7E;
}

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: #1A2332;
    border-top: 1px solid rgba(43, 76, 126, 0.2);
    overflow: hidden;
    padding: 8px 0;
}

.notification-content {
    display: flex;
    gap: 50px;
    animation: notificationScroll 30s linear infinite;
    white-space: nowrap;
}

.notification-content span {
    color: #B0B0B0;
    font-size: 13px;
}

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

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

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

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #1A2332 0%, #0D1117 100%);
    border: 2px solid #2B4C7E;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1;
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #B0B0B0;
    font-size: 28px;
    cursor: pointer;
}

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

.announcement-header-icon i {
    font-size: 48px;
    color: #2B4C7E;
    animation: shieldPulse 2s infinite;
}

.announcement-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    color: #2B4C7E;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(43, 76, 126, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(43, 76, 126, 0.2);
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(43, 76, 126, 0.2);
    border-color: #2B4C7E;
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}

.announcement-badge.hot { background: #e74c3c; color: #fff; }
.announcement-badge.new { background: #2B4C7E; color: #fff; }
.announcement-badge.info { background: #6B3A2A; color: #fff; }

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

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

.announcement-cta {
    display: inline-block;
    background: #2B4C7E;
    color: #fff;
    padding: 12px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.announcement-cta:hover {
    background: #3A6BA8;
    box-shadow: 0 0 20px rgba(43, 76, 126, 0.5);
}

/* === VIKING HERO === */
.viking-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #0D1117 0%, #1A2332 50%, #0D1117 100%);
}

.fjord-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fjord-mountain {
    position: absolute;
    bottom: 0;
    width: 40%;
    height: 70%;
    background: linear-gradient(180deg, transparent 0%, #1A2332 30%, #2B4C7E 100%);
    clip-path: polygon(0 100%, 50% 20%, 100% 100%);
}

.fjord-left { left: -5%; }
.fjord-right { right: -5%; }

.fjord-water {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 30%;
    background: linear-gradient(180deg, rgba(43, 76, 126, 0.3) 0%, rgba(43, 76, 126, 0.1) 100%);
    animation: waterWave 4s ease-in-out infinite;
}

.longship {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    animation: longshipSail 8s ease-in-out infinite;
}

.longship-hull {
    width: 200px;
    height: 40px;
    background: #6B3A2A;
    border-radius: 0 0 50% 50%;
    position: relative;
}

.longship-mast {
    position: absolute;
    bottom: 40px;
    left: 50%;
    width: 4px;
    height: 120px;
    background: #6B3A2A;
    transform: translateX(-50%);
}

.longship-sail-cloth {
    position: absolute;
    bottom: 60px;
    left: 50%;
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, #2B4C7E 0%, #3A6BA8 100%);
    transform: translateX(-50%);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.longship-dragon-head {
    position: absolute;
    bottom: 40px;
    left: -30px;
    width: 30px;
    height: 60px;
    background: #6B3A2A;
    clip-path: polygon(100% 100%, 0 50%, 50% 0);
}

.rune-stones {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
}

.rune-stone {
    font-size: 32px;
    color: #2B4C7E;
    animation: runeGlow 3s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(43, 76, 126, 0.5);
}

.rune-1 { animation-delay: 0s; }
.rune-2 { animation-delay: 0.5s; }
.rune-3 { animation-delay: 1s; }
.rune-4 { animation-delay: 1.5s; }

.shield-wall {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.shield {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, #2B4C7E 0%, #1A2332 100%);
    border: 2px solid #B0B0B0;
    animation: shieldWall 2s ease-in-out infinite;
}

.shield:nth-child(2) { animation-delay: 0.2s; }
.shield:nth-child(3) { animation-delay: 0.4s; }
.shield:nth-child(4) { animation-delay: 0.6s; }
.shield:nth-child(5) { animation-delay: 0.8s; }

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

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

.hero-brand {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #2B4C7E;
    letter-spacing: 8px;
    text-shadow: 0 0 20px rgba(43, 76, 126, 0.5);
    animation: runeGlow 4s ease-in-out infinite;
}

.hero-divider-line {
    display: block;
    width: 80px;
    height: 2px;
    background: #2B4C7E;
    margin: 15px auto;
}

.hero-tagline {
    display: block;
    font-size: 22px;
    color: #B0B0B0;
    letter-spacing: 4px;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 15px;
    line-height: 1.8;
    color: #B0B0B0;
}

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

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

.hero-stat-label {
    font-size: 12px;
    color: #B0B0B0;
    text-transform: uppercase;
}

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

.btn-viking-primary {
    display: inline-block;
    background: #2B4C7E;
    color: #fff;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-viking-primary:hover {
    background: #3A6BA8;
    box-shadow: 0 0 25px rgba(43, 76, 126, 0.5);
    transform: translateY(-2px);
}

.btn-outline-viking {
    display: inline-block;
    background: transparent;
    color: #2B4C7E;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    border: 2px solid #2B4C7E;
    transition: all 0.3s ease;
}

.btn-outline-viking:hover {
    background: #2B4C7E;
    color: #fff;
}

/* === SECTION TITLES === */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-title i {
    margin-right: 10px;
    color: #2B4C7E;
}

.section-subtitle {
    text-align: center;
    color: #B0B0B0;
    margin-bottom: 40px;
    font-size: 15px;
}

/* === RUNE GAMES (6 cards) === */
.rune-games {
    padding: 60px 0;
}

.rune-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.rune-game-card {
    background: linear-gradient(135deg, #1A2332 0%, #0D1117 100%);
    border: 1px solid rgba(43, 76, 126, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.rune-game-card:hover {
    border-color: #2B4C7E;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(43, 76, 126, 0.3);
}

.rune-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(43, 76, 126, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rune-game-card:hover .rune-game-glow {
    opacity: 1;
}

.rune-game-icon {
    font-size: 40px;
    color: #2B4C7E;
    margin-bottom: 15px;
}

.rune-game-rating {
    margin-bottom: 10px;
}

.rune-game-rating i {
    color: #B0B0B0;
    font-size: 12px;
}

.rune-game-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.rune-game-card p {
    font-size: 13px;
    color: #B0B0B0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.rune-game-players {
    font-size: 12px;
    color: #2B4C7E;
}

/* === SHIELD GRID (3x4) === */
.shield-grid {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(43, 76, 126, 0.05) 0%, transparent 100%);
}

.shield-game-map {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.shield-row {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.shield-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(135deg, #1A2332 0%, #0D1117 100%);
    border: 1px solid rgba(43, 76, 126, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.shield-node:hover {
    border-color: #2B4C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(43, 76, 126, 0.3);
}

.node-shield {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #2B4C7E 0%, #1A2332 100%);
    border-radius: 50%;
    border: 2px solid #B0B0B0;
    animation: shieldPulse 3s ease-in-out infinite;
}

.node-shield i {
    color: #fff;
    font-size: 20px;
}

.node-label {
    color: #B0B0B0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

/* === VIKING FEATURES === */
.viking-features {
    padding: 60px 0;
}

.viking-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.viking-feature-card {
    background: linear-gradient(135deg, #1A2332 0%, #0D1117 100%);
    border: 1px solid rgba(43, 76, 126, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.viking-feature-card:hover {
    border-color: #2B4C7E;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(43, 76, 126, 0.2);
}

.viking-feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(43, 76, 126, 0.2) 0%, transparent 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 2px solid rgba(43, 76, 126, 0.3);
}

.viking-feature-icon i {
    font-size: 28px;
    color: #2B4C7E;
}

.viking-feature-card h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
}

.viking-feature-card p {
    font-size: 13px;
    color: #B0B0B0;
    line-height: 1.7;
}

/* === VIKING STATS === */
.viking-stats {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.viking-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 76, 126, 0.1) 0%, rgba(107, 58, 42, 0.05) 100%);
}

.nordic-pattern-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 30px,
        rgba(43, 76, 126, 0.05) 30px,
        rgba(43, 76, 126, 0.05) 31px
    );
}

.viking-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.viking-stat-card {
    background: linear-gradient(135deg, #1A2332 0%, #0D1117 100%);
    border: 1px solid rgba(43, 76, 126, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.viking-stat-card:hover {
    border-color: #2B4C7E;
    box-shadow: 0 0 30px rgba(43, 76, 126, 0.3);
}

.stat-shield-decoration {
    margin-bottom: 15px;
}

.stat-shield-decoration i {
    font-size: 24px;
    color: #2B4C7E;
    animation: shieldPulse 2s infinite;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2B4C7E;
    font-family: 'Cinzel', serif;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 13px;
    color: #B0B0B0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === VIKING PROMOTIONS === */
.viking-promos {
    padding: 60px 0;
}

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

.viking-promo-card {
    background: linear-gradient(135deg, #1A2332 0%, #0D1117 100%);
    border: 1px solid rgba(43, 76, 126, 0.3);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.viking-promo-card:hover {
    border-color: #2B4C7E;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(43, 76, 126, 0.3);
}

.promo-rune-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(43, 76, 126, 0.1) 0%, transparent 60%);
}

.viking-promo-inner {
    position: relative;
    padding: 30px;
    text-align: center;
}

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

.promo-icon i {
    font-size: 36px;
    color: #2B4C7E;
}

.viking-promo-inner h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
}

.viking-promo-inner p {
    font-size: 13px;
    color: #B0B0B0;
    margin-bottom: 15px;
    line-height: 1.7;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #B0B0B0;
}

.promo-badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.promo-badge.hot { background: #e74c3c; color: #fff; }
.promo-badge.new { background: #2B4C7E; color: #fff; }
.promo-badge.vip { background: #6B3A2A; color: #fff; }

.btn-promo {
    display: inline-block;
    background: #2B4C7E;
    color: #fff;
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: #3A6BA8;
    box-shadow: 0 0 15px rgba(43, 76, 126, 0.5);
}

/* === FOOTER CTA === */
.footer-cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.footer-cta-viking-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A2332 0%, #0D1117 100%);
    border: 1px solid rgba(43, 76, 126, 0.3);
    border-radius: 12px;
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

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

.cta-shield-decoration i {
    font-size: 48px;
    color: #2B4C7E;
    animation: shieldPulse 2s infinite;
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #2B4C7E;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.footer-cta-inner p {
    max-width: 600px;
    margin: 0 auto 25px;
    color: #B0B0B0;
    font-size: 15px;
}

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

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

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

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

/* === NEWS SECTION === */
.home-news-section {
    padding: 60px 0;
}

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

.article-card {
    background: linear-gradient(135deg, #1A2332 0%, #0D1117 100%);
    border: 1px solid rgba(43, 76, 126, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
}

.article-card:hover {
    border-color: #2B4C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(43, 76, 126, 0.2);
}

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

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

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

.article-card-title {
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: #B0B0B0;
    display: flex;
    gap: 15px;
}

.article-card-meta i {
    margin-right: 5px;
    color: #2B4C7E;
}

.article-card-excerpt {
    padding: 10px 15px 15px;
    font-size: 13px;
    color: #B0B0B0;
    line-height: 1.6;
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 14px 40px;
    border: 2px solid #2B4C7E;
    border-radius: 6px;
    color: #2B4C7E;
    font-weight: 600;
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #2B4C7E;
    color: #fff;
}

.home-news-placeholder {
    display: contents;
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: #B0B0B0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    color: #2B4C7E;
}

.breadcrumb span {
    color: #B0B0B0;
}

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

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

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

.article-card-more {
    display: inline-block;
    padding: 10px 15px;
    color: #2B4C7E;
    font-size: 13px;
    font-weight: 600;
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
    color: #B0B0B0;
}

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

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

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(43, 76, 126, 0.3);
    border-radius: 6px;
    color: #B0B0B0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #2B4C7E;
    color: #fff;
    border-color: #2B4C7E;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #1A2332 0%, #0D1117 100%);
    border: 1px solid rgba(43, 76, 126, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.article-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #B0B0B0;
    margin-bottom: 20px;
}

.article-meta i {
    margin-right: 5px;
    color: #2B4C7E;
}

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

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

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

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

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

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

.article-tags {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(43, 76, 126, 0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.article-tags i {
    color: #2B4C7E;
}

.article-tags span {
    background: rgba(43, 76, 126, 0.1);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #B0B0B0;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(43, 76, 126, 0.2);
}

.article-nav a {
    color: #2B4C7E;
    font-size: 14px;
}

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

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2B4C7E;
}

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

.related-item {
    background: linear-gradient(135deg, #1A2332 0%, #0D1117 100%);
    border: 1px solid rgba(43, 76, 126, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-item:hover {
    border-color: #2B4C7E;
}

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

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

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

/* === CATEGORY === */
.category-header {
    text-align: center;
    padding: 30px 0;
}

.category-title {
    font-size: 28px;
    color: #2B4C7E;
    margin-bottom: 10px;
}

.category-desc {
    color: #B0B0B0;
    font-size: 14px;
}

.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.provider-tab {
    background: transparent;
    border: 1px solid rgba(43, 76, 126, 0.3);
    color: #B0B0B0;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-tab.active,
.provider-tab:hover {
    background: #2B4C7E;
    color: #fff;
    border-color: #2B4C7E;
}

/* === PAGE === */
.page-article {
    background: linear-gradient(135deg, #1A2332 0%, #0D1117 100%);
    border: 1px solid rgba(43, 76, 126, 0.2);
    border-radius: 12px;
    padding: 30px;
}

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

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

.page-content {
    font-size: 15px;
    line-height: 1.8;
    color: #B0B0B0;
}

.page-content p { margin-bottom: 15px; }
.page-content h2, .page-content h3 { color: #fff; margin: 20px 0 10px; }

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

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

.error-shield i {
    font-size: 64px;
    color: #2B4C7E;
    animation: shieldPulse 2s infinite;
}

.error-code {
    font-size: 72px;
    color: #2B4C7E;
    margin-bottom: 10px;
}

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

.error-desc {
    color: #B0B0B0;
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: 15px;
}

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #1A2332;
    border: 1px solid rgba(43, 76, 126, 0.3);
    border-radius: 50%;
    color: #B0B0B0;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-btn:hover {
    background: #2B4C7E;
    color: #fff;
    border-color: #2B4C7E;
}

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

.sidebar-label {
    display: none;
}

.sidebar-btn[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background: #1A2332;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(43, 76, 126, 0.3);
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0D1117 0%, #1A2332 100%);
    border-top: 2px solid #2B4C7E;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

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

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

.footer-brand-text {
    font-size: 13px;
    color: #B0B0B0;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    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;
    background: rgba(43, 76, 126, 0.2);
    border-radius: 50%;
    color: #B0B0B0;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #2B4C7E;
    color: #fff;
}

.footer-col h4 {
    color: #2B4C7E;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

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

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

.footer-col ul li a {
    color: #B0B0B0;
    font-size: 13px;
    transition: all 0.3s ease;
}

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

.footer-license-bar {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(43, 76, 126, 0.2);
}

.footer-license-bar h4 {
    color: #2B4C7E;
    margin-bottom: 15px;
    font-size: 14px;
}

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

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

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

.license-item span {
    font-size: 11px;
    color: #B0B0B0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(43, 76, 126, 0.2);
}

.footer-copyright {
    color: #B0B0B0;
    font-size: 13px;
}

/* === SWIPER OVERRIDES === */
.swiper-button-next,
.swiper-button-prev {
    color: #2B4C7E;
}

.swiper-pagination-bullet-active {
    background: #2B4C7E;
}

/* === UTILITY === */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
