/* ============================================
   BAREBET THEME - main.css (moban-134)
   Bare Industrial Style - Raw Concrete & Steel
   Colors: #212121 (Black), #FFFFFF (White), #616161 (Gray)
   Fonts: Space Grotesk, JetBrains Mono
   ============================================ */

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

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

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #212121;
    color: #E0E0E0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

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

a:hover {
    color: #616161;
}

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

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

code, .mono {
    font-family: 'JetBrains Mono', monospace;
}

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

/* bareSlide - horizontal slide with fade */
@keyframes bareSlide {
    0% {
        opacity: 0;
        transform: translateX(-40px);
        filter: blur(2px);
    }
    30% {
        opacity: 0.5;
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

/* industrialPulse - mechanical pulse with scale and border */
@keyframes industrialPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(97, 97, 97, 0);
        transform: scale(1);
    }
    25% {
        box-shadow: 0 0 0 4px rgba(97, 97, 97, 0.3);
        transform: scale(1.01);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(97, 97, 97, 0.1);
        transform: scale(1.02);
    }
    75% {
        box-shadow: 0 0 0 4px rgba(97, 97, 97, 0.2);
        transform: scale(1.01);
    }
}

/* rawFade - raw concrete fade effect */
@keyframes rawFade {
    0% {
        opacity: 0;
        filter: contrast(0.5) brightness(0.8);
    }
    40% {
        opacity: 0.6;
        filter: contrast(0.8) brightness(0.9);
    }
    100% {
        opacity: 1;
        filter: contrast(1) brightness(1);
    }
}

/* gridReveal - steel grid reveal animation */
@keyframes gridReveal {
    0% {
        opacity: 0;
        transform: scale(0.8);
        border: 1px solid transparent;
    }
    30% {
        opacity: 0.3;
        border: 1px solid rgba(97, 97, 97, 0.2);
    }
    60% {
        opacity: 0.7;
        transform: scale(1);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        border: 1px solid rgba(97, 97, 97, 0.3);
    }
}

/* === ADDITIONAL UTILITY ANIMATIONS === */
@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 steelShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes counterTick {
    0%, 100% {
        border-bottom-color: #616161;
    }
    50% {
        border-bottom-color: #FFFFFF;
    }
}

@keyframes scanLine {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@keyframes gearSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === HEADER === */
.site-header {
    background: #1A1A1A;
    border-bottom: 2px solid #616161;
    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: grayscale(100%) contrast(1.2);
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.03);
}

.header-time {
    font-family: 'JetBrains Mono', monospace;
    color: #616161;
    font-size: 13px;
    letter-spacing: 1px;
}

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

.btn-login {
    padding: 8px 18px;
    border: 1px solid #616161;
    color: #FFFFFF;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-login:hover {
    background: #616161;
    color: #FFFFFF;
    border-color: #616161;
}

.btn-register {
    padding: 8px 18px;
    background: #FFFFFF;
    color: #212121;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.btn-register:hover {
    background: #E0E0E0;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    color: #212121;
}

.btn-demo {
    padding: 8px 18px;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-demo:hover {
    background: #FFFFFF;
    color: #212121;
}

/* === NAVIGATION === */
.main-navigation {
    background: #181818;
    border-top: 1px solid #333333;
}

.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: #BDBDBD;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #FFFFFF;
    border-bottom-color: #FFFFFF;
    background: rgba(97, 97, 97, 0.1);
}

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

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: #1A1A1A;
    overflow: hidden;
    padding: 8px 0;
    border-top: 1px solid #333333;
}

.notification-content {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: notificationScroll 30s linear infinite;
    color: #616161;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
}

