/* ============================================
   MINIMALIST THEME - main.css (moban-129)
   Clean Minimal Design - Whitespace Driven
   Colors: #9E9E9E (Gray), #FFFFFF (White), #212121 (Black)
   Fonts: Inter, IBM Plex Sans
   ============================================ */

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

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

body {
    font-family: 'IBM Plex Sans', 'Inter', sans-serif;
    background: #FFFFFF;
    color: #212121;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #212121;
    letter-spacing: -0.02em;
}

h1 { font-weight: 700; }
h2 { font-weight: 600; }
h3 { font-weight: 500; }

a {
    text-decoration: none;
    color: #212121;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: #9E9E9E;
}

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

p {
    margin-bottom: 1em;
}

ul, ol {
    list-style: none;
}

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

.text-gray {
    color: #9E9E9E;
}

.text-dark {
    color: #212121;
}

.divider {
    width: 60px;
    height: 2px;
    background: #212121;
    margin: 20px 0;
}

.divider-center {
    width: 60px;
    height: 2px;
    background: #212121;
    margin: 20px auto;
}

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

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes minimalPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.02);
    }
}

@keyframes cleanLine {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

/* === HEADER === */
.site-header {
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
}

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

.logo img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo img:hover {
    opacity: 0.7;
}

.header-time {
    font-family: 'IBM Plex Sans', monospace;
    color: #9E9E9E;
    font-size: 13px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.header-btn-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-login {
    padding: 10px 24px;
    border: 1px solid #212121;
    color: #212121;
    border-radius: 0;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
    font-family: 'Inter', sans-serif;
}

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

.btn-register {
    padding: 10px 24px;
    background: #212121;
    color: #FFFFFF;
    border-radius: 0;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid #212121;
    font-family: 'Inter', sans-serif;
}

.btn-register:hover {
    background: transparent;
    color: #212121;
}

.btn-demo {
    padding: 10px 24px;
    border: 1px solid #9E9E9E;
    color: #9E9E9E;
    border-radius: 0;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
    font-family: 'Inter', sans-serif;
}

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

/* === NAVIGATION === */
.main-navigation {
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.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: 16px 20px;
    color: #212121;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: #212121;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: #9E9E9E;
}

.nav-link i {
    margin-right: 6px;
    font-size: 12px;
    color: #9E9E9E;
}

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

/* === NOTIFICATION BAR === */
.notification-bar {
    background: #212121;
    overflow: hidden;
    padding: 10px 0;
}

.notification-content {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: notificationScroll 30s linear infinite;
    color: #FFFFFF;
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

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

/* === 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(33, 33, 33, 0.6);
    backdrop-filter: blur(8px);
}

.announcement-content {
    position: relative;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 48px;
    max-width: 520px;
    width: 90%;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #9E9E9E;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

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

.announcement-header-icon i {
    font-size: 36px;
    color: #212121;
}

.announcement-title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #212121;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #FAFAFA;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.announcement-item:hover {
    background: #F5F5F5;
    border-color: #212121;
    transform: translateX(4px);
}

.announcement-badge {
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

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

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

.announcement-badge.info {
    background: transparent;
    color: #212121;
    border: 1px solid #212121;
}

.announcement-text {
    flex: 1;
    font-size: 13px;
    color: #212121;
    font-weight: 400;
    line-height: 1.5;
}

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

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

.announcement-cta {
    display: inline-block;
    padding: 14px 48px;
    background: #212121;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.announcement-cta:hover {
    background: #9E9E9E;
    color: #FFFFFF;
}

/* === HERO SECTION === */
.minimalist-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAFAFA;
    margin: 40px 0;
    overflow: hidden;
}

.hero-line-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-line-decoration .h-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.04);
}

.hero-line-decoration .h-line:nth-child(1) { left: 20%; }
.hero-line-decoration .h-line:nth-child(2) { left: 40%; }
.hero-line-decoration .h-line:nth-child(3) { left: 60%; }
.hero-line-decoration .h-line:nth-child(4) { left: 80%; }

.hero-inner-content {
    position: relative;
    z-index: 10;
    max-width: 680px;
    padding: 80px 40px;
    text-align: center;
    animation: fadeIn 1s ease;
}

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

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

.hero-divider-line {
    display: block;
    width: 60px;
    height: 2px;
    background: #212121;
    margin: 24px auto;
    animation: cleanLine 1.5s ease forwards;
}

.hero-tagline {
    display: block;
    font-size: 16px;
    letter-spacing: 6px;
    color: #9E9E9E;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
}

.hero-description {
    color: #9E9E9E;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 40px;
    font-weight: 300;
}

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

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

.hero-stat-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #212121;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 11px;
    color: #9E9E9E;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin-top: 4px;
}

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

.btn-dark-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #212121;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1px solid #212121;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-dark-primary:hover {
    background: transparent;
    color: #212121;
}

