/* ============================================
   ABYSSBET THEME - main.css (moban-147)
   Deep Ocean Abyss Theme with Gradient Descent
   Colors: #050A14 (DeepBlueBlack), #9E9E9E (Silver)
   Fonts: Bitter (headings), PT Sans (body)
   ============================================ */

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

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

body {
    font-family: 'PT Sans', sans-serif;
    background: #050A14;
    color: #C8CCD4;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

a:hover {
    color: #E0E0E0;
    text-shadow: 0 0 10px rgba(158, 158, 158, 0.5);
}

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

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

.silver-text {
    color: #9E9E9E;
    background: linear-gradient(90deg, #9E9E9E, #E0E0E0, #9E9E9E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.abyss-text {
    background: linear-gradient(90deg, #0A1628, #1A2A4A, #0A1628);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* abyssDescent - Simulates descending into the deep ocean abyss */
@keyframes abyssDescent {
    0% {
        opacity: 0;
        transform: translateY(-60px) scale(0.95);
        filter: blur(3px) brightness(1.2);
    }
    20% {
        opacity: 0.4;
        transform: translateY(-30px) scale(0.97);
        filter: blur(2px) brightness(1.1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) scale(0.99);
        filter: blur(1px) brightness(1.05);
    }
    80% {
        opacity: 0.95;
        transform: translateY(-2px) scale(1);
        filter: blur(0) brightness(1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0) brightness(1);
    }
}

/* deepCurrent - Simulates deep ocean current flowing horizontally */
@keyframes deepCurrent {
    0% {
        transform: translateX(-100%) skewX(-5deg);
        opacity: 0;
    }
    15% {
        opacity: 0.3;
    }
    50% {
        transform: translateX(0%) skewX(0deg);
        opacity: 0.6;
    }
    85% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(100%) skewX(5deg);
        opacity: 0;
    }
}

/* pressureWave - Simulates deep sea pressure waves pulsing outward */
@keyframes pressureWave {
    0%, 100% {
        box-shadow:
            0 0 15px rgba(158, 158, 158, 0.1),
            0 0 30px rgba(10, 22, 40, 0.2),
            inset 0 0 15px rgba(158, 158, 158, 0.03);
        transform: scale(1);
    }
    25% {
        box-shadow:
            0 0 25px rgba(158, 158, 158, 0.2),
            0 0 50px rgba(10, 22, 40, 0.3),
            inset 0 0 25px rgba(158, 158, 158, 0.06);
        transform: scale(1.01);
    }
    50% {
        box-shadow:
            0 0 35px rgba(158, 158, 158, 0.3),
            0 0 70px rgba(10, 22, 40, 0.4),
            inset 0 0 35px rgba(158, 158, 158, 0.09);
        transform: scale(1.02);
    }
    75% {
        box-shadow:
            0 0 25px rgba(158, 158, 158, 0.2),
            0 0 50px rgba(10, 22, 40, 0.3),
            inset 0 0 25px rgba(158, 158, 158, 0.06);
        transform: scale(1.01);
    }
}

/* darkDrift - Simulates slow drifting in dark waters */
@keyframes darkDrift {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    20% {
        transform: translate(10px, -15px) rotate(1deg);
        opacity: 0.5;
    }
    40% {
        transform: translate(-5px, -25px) rotate(-1deg);
        opacity: 0.7;
    }
    60% {
        transform: translate(-15px, -10px) rotate(0.5deg);
        opacity: 0.5;
    }
    80% {
        transform: translate(5px, 5px) rotate(-0.5deg);
        opacity: 0.4;
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
}

@keyframes vortexSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

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

@keyframes counterGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(158, 158, 158, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(158, 158, 158, 0.8), 0 0 40px rgba(10, 22, 40, 0.3);
    }
}

@keyframes abyssPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(158, 158, 158, 0.15), 0 0 40px rgba(5, 10, 20, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(158, 158, 158, 0.3), 0 0 60px rgba(5, 10, 20, 0.2);
    }
}

@keyframes abyssBorder {
    0% { border-color: rgba(158, 158, 158, 0.3); }
    33% { border-color: rgba(10, 22, 40, 0.6); }
    66% { border-color: rgba(158, 158, 158, 0.5); }
    100% { border-color: rgba(158, 158, 158, 0.3); }
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pressureRipple {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #050A14 0%, #0A1220 50%, #0D1628 100%);
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #0A1628, #9E9E9E, #0A1628) 1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(158, 158, 158, 0.3)) brightness(0.9);
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 15px rgba(158, 158, 158, 0.6)) brightness(1.1);
    transform: scale(1.05);
}

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

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

.btn-login {
    padding: 8px 18px;
    border: 1px solid #9E9E9E;
    color: #9E9E9E;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    font-family: 'PT Sans', sans-serif;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #9E9E9E;
    color: #050A14;
}

.btn-register {
    padding: 8px 18px;
    background: linear-gradient(135deg, #1A2A4A, #0A1628);
    color: #E0E0E0;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    font-family: 'PT Sans', sans-serif;
    transition: all 0.3s ease;
    border: 1px solid rgba(158, 158, 158, 0.3);
}

.btn-register:hover {
    background: linear-gradient(135deg, #0A1628, #1A2A4A);
    box-shadow: 0 0 15px rgba(158, 158, 158, 0.3);
    color: #fff;
    border-color: #9E9E9E;
}

.btn-demo {
    padding: 8px 18px;
    border: 1px solid rgba(158, 158, 158, 0.5);
    color: #C8CCD4;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    font-family: 'PT Sans', sans-serif;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: rgba(158, 158, 158, 0.15);
    color: #E0E0E0;
    border-color: #9E9E9E;
}

/* === NAVIGATION === */
.main-navigation {
    background: #070E1A;
    border-top: 1px solid rgba(158, 158, 158, 0.1);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #C8CCD4;
    font-weight: 700;
    font-size: 13px;
    font-family: 'PT Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #E0E0E0;
    background: rgba(158, 158, 158, 0.08);
    text-shadow: 0 0 10px rgba(158, 158, 158, 0.4);
}

.nav-link i {
    margin-right: 5px;
    color: #9E9E9E;
}

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, rgba(10, 22, 40, 0.4), rgba(158, 158, 158, 0.08), rgba(10, 22, 40, 0.4));
    overflow: hidden;
    padding: 8px 0;
    border-top: 1px solid rgba(158, 158, 158, 0.15);
}

.notification-content {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: notificationScroll 30s linear infinite;
    color: #9E9E9E;
    font-size: 13px;
}

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

.announcement-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #0A1628 0%, #050A14 100%);
    border: 2px solid;
    border-image: linear-gradient(90deg, #0A1628, #9E9E9E, #0A1628) 1;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    animation: fadeInUp 0.5s ease;
}

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

.announcement-close:hover {
    color: #E0E0E0;
}

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

.announcement-header-icon i {
    font-size: 48px;
    color: #9E9E9E;
    animation: pressureWave 3s ease infinite;
}

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

.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(10, 22, 40, 0.5);
    border: 1px solid rgba(158, 158, 158, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(158, 158, 158, 0.08);
    border-color: rgba(158, 158, 158, 0.4);
    transform: translateX(5px);
}

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

.announcement-badge.hot {
    background: #8B0000;
    color: #E0E0E0;
}

.announcement-badge.new {
    background: #1A4A3A;
    color: #C8CCD4;
}

.announcement-badge.info {
    background: #1A2A4A;
    color: #C8CCD4;
}

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

.announcement-item i.fa-chevron-right {
    color: #9E9E9E;
    font-size: 12px;
}

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #1A2A4A, #0A1628);
    color: #E0E0E0;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    animation: abyssPulse 2s ease infinite;
    border: 1px solid rgba(158, 158, 158, 0.3);
}

.announcement-cta:hover {
    color: #fff;
    transform: scale(1.05);
    border-color: #9E9E9E;
}

/* === HERO SECTION - Abyss Descent === */
.abyssbet-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center bottom, #0A1628 0%, #050A14 60%, #030608 100%);
    border-radius: 15px;
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid rgba(158, 158, 158, 0.15);
}