/* === 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(0, 0, 0, 0.9);
}

.announcement-content {
    position: relative;
    background: #1A1A1A;
    border: 2px solid #616161;
    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: #FFFFFF;
    font-size: 28px;
    cursor: pointer;
}

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

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

.announcement-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 2px;
}

.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(97, 97, 97, 0.1);
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: rgba(97, 97, 97, 0.2);
    border-color: #616161;
    transform: translateX(5px);
}

.announcement-badge {
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
}

.announcement-badge.hot {
    background: #FFFFFF;
    color: #212121;
}

.announcement-badge.new {
    background: #616161;
    color: #FFFFFF;
}

.announcement-badge.info {
    background: #333333;
    color: #FFFFFF;
}

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

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

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

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: #FFFFFF;
    color: #212121;
    font-weight: 700;
    font-size: 14px;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: industrialPulse 2s ease infinite;
}

.announcement-cta:hover {
    color: #212121;
    background: #E0E0E0;
    transform: scale(1.02);
}

/* === HERO SECTION - Industrial Bare === */
.barebet-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #212121;
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid #333333;
}

/* Grid Overlay */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    background: #333333;
    opacity: 0.3;
}

.grid-line.gl-1 { left: 16.66%; top: 0; width: 1px; height: 100%; }
.grid-line.gl-2 { left: 33.33%; top: 0; width: 1px; height: 100%; }
.grid-line.gl-3 { left: 50%; top: 0; width: 1px; height: 100%; }
.grid-line.gl-4 { left: 66.66%; top: 0; width: 1px; height: 100%; }
.grid-line.gl-5 { left: 83.33%; top: 0; width: 1px; height: 100%; }
.grid-line.gl-6 {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
}

/* Concrete Texture */
.concrete-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(97, 97, 97, 0.03) 2px,
            rgba(97, 97, 97, 0.03) 4px
        );
    pointer-events: none;
}

/* Hero Content */
.hero-inner-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 40px;
}

.hero-label-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #616161;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

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

.hero-brand {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 12px;
    color: #FFFFFF;
    text-transform: uppercase;
}

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

.hero-tagline {
    display: block;
    font-size: 20px;
    letter-spacing: 6px;
    color: #616161;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-description {
    color: #BDBDBD;
    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: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    border-bottom: 2px solid #616161;
    padding-bottom: 5px;
    animation: counterTick 3s ease infinite;
}

.hero-stat-label {
    font-size: 11px;
    color: #616161;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
    margin-top: 5px;
}

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

.btn-cta-primary {
    display: inline-block;
    padding: 14px 35px;
    background: #FFFFFF;
    color: #212121;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta-primary:hover {
    background: #E0E0E0;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #212121;
}

.btn-cta-outline {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-cta-outline:hover {
    background: #FFFFFF;
    color: #212121;
}

/* === SECTION TITLES === */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 3px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.section-title .title-tag {
    font-family: 'JetBrains Mono', monospace;
    color: #616161;
    margin-right: 8px;
    font-weight: 500;
}

.section-subtitle {
    text-align: center;
    color: #616161;
    font-size: 14px;
    margin-bottom: 40px;
    font-family: 'JetBrains Mono', monospace;
}

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

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

.game-card {
    position: relative;
    display: block;
    background: #1A1A1A;
    border: 1px solid #333333;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.game-card:hover {
    border-color: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.game-card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #616161, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-card-border {
    opacity: 1;
}

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

.game-card-icon i {
    font-size: 40px;
    color: #FFFFFF;
}

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

.game-card-rating i {
    color: #616161;
    font-size: 12px;
}

.game-card h3 {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.game-card-players {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(97, 97, 97, 0.15);
    border: 1px solid #333333;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #616161;
}

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

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

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

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

.grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: #1A1A1A;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    text-align: center;
}

.grid-node:hover {
    border-color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    animation: gridReveal 0.6s ease;
}

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

.grid-node-icon i {
    font-size: 28px;
    color: #FFFFFF;
}

.grid-node-label {
    color: #E0E0E0;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.grid-node-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #616161;
    letter-spacing: 1px;
}

/* === INDUSTRIAL FEATURES === */
.industrial-features {
    padding: 60px 0;
}

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

.feature-card {
    background: #1A1A1A;
    border: 1px solid #333333;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #616161;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #616161;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

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

.feature-icon i {
    font-size: 36px;
    color: #FFFFFF;
}

.feature-card h3 {
    color: #FFFFFF;
    font-size: 17px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.feature-card-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #616161;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #333333;
    letter-spacing: 2px;
}

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

.stats-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(97, 97, 97, 0.05) 1px,
            rgba(97, 97, 97, 0.05) 2px
        );
    pointer-events: none;
}

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