.btn-outline-dark {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid #212121;
    color: #212121;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

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

/* === SECTION TITLES === */
.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: #212121;
}

.section-title i {
    margin-right: 10px;
    font-size: 22px;
    color: #9E9E9E;
}

.section-subtitle {
    text-align: center;
    color: #9E9E9E;
    font-size: 14px;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.section-divider {
    width: 40px;
    height: 1px;
    background: #9E9E9E;
    margin: 16px auto 20px;
}

/* === GAME CARDS SECTION === */
.minimal-games {
    padding: 80px 0;
}

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

.minimal-game-card {
    display: block;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.minimal-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #212121;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.minimal-game-card:hover::before {
    transform: scaleX(1);
}

.minimal-game-card:hover {
    border-color: #212121;
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.minimal-game-icon {
    margin-bottom: 20px;
}

.minimal-game-icon i {
    font-size: 32px;
    color: #212121;
    transition: all 0.3s ease;
}

.minimal-game-card:hover .minimal-game-icon i {
    animation: minimalPulse 1s ease;
}

.minimal-game-card h3 {
    color: #212121;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.minimal-game-card p {
    color: #9E9E9E;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 300;
}

.minimal-game-players {
    display: inline-block;
    padding: 6px 14px;
    background: #FAFAFA;
    font-size: 11px;
    color: #9E9E9E;
    letter-spacing: 0.5px;
    font-weight: 400;
}

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

/* === GAME GRID (3x4) === */
.game-grid-section {
    padding: 80px 0;
    background: #FAFAFA;
}

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

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

.game-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.game-grid-node:hover {
    border-color: #212121;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.game-node-icon {
    margin-bottom: 12px;
}

.game-node-icon i {
    font-size: 24px;
    color: #9E9E9E;
    transition: color 0.3s ease;
}

.game-grid-node:hover .game-node-icon i {
    color: #212121;
}

.game-node-label {
    color: #212121;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* === FEATURES SECTION === */
.minimal-features {
    padding: 80px 0;
}

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

.minimal-feature-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 40px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.minimal-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #212121;
    transition: width 0.4s ease;
}

.minimal-feature-card:hover::after {
    width: 100%;
}

.minimal-feature-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.04);
}

.minimal-feature-icon {
    margin-bottom: 20px;
}

.minimal-feature-icon i {
    font-size: 28px;
    color: #212121;
}