/* Abyss Currents */
.abyss-currents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.abyss-current {
    position: absolute;
    width: 4px;
    height: 100%;
    opacity: 0.4;
    animation: deepCurrent 6s ease infinite;
}

.abyss-current.current-1 {
    left: 15%;
    background: linear-gradient(180deg, transparent, rgba(158, 158, 158, 0.3), transparent);
    animation-delay: 0s;
}

.abyss-current.current-2 {
    left: 30%;
    background: linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.5), transparent);
    animation-delay: 1s;
}

.abyss-current.current-3 {
    left: 50%;
    background: linear-gradient(180deg, transparent, rgba(158, 158, 158, 0.2), transparent);
    animation-delay: 2s;
}

.abyss-current.current-4 {
    left: 70%;
    background: linear-gradient(180deg, transparent, rgba(26, 42, 74, 0.4), transparent);
    animation-delay: 3s;
}

.abyss-current.current-5 {
    left: 85%;
    background: linear-gradient(180deg, transparent, rgba(158, 158, 158, 0.15), transparent);
    animation-delay: 4s;
}

/* Abyss Vortex */
.abyss-vortex {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
}

.vortex-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(158, 158, 158, 0.15);
    animation: vortexSpin 20s linear infinite;
}

.vortex-ring-1 {
    width: 220px;
    height: 220px;
    margin-top: -110px;
    margin-left: -110px;
    border-color: rgba(158, 158, 158, 0.08);
    animation-duration: 25s;
}