.stat-card {
    background: #1A1A1A;
    border: 1px solid #333333;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    border-color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333333;
}

.stat-index {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #616161;
}

.stat-card-header i {
    font-size: 18px;
    color: #616161;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.stat-label {
    color: #616161;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.stat-bar {
    height: 3px;
    background: #333333;
    margin-top: 10px;
}

.stat-bar-fill {
    height: 100%;
    background: #616161;
    transition: width 1.5s ease;
}

/* === INDUSTRIAL PROMOTIONS === */
.industrial-promos {
    padding: 60px 0;
}

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

.promo-card {
    position: relative;
    background: #1A1A1A;
    border: 1px solid #333333;
    overflow: hidden;
    transition: all 0.4s ease;
}

.promo-card:hover {
    border-color: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.promo-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #333333;
    background: rgba(97, 97, 97, 0.05);
}

.promo-id {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #616161;
    letter-spacing: 1px;
}

.promo-badge {
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.promo-badge.hot {
    background: #FFFFFF;
    color: #212121;
}

.promo-badge.new {
    background: #616161;
    color: #FFFFFF;
}

.promo-badge.vip {
    background: #212121;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.promo-card-body {
    padding: 30px 20px;
    text-align: center;
}

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

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

.promo-card-body h3 {
    color: #FFFFFF;
    font-size: 17px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-weight: 600;
}

.promo-card-body p {
    color: #BDBDBD;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.promo-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #616161;
    font-family: 'JetBrains Mono', monospace;
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: #FFFFFF;
    color: #212121;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.btn-promo:hover {
    background: #E0E0E0;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    color: #212121;
    transform: scale(1.02);
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    position: relative;
    padding: 80px 0;
    margin: 40px 0;
    background: #1A1A1A;
    overflow: hidden;
    border: 1px solid #333333;
}

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

.grid-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(97, 97, 97, 0.05) 40px,
            rgba(97, 97, 97, 0.05) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(97, 97, 97, 0.05) 40px,
            rgba(97, 97, 97, 0.05) 41px
        );
    pointer-events: none;
}

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

.cta-decoration {
    margin-bottom: 15px;
}

.cta-beam {
    display: inline-block;
    width: 60px;
    height: 4px;
    background: #616161;
}

.cta-label-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #616161;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.footer-cta-inner p {
    color: #BDBDBD;
    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: #E0E0E0;
    font-size: 14px;
    font-family: 'JetBrains Mono', monospace;
}

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

.cta-main-btn {
    padding: 16px 50px;
    font-size: 16px;
    animation: industrialPulse 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: #1A1A1A;
    border: 1px solid #333333;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.article-card-title span,
.article-card-title a {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    display: block;
}

.article-card-meta {
    padding: 0 15px;
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #616161;
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', monospace;
}

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

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

.article-card-more {
    display: inline-block;
    padding: 8px 20px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #616161;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 15px 15px;
    transition: all 0.3s ease;
}

.article-card-more:hover {
    background: #FFFFFF;
    color: #212121;
    border-color: #FFFFFF;
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.view-more-btn:hover {
    background: #FFFFFF;
    color: #212121;
}

.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;
    background: #333333;
    color: #FFFFFF;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #616161;
}

.sidebar-btn:hover {
    transform: scale(1.1);
    background: #616161;
    color: #FFFFFF;
}

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

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

.sidebar-label {
    display: none;
}

/* === FOOTER === */
.site-footer {
    background: #1A1A1A;
    border-top: 2px solid #616161;
    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: grayscale(100%) contrast(1.2);
}

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

.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    color: #212121;
    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;
    background: #333333;
    color: #FFFFFF;
    transition: all 0.3s ease;
    border: 1px solid #616161;
}