.minimal-feature-card h3 {
    color: #212121;
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.minimal-feature-card p {
    color: #9E9E9E;
    font-size: 13px;
    line-height: 1.8;
    font-weight: 300;
}

/* === STATS SECTION === */
.minimal-stats {
    padding: 80px 0;
    position: relative;
    background: #212121;
}

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

.minimal-stat-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.minimal-stat-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    color: #9E9E9E;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* === PROMOTIONS SECTION === */
.minimal-promos {
    padding: 80px 0;
}

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

.minimal-promo-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

.minimal-promo-card:hover {
    border-color: #212121;
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.minimal-promo-inner {
    position: relative;
    padding: 40px 28px;
    text-align: center;
}

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

.promo-icon i {
    font-size: 28px;
    color: #212121;
}

.minimal-promo-inner h3 {
    color: #212121;
    font-size: 15px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-weight: 600;
}

.minimal-promo-inner p {
    color: #9E9E9E;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 12px;
    color: #9E9E9E;
    font-weight: 300;
}

.promo-badge {
    padding: 3px 10px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

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

.btn-promo {
    display: inline-block;
    padding: 12px 32px;
    background: #212121;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-promo:hover {
    background: #9E9E9E;
    color: #FFFFFF;
}

/* === FOOTER CTA SECTION === */
.footer-cta-section {
    position: relative;
    padding: 100px 0;
    margin: 40px 0;
    background: #FAFAFA;
    overflow: hidden;
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
    max-width: 640px;
    margin: 0 auto;
}

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

.cta-line {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: #9E9E9E;
    vertical-align: middle;
    margin: 0 16px;
}

.cta-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #212121;
    border-radius: 50%;
    vertical-align: middle;
}

.footer-cta-inner h2 {
    font-size: 32px;
    color: #212121;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.footer-cta-inner p {
    color: #9E9E9E;
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.9;
    font-weight: 300;
}

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

.cta-feature {
    color: #212121;
    font-size: 13px;
    font-weight: 400;
}

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

.cta-main-btn {
    padding: 18px 56px;
    font-size: 13px;
}

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

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

.article-card {
    display: block;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card:hover {
    border-color: #212121;
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

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

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

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

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

.article-card-title span,
.article-card-title a {
    color: #212121;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    display: block;
    letter-spacing: -0.01em;
}

.article-card-meta {
    padding: 0 20px;
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #9E9E9E;
    margin-bottom: 10px;
    font-weight: 300;
}

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

.article-card-excerpt {
    padding: 0 20px 20px;
    font-size: 13px;
    color: #9E9E9E;
    line-height: 1.7;
    font-weight: 300;
}

.article-card-more {
    display: inline-block;
    padding: 10px 24px;
    color: #212121;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid #212121;
    margin: 0 20px 20px;
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

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

.view-more-btn {
    display: block;
    text-align: center;
    padding: 14px 36px;
    border: 1px solid #212121;
    color: #212121;
    font-weight: 500;
    max-width: 220px;
    margin: 0 auto;
    transition: all 0.3s ease;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

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

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

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

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

.floating-sidebar {
    position: fixed;
    right: 16px;
    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: 44px;
    height: 44px;
    background: #FFFFFF;
    color: #212121;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

.sidebar-label {
    display: none;
}

/* === FOOTER === */
.site-footer {
    background: #212121;
    padding: 64px 0 40px;
    margin-top: 80px;
}

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

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

.footer-brand-logo img {
    height: 36px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand-text {
    color: #9E9E9E;
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 300;
}

.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

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

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #9E9E9E;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 12px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

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

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

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

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

.footer-license-bar {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.footer-license-bar h4 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

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

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.license-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

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

.license-item span {
    font-size: 10px;
    color: #9E9E9E;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

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

.footer-copyright {
    color: #9E9E9E;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 12px;
    color: #9E9E9E;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 32px;
    font-weight: 300;
}

.breadcrumb a {
    color: #212121;
    font-weight: 400;
}

.breadcrumb a:hover {
    color: #9E9E9E;
}

.breadcrumb span {
    color: #9E9E9E;
}

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

.category-title {
    font-size: 28px;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.category-title i {
    margin-right: 10px;
    color: #9E9E9E;
    font-size: 24px;
}

.category-desc {
    color: #9E9E9E;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 300;
}

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

.provider-tab {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #212121;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

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

/* === SINGLE ARTICLE === */
.single-article {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 48px;
    margin-bottom: 40px;
}

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

.article-title {
    font-size: 32px;
    color: #212121;
    margin-bottom: 16px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: #9E9E9E;
    font-weight: 300;
}

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

.article-meta a {
    color: #212121;
    font-weight: 400;
}

.article-featured-img {
    margin-bottom: 32px;
    overflow: hidden;
}

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

.article-content {
    color: #212121;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 300;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #212121;
    margin: 32px 0 16px;
    font-weight: 600;
}

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

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

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

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

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

.article-content blockquote {
    border-left: 3px solid #212121;
    padding: 20px 24px;
    background: #FAFAFA;
    margin: 28px 0;
    font-style: italic;
    color: #9E9E9E;
}

.article-content img {
    margin: 20px 0;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 32px;
}

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

.article-tags span {
    padding: 5px 14px;
    background: #FAFAFA;
    font-size: 11px;
    color: #212121;
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

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

.article-nav a {
    color: #212121;
    font-size: 13px;
    font-weight: 400;
}

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

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

.related-posts-title {
    font-size: 18px;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    font-weight: 600;
}

.related-posts-title i {
    margin-right: 10px;
    color: #9E9E9E;
}

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

.related-item {
    display: block;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.related-item:hover .related-item-thumb img {
    filter: grayscale(0%);
}

.related-item-title {
    padding: 12px;
    font-size: 13px;
    color: #212121;
    line-height: 1.5;
    font-weight: 500;
}

/* === PAGE === */
.page-article {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 48px;
}

.page-title {
    font-size: 32px;
    color: #212121;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.page-featured-img {
    overflow: hidden;
    margin-bottom: 24px;
}

.page-content {
    color: #212121;
    line-height: 1.9;
    font-weight: 300;
}

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

/* === PAGINATION === */
.pagination {
    text-align: center;
    margin: 40px 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: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #212121;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

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

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

.error-decoration {
    margin-bottom: 32px;
}

.error-line {
    display: inline-block;
    width: 80px;
    height: 1px;
    background: #9E9E9E;
    vertical-align: middle;
    margin: 0 16px;
}

.error-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #212121;
    border-radius: 50%;
    vertical-align: middle;
}

.error-code {
    font-size: 120px;
    color: #212121;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.04em;
    font-family: 'Inter', sans-serif;
}

.error-title {
    font-size: 20px;
    color: #212121;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.error-desc {
    color: #9E9E9E;
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.9;
    font-weight: 300;
}

/* === NO POSTS === */
.no-posts {
    text-align: center;
    padding: 80px 24px;
    color: #9E9E9E;
}

.no-posts i {
    display: block;
    margin-bottom: 16px;
    font-size: 48px;
    color: #9E9E9E;
}

/* === SCROLL ANIMATION HELPERS === */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === SLIDES / BANNER SECTION === */
.slides-banner {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.slides-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: #212121;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #9E9E9E;
}