.vortex-ring-2 {
    width: 180px;
    height: 180px;
    margin-top: -90px;
    margin-left: -90px;
    border-color: rgba(158, 158, 158, 0.12);
    animation-duration: 20s;
    animation-direction: reverse;
}

.vortex-ring-3 {
    width: 140px;
    height: 140px;
    margin-top: -70px;
    margin-left: -70px;
    border-color: rgba(158, 158, 158, 0.18);
    animation-duration: 15s;
}

.vortex-ring-4 {
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    border-color: rgba(158, 158, 158, 0.25);
    animation-duration: 12s;
    animation-direction: reverse;
}

.vortex-ring-5 {
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
    border-color: rgba(158, 158, 158, 0.35);
    animation-duration: 8s;
}

.vortex-ring-6 {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    border-color: rgba(158, 158, 158, 0.5);
    animation-duration: 5s;
    animation-direction: reverse;
}

.vortex-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle, #9E9E9E, #0A1628);
    animation: pressureWave 3s ease infinite;
}

/* Abyss Descent Effect */
.abyss-descent-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(158, 158, 158, 0.03) 10%,
        rgba(10, 22, 40, 0.05) 20%,
        rgba(158, 158, 158, 0.03) 30%,
        rgba(5, 10, 20, 0.05) 40%,
        transparent 50%);
    animation: deepCurrent 10s linear infinite;
    pointer-events: none;
}

/* Hero Content */
.hero-inner-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 40px;
    animation: abyssDescent 1.2s ease-out;
}

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