.footer-social-links a:hover {
    background: #FFFFFF;
    color: #212121;
    transform: scale(1.1);
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
}

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

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

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

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

.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 13px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.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(97, 97, 97, 0.1);
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.license-item:hover {
    border-color: #616161;
    background: rgba(97, 97, 97, 0.2);
}

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

.license-item span {
    font-size: 11px;
    color: #616161;
    font-family: 'JetBrains Mono', monospace;
}

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

.footer-copyright {
    color: #616161;
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1px;
}

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 12px;
    color: #616161;
    border-bottom: 1px solid #333333;
    margin-bottom: 20px;
    font-family: 'JetBrains Mono', monospace;
}

.breadcrumb a {
    color: #FFFFFF;
}

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

.breadcrumb span {
    color: #616161;
}

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

.category-header-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #616161;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

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

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

.category-desc {
    color: #BDBDBD;
    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(97, 97, 97, 0.1);
    border: 1px solid #333333;
    color: #E0E0E0;
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.provider-tab:hover,
.provider-tab.active {
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: #212121;
}

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

/* === SINGLE ARTICLE === */
.single-article {
    background: #1A1A1A;
    border: 1px solid #333333;
    padding: 30px;
    margin-bottom: 30px;
}

.article-header-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #616161;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

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

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

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 12px;
    color: #616161;
    font-family: 'JetBrains Mono', monospace;
}

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

.article-meta a {
    color: #FFFFFF;
}

.article-featured-img {
    margin-bottom: 20px;
    border: 1px solid #333333;
}

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

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

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

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

.article-content a {
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.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 #616161;
    padding: 15px 20px;
    background: rgba(97, 97, 97, 0.1);
    margin: 20px 0;
}

.article-content img {
    margin: 15px 0;
    border: 1px solid #333333;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid #333333;
    margin-top: 20px;
}

.article-tags i {
    color: #616161;
}

.article-tags span {
    padding: 5px 12px;
    background: rgba(97, 97, 97, 0.1);
    border: 1px solid #333333;
    font-size: 12px;
    color: #E0E0E0;
    font-family: 'JetBrains Mono', monospace;
}

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

/* === ARTICLE NAV === */
.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #333333;
    margin-top: 20px;
}

.article-nav a {
    color: #FFFFFF;
    font-size: 14px;
    font-family: 'JetBrains Mono', monospace;
}

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

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

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

.related-posts-title .title-tag {
    font-family: 'JetBrains Mono', monospace;
    color: #616161;
    margin-right: 8px;
}

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

.related-item {
    display: block;
    background: #1A1A1A;
    border: 1px solid #333333;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

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

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

/* === PAGE === */
.page-article {
    background: #1A1A1A;
    border: 1px solid #333333;
    padding: 30px;
}

.page-header-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #616161;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

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

.page-featured-img {
    margin-bottom: 20px;
    border: 1px solid #333333;
}

.page-content {
    color: #E0E0E0;
    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;
    background: rgba(97, 97, 97, 0.1);
    border: 1px solid #333333;
    color: #E0E0E0;
    font-size: 13px;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: #212121;
}

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

.error-industrial {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.error-beam {
    width: 80px;
    height: 4px;
    background: #616161;
    margin: 0 auto 15px;
}

.error-gear {
    width: 60px;
    height: 60px;
    border: 3px solid #616161;
    border-radius: 50%;
    margin: 0 auto;
    animation: gearSpin 4s linear infinite;
}

.error-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #616161;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.error-code {
    font-size: 100px;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 10px;
}

.error-title {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.error-desc {
    color: #BDBDBD;
    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: #616161;
    font-family: 'JetBrains Mono', monospace;
}

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

/* === SCAN LINE EFFECT (JS generated) === */
.scan-line-effect {
    animation: scanLine 0.8s linear forwards;
}

/* === GRID PARTICLE === */
.grid-particle {
    animation: gridReveal 4s ease infinite;
}

/* === RAW SWEEP (JS) === */
.js-raw-sweep {
    animation: rawFade 2.5s ease forwards;
}