.hero-brand {
    display: block;
    font-family: 'Bitter', serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 8px;
    background: linear-gradient(90deg, #9E9E9E, #E0E0E0, #9E9E9E, #C8CCD4);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: deepCurrent 6s ease infinite;
    text-shadow: none;
}

.hero-divider-line {
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #0A1628, #9E9E9E, #0A1628);
    margin: 15px 0;
    border-radius: 2px;
}

.hero-tagline {
    display: block;
    font-size: 22px;
    letter-spacing: 4px;
    color: #9E9E9E;
    font-family: 'Bitter', serif;
    font-weight: 500;
}

.hero-description {
    color: #A0A8B4;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

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

.hero-stat-number {
    display: block;
    font-family: 'Bitter', serif;
    font-size: 28px;
    font-weight: 700;
    color: #9E9E9E;
    animation: counterGlow 3s ease infinite;
}

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

.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-silver-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #9E9E9E, #6B7280);
    color: #050A14;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'PT Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-silver-primary:hover {
    background: linear-gradient(135deg, #E0E0E0, #9E9E9E);
    box-shadow: 0 0 20px rgba(158, 158, 158, 0.4);
    transform: translateY(-2px);
    color: #050A14;
}

.btn-outline-silver {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #9E9E9E;
    color: #9E9E9E;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    font-family: 'PT Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-silver:hover {
    background: #9E9E9E;
    color: #050A14;
    box-shadow: 0 0 20px rgba(158, 158, 158, 0.3);
}

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

.section-title i {
    margin-right: 10px;
    animation: darkDrift 4s ease infinite;
}

.section-subtitle {
    text-align: center;
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 40px;
}

/* === ABYSS STAR GAMES (6 cards) === */
.abyss-star-games {
    padding: 60px 0;
}

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

.abyss-star-game-card {
    position: relative;
    display: block;
    background: linear-gradient(135deg, #0A1628, #070E1A);
    border: 1px solid rgba(158, 158, 158, 0.12);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}

.abyss-star-game-card:hover {
    border-color: rgba(158, 158, 158, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(5, 10, 20, 0.6), 0 0 20px rgba(158, 158, 158, 0.1);
    animation: pressureWave 2s ease infinite;
}

.abyss-star-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(158, 158, 158, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.abyss-star-game-icon {
    margin-bottom: 15px;
}

.abyss-star-game-icon i {
    font-size: 40px;
    color: #9E9E9E;
    animation: darkDrift 4s ease infinite;
}

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

.abyss-star-game-rating i {
    color: #9E9E9E;
    font-size: 12px;
}

.abyss-star-game-card h3 {
    color: #E0E0E0;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Bitter', serif;
}

.abyss-star-game-card p {
    color: #8A92A0;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.abyss-star-game-players {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(158, 158, 158, 0.15);
    border-radius: 20px;
    font-size: 11px;
    color: #9E9E9E;
}

.abyss-star-game-players i {
    margin-right: 5px;
}

/* === ABYSS GRID (3x4) === */
.abyss-grid-section {
    padding: 60px 0;
}

.abyss-grid-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.abyss-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, #0A1628, #070E1A);
    border: 1px solid rgba(158, 158, 158, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.abyss-grid-node:hover {
    border-color: rgba(158, 158, 158, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(5, 10, 20, 0.5), 0 0 15px rgba(158, 158, 158, 0.08);
    animation: abyssBorder 3s linear infinite;
}

.abyss-node-icon {
    margin-bottom: 10px;
}

.abyss-node-icon i {
    font-size: 28px;
    background: linear-gradient(135deg, #9E9E9E, #6B7280, #C8CCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.abyss-node-label {
    color: #C8CCD4;
    font-size: 13px;
    font-weight: 700;
    font-family: 'PT Sans', sans-serif;
}

/* === ABYSS FEATURES === */
.abyss-features {
    padding: 60px 0;
}

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

.abyss-feature-card {
    background: linear-gradient(135deg, #0A1628, #070E1A);
    border: 1px solid rgba(158, 158, 158, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.abyss-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #050A14, #9E9E9E, #050A14);
    background-size: 200% 100%;
    animation: deepCurrent 4s ease infinite;
}

.abyss-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(158, 158, 158, 0.4);
    box-shadow: 0 10px 30px rgba(5, 10, 20, 0.5), 0 0 20px rgba(158, 158, 158, 0.08);
}

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

.abyss-feature-icon i {
    font-size: 36px;
    background: linear-gradient(135deg, #9E9E9E, #6B7280);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.abyss-feature-card h3 {
    color: #E0E0E0;
    font-size: 17px;
    margin-bottom: 12px;
    font-family: 'Bitter', serif;
}

.abyss-feature-card p {
    color: #8A92A0;
    font-size: 13px;
    line-height: 1.7;
}

/* === ABYSS STATS === */
.abyss-stats {
    padding: 60px 0;
    position: relative;
}

.abyss-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.abyss-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.3), rgba(5, 10, 20, 0.5));
    pointer-events: none;
}

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

.abyss-stat-card {
    background: linear-gradient(135deg, #0A1628, #070E1A);
    border: 2px solid rgba(158, 158, 158, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.abyss-stat-card:hover {
    border-color: #9E9E9E;
    box-shadow: 0 0 30px rgba(158, 158, 158, 0.15);
    transform: translateY(-3px);
}

.stat-abyss-decoration {
    margin-bottom: 10px;
}

.stat-abyss-decoration i {
    font-size: 20px;
    color: #9E9E9E;
    animation: darkDrift 3s ease infinite;
}

.stat-abyss-decoration.bottom {
    margin-bottom: 0;
    margin-top: 10px;
}

.stat-number {
    font-family: 'Bitter', serif;
    font-size: 36px;
    font-weight: 700;
    color: #9E9E9E;
    animation: counterGlow 3s ease infinite;
    margin-bottom: 5px;
}

.stat-label {
    color: #8A92A0;
    font-size: 13px;
    text-transform: uppercase;
}

/* === ABYSS PROMOTIONS === */
.abyss-promos {
    padding: 60px 0;
}

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

.abyss-promo-card {
    position: relative;
    background: linear-gradient(135deg, #0A1628, #070E1A);
    border: 1px solid rgba(158, 158, 158, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.abyss-promo-card:hover {
    border-color: rgba(158, 158, 158, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(5, 10, 20, 0.6), 0 0 20px rgba(158, 158, 158, 0.1);
}

.promo-abyss-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(158, 158, 158, 0.05), transparent);
    pointer-events: none;
}

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

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

.promo-icon i {
    font-size: 36px;
    color: #9E9E9E;
    animation: darkDrift 3s ease infinite;
}

.abyss-promo-inner h3 {
    color: #E0E0E0;
    font-size: 17px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-family: 'Bitter', serif;
}

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

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

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

.promo-badge.hot {
    background: #8B0000;
    color: #E0E0E0;
}

.promo-badge.new {
    background: #1A4A3A;
    color: #C8CCD4;
}

.promo-badge.vip {
    background: linear-gradient(135deg, #9E9E9E, #6B7280);
    color: #050A14;
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #1A2A4A, #0A1628);
    color: #E0E0E0;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'PT Sans', sans-serif;
    transition: all 0.3s ease;
    border: 1px solid rgba(158, 158, 158, 0.3);
}

.btn-promo:hover {
    background: linear-gradient(135deg, #0A1628, #1A2A4A);
    box-shadow: 0 0 15px rgba(158, 158, 158, 0.2);
    color: #fff;
    transform: scale(1.05);
    border-color: #9E9E9E;
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    position: relative;
    padding: 80px 0;
    margin: 40px 0;
    background: linear-gradient(135deg, #0A1628, #050A14);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(158, 158, 158, 0.15);
}

.footer-cta-abyssfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

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

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

.cta-abyss-vortex {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1A2A4A, #0A1628);
    border: 2px solid rgba(158, 158, 158, 0.3);
    border-radius: 50%;
    animation: vortexSpin 10s linear infinite;
    position: relative;
}

.cta-abyss-vortex::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, #9E9E9E, #0A1628);
    animation: pressureWave 2s ease infinite;
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #9E9E9E;
    margin-bottom: 15px;
    letter-spacing: 3px;
    font-family: 'Bitter', serif;
}

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

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

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

.cta-feature i {
    color: #9E9E9E;
    margin-right: 8px;
}

.cta-main-btn {
    padding: 16px 50px;
    font-size: 18px;
    animation: abyssPulse 2s ease infinite;
}

/* === 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 {
    display: block;
    background: linear-gradient(135deg, #0A1628, #070E1A);
    border: 1px solid rgba(158, 158, 158, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: rgba(158, 158, 158, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(5, 10, 20, 0.5), 0 0 15px rgba(158, 158, 158, 0.08);
}

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

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

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

.article-card-title {
    padding: 15px 15px 8px;
}

.article-card-title span,
.article-card-title a {
    color: #E0E0E0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    display: block;
    font-family: 'Bitter', serif;
}

.article-card-meta {
    padding: 0 15px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 8px;
}

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

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

.article-card-more {
    display: inline-block;
    padding: 8px 20px;
    color: #9E9E9E;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid #9E9E9E;
    border-radius: 20px;
    margin: 0 15px 15px;
    transition: all 0.3s ease;
    font-family: 'PT Sans', sans-serif;
}

.article-card-more:hover {
    background: #9E9E9E;
    color: #050A14;
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    border: 2px solid #9E9E9E;
    color: #9E9E9E;
    border-radius: 25px;
    font-weight: 700;
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.3s ease;
    font-family: 'PT Sans', sans-serif;
}

.view-more-btn:hover {
    background: #9E9E9E;
    color: #050A14;
}

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

/* === CONTENT AREA & SIDEBAR === */
.content-area {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

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

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1A2A4A, #0A1628);
    color: #9E9E9E;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(158, 158, 158, 0.2);
}

.sidebar-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(158, 158, 158, 0.2);
    color: #E0E0E0;
    border-color: #9E9E9E;
}

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

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

.sidebar-label {
    display: none;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #070E1A 0%, #050A14 100%);
    border-top: 2px solid;
    border-image: linear-gradient(90deg, #0A1628, #9E9E9E, #0A1628) 1;
    padding: 50px 0 30px;
    margin-top: 40px;
}

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

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

.footer-brand-logo img {
    height: 45px;
    filter: drop-shadow(0 0 10px rgba(158, 158, 158, 0.3)) brightness(0.9);
}

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

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #8B0000;
    color: #E0E0E0;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

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

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 22, 40, 0.6);
    color: #9E9E9E;
    transition: all 0.3s ease;
    border: 1px solid rgba(158, 158, 158, 0.15);
}

.footer-social-links a:hover {
    background: #1A2A4A;
    color: #E0E0E0;
    transform: scale(1.1);
    border-color: #9E9E9E;
}

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

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

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

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

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

.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(158, 158, 158, 0.1);
    border-bottom: 1px solid rgba(158, 158, 158, 0.1);
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    color: #9E9E9E;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: 'Bitter', serif;
}

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

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(158, 158, 158, 0.12);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.license-item:hover {
    border-color: rgba(158, 158, 158, 0.5);
    background: rgba(158, 158, 158, 0.05);
}

.license-item i {
    font-size: 20px;
    color: #9E9E9E;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

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

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 13px;
    color: #6B7280;
    border-bottom: 1px solid rgba(158, 158, 158, 0.08);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #9E9E9E;
}

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

.breadcrumb span {
    color: #4B5563;
}

/* === CATEGORY === */
.category-header {
    padding: 20px 0;
    margin-bottom: 20px;
}

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

.category-title i {
    margin-right: 10px;
    animation: darkDrift 3s ease infinite;
}

.category-desc {
    color: #8A92A0;
    margin-top: 10px;
    font-size: 14px;
}

.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.provider-tab {
    padding: 8px 16px;
    background: rgba(10, 22, 40, 0.5);
    border: 1px solid rgba(158, 158, 158, 0.15);
    border-radius: 20px;
    color: #C8CCD4;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
}

.provider-tab:hover,
.provider-tab.active {
    background: linear-gradient(135deg, #1A2A4A, #0A1628);
    border-color: #9E9E9E;
    color: #E0E0E0;
}

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

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #0A1628, #070E1A);
    border: 1px solid rgba(158, 158, 158, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

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

.article-title {
    font-size: 28px;
    color: #E0E0E0;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Bitter', serif;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #6B7280;
}

.article-meta i {
    color: #9E9E9E;
    margin-right: 5px;
}

.article-meta a {
    color: #9E9E9E;
}

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

.article-featured-img img {
    width: 100%;
    height: auto;
    filter: brightness(0.9);
}

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

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #9E9E9E;
    margin: 20px 0 10px;
    font-family: 'Bitter', serif;
}

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

.article-content a {
    color: #E0E0E0;
    text-decoration: underline;
}

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

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

.article-content blockquote {
    border-left: 4px solid #9E9E9E;
    padding: 15px 20px;
    background: rgba(158, 158, 158, 0.03);
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
}

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

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(158, 158, 158, 0.1);
    margin-top: 20px;
}

.article-tags i {
    color: #9E9E9E;
}

.article-tags span {
    padding: 5px 12px;
    background: rgba(10, 22, 40, 0.5);
    border-radius: 15px;
    font-size: 12px;
    color: #C8CCD4;
}

.article-tags span a {
    color: #C8CCD4;
}

/* === ARTICLE NAV === */
.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(158, 158, 158, 0.1);
    margin-top: 20px;
}

.article-nav a {
    color: #9E9E9E;
    font-size: 14px;
}

.article-nav a:hover {
    color: #E0E0E0;
}

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

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: 'Bitter', serif;
}

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

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

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

.related-item:hover {
    border-color: rgba(158, 158, 158, 0.4);
    transform: translateY(-3px);
}

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

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.related-item-title {
    padding: 10px;
    font-size: 13px;
    color: #E0E0E0;
    line-height: 1.4;
    font-family: 'Bitter', serif;
}

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

.page-title {
    font-size: 28px;
    color: #9E9E9E;
    margin-bottom: 20px;
    font-family: 'Bitter', serif;
}

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

.page-content {
    color: #C8CCD4;
    line-height: 1.8;
}

.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(10, 22, 40, 0.5);
    border: 1px solid rgba(158, 158, 158, 0.15);
    color: #C8CCD4;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: linear-gradient(135deg, #1A2A4A, #0A1628);
    border-color: #9E9E9E;
    color: #E0E0E0;
}

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

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

.error-abyss-vortex {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1A2A4A, #0A1628);
    border: 2px solid rgba(158, 158, 158, 0.3);
    border-radius: 50%;
    animation: vortexSpin 8s linear infinite;
    position: relative;
}

.error-abyss-vortex::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, #9E9E9E, #050A14);
    animation: pressureWave 2s ease infinite;
}

.error-code {
    font-size: 100px;
    background: linear-gradient(135deg, #9E9E9E, #6B7280, #C8CCD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-family: 'Bitter', serif;
    font-weight: 700;
}

.error-title {
    font-size: 24px;
    color: #9E9E9E;
    margin-bottom: 15px;
    font-family: 'Bitter', serif;
}

.error-desc {
    color: #8A92A0;
    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: #8A92A0;
}

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