/* ============================================
   CLEANBET THEME - main.css (moban-130)
   Clean Betting Platform Theme
   Colors: #FFFFFF (White), #1976D2 (Blue), #757575 (Gray)
   Fonts: Source Code Pro, Source Sans 3
   ============================================ */

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

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

body {
    font-family: 'Source Sans 3', sans-serif;
    background: #FFFFFF;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Code Pro', monospace;
    font-weight: 600;
    line-height: 1.3;
}

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

a:hover {
    color: #0D47A1;
}

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

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

.brand-text {
    color: #1976D2;
}

.section-title {
    font-family: 'Source Code Pro', monospace;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: #757575;
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 300;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes cleanFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sharpSlide {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    60% {
        opacity: 0.8;
        transform: translateX(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes crispPop {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    60% {
        opacity: 0.9;
        transform: scale(1.03);
    }
    80% {
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cleanGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(25, 118, 210, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(25, 118, 210, 0.25);
    }
}

/* === BUTTONS === */
.btn-primary {
    display: inline-block;
    background: #1976D2;
    color: #FFFFFF;
    padding: 12px 30px;
    font-family: 'Source Code Pro', monospace;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid #1976D2;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: #0D47A1;
    border-color: #0D47A1;
    color: #FFFFFF;
    animation: cleanGlow 1.5s ease infinite;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #1976D2;
    padding: 12px 30px;
    font-family: 'Source Code Pro', monospace;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid #1976D2;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: #1976D2;
    color: #FFFFFF;
}

.btn-login {
    display: inline-block;
    background: transparent;
    color: #FFFFFF;
    padding: 10px 24px;
    font-family: 'Source Code Pro', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    color: #FFFFFF;
}

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

.announcement-modal.active {
    display: flex;
    animation: cleanFade 0.4s ease;
}

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

.announcement-content {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px 30px;
    z-index: 1;
    animation: crispPop 0.4s ease;
}

.announcement-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #757575;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

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

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

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

.announcement-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

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

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    color: #333333;
    transition: all 0.2s ease;
}

.announcement-item:hover {
    border-color: #1976D2;
    background: #E3F2FD;
}

.announcement-item i.fa-chevron-right {
    margin-left: auto;
    color: #757575;
    font-size: 12px;
}

.announcement-badge {
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Source Code Pro', monospace;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

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

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

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

.announcement-text {
    font-size: 13px;
    line-height: 1.4;
}

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

.announcement-cta {
    padding: 14px 40px;
    font-size: 15px;
}

/* === HEADER === */
.site-header {
    background: #FFFFFF;
    border-bottom: 2px solid #E0E0E0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #F0F0F0;
}

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

.header-time {
    font-family: 'Source Code Pro', monospace;
    font-size: 14px;
    color: #757575;
    font-weight: 500;
}

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

.header-btn-group .btn-login {
    color: #333333;
    border-color: #E0E0E0;
}

.header-btn-group .btn-login:hover {
    border-color: #1976D2;
    color: #1976D2;
    background: transparent;
}

.header-btn-group .btn-primary {
    padding: 10px 20px;
    font-size: 12px;
}

.header-btn-group .btn-outline {
    padding: 10px 20px;
    font-size: 12px;
}

/* === NAVIGATION === */
.main-navigation {
    background: #1976D2;
    border-bottom: 1px solid #1565C0;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 18px;
    color: #FFFFFF;
    font-family: 'Source Code Pro', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
}

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

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

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

/* Dropdown */
.nav-item.has-dropdown .nav-link::after {
    content: '\25BE';
    margin-left: 6px;
    font-size: 10px;
}

.nav-item.has-dropdown ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    min-width: 200px;
    border: 1px solid #E0E0E0;
    z-index: 100;
    list-style: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-item.has-dropdown:hover ul {
    display: block;
    animation: cleanFade 0.3s ease;
}

.nav-item.has-dropdown ul li a {
    display: block;
    padding: 10px 20px;
    color: #333333;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    border-bottom: 1px solid #F0F0F0;
    transition: all 0.2s ease;
}

.nav-item.has-dropdown ul li a:hover {
    background: #E3F2FD;
    color: #1976D2;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: #F5F5F5;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid #E0E0E0;
}

.notification-content {
    display: inline-block;
    animation: notificationScroll 30s linear infinite;
    padding: 8px 0;
    font-size: 13px;
    color: #757575;
}

.notification-content span {
    padding: 0 40px;
}

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

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    font-size: 13px;
    color: #757575;
    border-bottom: 1px solid #F0F0F0;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #1976D2;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #757575;
}

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

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

/* === HERO SECTION === */
.cleanbet-hero {
    position: relative;
    padding: 80px 40px;
    background: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
    overflow: hidden;
    margin-bottom: 50px;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.03) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0;
    opacity: 0.5;
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero-brand {
    display: block;
    font-family: 'Source Code Pro', monospace;
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 8px;
    line-height: 1.1;
    animation: cleanFade 0.8s ease;
}

.hero-divider-line {
    display: block;
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    margin: 15px auto;
}

.hero-tagline {
    display: block;
    font-family: 'Source Code Pro', monospace;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 4px;
    animation: sharpSlide 0.8s ease 0.2s both;
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 300;
    animation: cleanFade 0.8s ease 0.3s both;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    animation: cleanFade 0.8s ease 0.4s both;
}

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

.hero-stat-number {
    display: block;
    font-family: 'Source Code Pro', monospace;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    animation: cleanFade 0.8s ease 0.5s both;
}

.hero-cta-group .btn-primary {
    background: #FFFFFF;
    color: #1976D2;
    border-color: #FFFFFF;
    padding: 14px 36px;
    font-size: 14px;
}

.hero-cta-group .btn-primary:hover {
    background: #F5F5F5;
    border-color: #F5F5F5;
    color: #0D47A1;
}

.hero-cta-group .btn-outline {
    border-color: rgba(255, 255, 255, 0.7);
    color: #FFFFFF;
    padding: 14px 36px;
    font-size: 14px;
}

.hero-cta-group .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
}

/* === FEATURED GAMES SECTION === */
.featured-games {
    padding: 50px 0;
    border-top: 1px solid #F0F0F0;
}

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

.featured-game-card {
    display: block;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.featured-game-card:hover {
    border-color: #1976D2;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.1);
}

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

.featured-game-icon i {
    font-size: 40px;
    color: #1976D2;
}

.featured-game-rating {
    margin-bottom: 12px;
}

.featured-game-rating i {
    color: #FFC107;
    font-size: 12px;
    margin: 0 1px;
}

.featured-game-card h3 {
    font-family: 'Source Code Pro', monospace;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.featured-game-card p {
    font-size: 13px;
    color: #757575;
    line-height: 1.5;
    margin-bottom: 12px;
}

.featured-game-players {
    font-size: 11px;
    color: #1976D2;
    font-family: 'Source Code Pro', monospace;
    font-weight: 500;
}

.featured-game-players i {
    margin-right: 4px;
}

/* === GAME GRID SECTION === */
.game-grid-section {
    padding: 50px 0;
    background: #FAFAFA;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.game-grid-map {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.game-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    transition: all 0.3s ease;
    text-align: center;
}

.game-grid-node:hover {
    border-color: #1976D2;
    background: #E3F2FD;
    transform: translateY(-2px);
}

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

.game-node-icon i {
    font-size: 24px;
    color: #1976D2;
}

.game-node-label {
    font-family: 'Source Code Pro', monospace;
    font-size: 12px;
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.5px;
}

/* === FEATURES SECTION === */
.features-section {
    padding: 50px 0;
    border-top: 1px solid #F0F0F0;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #1976D2;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.08);
}

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

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

.feature-card h3 {
    font-family: 'Source Code Pro', monospace;
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

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

/* === STATS SECTION === */
.stats-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.stats-section .section-title {
    color: #FFFFFF;
}

.stats-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-family: 'Source Code Pro', monospace;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* === PROMOTIONS SECTION === */
.promos-section {
    padding: 50px 0;
    border-top: 1px solid #F0F0F0;
}

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

.promo-card {
    position: relative;
    overflow: hidden;
}

.promo-inner {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.promo-card:hover .promo-inner {
    border-color: #1976D2;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(25, 118, 210, 0.1);
}

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

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

.promo-inner h3 {
    font-family: 'Source Code Pro', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

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

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

.promo-badge {
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    font-family: 'Source Code Pro', monospace;
    letter-spacing: 0.5px;
}

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

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

.promo-badge.vip {
    background: #333333;
    color: #FFFFFF;
}

.btn-promo {
    display: inline-block;
    background: #1976D2;
    color: #FFFFFF;
    padding: 10px 28px;
    font-family: 'Source Code Pro', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid #1976D2;
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: #0D47A1;
    border-color: #0D47A1;
    color: #FFFFFF;
}

/* === FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 60px 40px;
    background: #F5F5F5;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.footer-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.footer-cta-inner h2 {
    font-family: 'Source Code Pro', monospace;
    font-size: 28px;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.footer-cta-inner p {
    font-size: 15px;
    color: #757575;
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.cta-feature {
    font-family: 'Source Code Pro', monospace;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
}

.cta-feature i {
    color: #1976D2;
    margin-right: 6px;
}

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

/* === HOME NEWS SECTION === */
.home-news-section {
    padding: 50px 0;
    border-top: 1px solid #F0F0F0;
}

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

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

/* === ARTICLE CARDS === */
.article-card {
    display: block;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: #1976D2;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(25, 118, 210, 0.08);
}

.article-card-thumb {
    overflow: hidden;
    aspect-ratio: 16/9;
}

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

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

.article-card-title {
    padding: 15px 18px 8px;
    font-family: 'Source Code Pro', monospace;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #333333;
}

.article-card-title a {
    color: #333333;
}

.article-card-title a:hover {
    color: #1976D2;
}

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

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

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

.article-card-more {
    display: inline-block;
    margin: 0 18px 18px;
    font-family: 'Source Code Pro', monospace;
    font-size: 12px;
    font-weight: 600;
    color: #1976D2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.article-card-more:hover {
    color: #0D47A1;
}

.article-card-more i {
    margin-left: 4px;
    font-size: 10px;
}

/* === VIEW MORE === */
.view-more-btn {
    display: inline-block;
    text-align: center;
    padding: 12px 36px;
    font-family: 'Source Code Pro', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #1976D2;
    border: 2px solid #1976D2;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

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

.view-more-btn i {
    margin-left: 6px;
    font-size: 12px;
}

/* === CATEGORY HEADER === */
.category-header {
    padding: 25px 0;
    border-bottom: 2px solid #1976D2;
    margin-bottom: 25px;
}

.category-title {
    font-family: 'Source Code Pro', monospace;
    font-size: 24px;
    font-weight: 700;
    color: #1976D2;
    letter-spacing: 1px;
}

.category-title i {
    margin-right: 8px;
}

.category-desc {
    font-size: 14px;
    color: #757575;
    margin-top: 8px;
    line-height: 1.6;
}

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #F0F0F0;
}

.provider-tab {
    padding: 8px 18px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    color: #757575;
    font-family: 'Source Code Pro', monospace;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.provider-tab:hover {
    border-color: #1976D2;
    color: #1976D2;
}

.provider-tab.active {
    background: #1976D2;
    color: #FFFFFF;
    border-color: #1976D2;
}

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

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 20px 0;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #E0E0E0;
    font-family: 'Source Code Pro', monospace;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    transition: all 0.2s ease;
    text-decoration: none;
}

.pagination .page-numbers:hover {
    border-color: #1976D2;
    color: #1976D2;
}

.pagination .page-numbers.current {
    background: #1976D2;
    color: #FFFFFF;
    border-color: #1976D2;
}

.pagination .page-numbers i {
    font-size: 12px;
}

/* === NO POSTS === */
.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #757575;
    grid-column: 1 / -1;
}

.no-posts p {
    font-size: 15px;
    margin-top: 10px;
}

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

.article-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F0F0F0;
}

.article-title {
    font-family: 'Source Code Pro', monospace;
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: #757575;
}

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

.article-meta a {
    color: #1976D2;
}

.article-featured-img {
    margin-bottom: 25px;
    border: 1px solid #F0F0F0;
    overflow: hidden;
}

.article-featured-img img {
    width: 100%;
    display: block;
}

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

.article-content h2 {
    font-family: 'Source Code Pro', monospace;
    font-size: 22px;
    font-weight: 600;
    color: #1976D2;
    margin: 30px 0 15px;
}

.article-content h3 {
    font-family: 'Source Code Pro', monospace;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 25px 0 12px;
}

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

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

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

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border: 1px solid #F0F0F0;
}

.article-content blockquote {
    border-left: 4px solid #1976D2;
    padding: 15px 20px;
    margin: 20px 0;
    background: #F5F5F5;
    font-style: italic;
    color: #555;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.article-content th,
.article-content td {
    padding: 12px 15px;
    border: 1px solid #E0E0E0;
    text-align: left;
}

.article-content th {
    background: #F5F5F5;
    font-family: 'Source Code Pro', monospace;
    font-weight: 600;
}

/* === ARTICLE TAGS === */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    border-top: 1px solid #F0F0F0;
    margin-top: 25px;
}

.article-tags i {
    color: #1976D2;
    margin-right: 4px;
}

.article-tags span {
    display: inline-block;
    padding: 4px 12px;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    font-size: 12px;
    color: #757575;
    font-family: 'Source Code Pro', monospace;
}

.article-tags span:hover {
    border-color: #1976D2;
    color: #1976D2;
}

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

.article-nav-prev,
.article-nav-next {
    max-width: 48%;
}

.article-nav-prev a,
.article-nav-next a {
    font-family: 'Source Code Pro', monospace;
    font-size: 13px;
    font-weight: 500;
    color: #1976D2;
}

.article-nav-prev a:hover,
.article-nav-next a:hover {
    color: #0D47A1;
}

.article-nav-prev i,
.article-nav-next i {
    margin: 0 5px;
    font-size: 11px;
}

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

.related-posts-title {
    font-family: 'Source Code Pro', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

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

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

.related-item:hover {
    border-color: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.08);
}

.related-item-thumb {
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

.related-item:hover .related-item-thumb img {
    transform: scale(1.05);
}

.related-item-title {
    padding: 12px 15px;
    font-family: 'Source Code Pro', monospace;
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    line-height: 1.4;
}

/* === PAGE ARTICLE === */
.page-article {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    padding: 40px;
}

.page-title {
    font-family: 'Source Code Pro', monospace;
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F0F0F0;
}

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

.page-featured-img img {
    width: 100%;
    display: block;
}

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

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

.page-content h2 {
    font-family: 'Source Code Pro', monospace;
    font-size: 22px;
    font-weight: 600;
    color: #1976D2;
    margin: 30px 0 15px;
}

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

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

.error-icon i {
    font-size: 64px;
    color: #1976D2;
}

.error-code {
    font-family: 'Source Code Pro', monospace;
    font-size: 80px;
    font-weight: 700;
    color: #1976D2;
    line-height: 1;
    margin-bottom: 10px;
}

.error-title {
    font-family: 'Source Code Pro', monospace;
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

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

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

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    color: #1976D2;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

.sidebar-label {
    display: none;
}

.sidebar-btn[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 52px;
    background: #333333;
    color: #FFFFFF;
    padding: 5px 10px;
    font-size: 12px;
    font-family: 'Source Sans 3', sans-serif;
    white-space: nowrap;
}

/* === FOOTER === */
.site-footer {
    background: #FAFAFA;
    border-top: 2px solid #E0E0E0;
    padding: 50px 0 30px;
    margin-top: 40px;
}

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

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

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

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

.footer-18plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid #D32F2F;
    color: #D32F2F;
    font-family: 'Source Code Pro', monospace;
    font-size: 16px;
    font-weight: 700;
    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: #FFFFFF;
    border: 1px solid #E0E0E0;
    color: #757575;
    font-size: 14px;
    transition: all 0.2s ease;
}

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

.footer-col h4 {
    font-family: 'Source Code Pro', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

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

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

/* Footer License Bar */
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 20px;
}

.footer-license-bar h4 {
    font-family: 'Source Code Pro', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

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

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

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

.license-item span {
    font-family: 'Source Code Pro', monospace;
    font-size: 11px;
    font-weight: 600;
    color: #757575;
    letter-spacing: 0.5px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-copyright {
    font-family: 'Source Code Pro', monospace;
    font-size: 13px;
    font-weight: 500;
    color: #757575;
    letter-spacing: 0.5px;
}

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

/* === SELECTION === */
::selection {
    background: #1976D2;
    color: #FFFFFF;
}

::-moz-selection {
    background: #1976D2;
    color: #FFFFFF;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background: #BDBDBD;
}

::-webkit-scrollbar-thumb:hover {
    background: #757575;
}

/* === FOCUS STYLES === */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #1976D2;
    outline-offset: 2px;
}

/* === PRINT === */
@media print {
    .site-header,
    .floating-sidebar,
    .site-footer,
    .notification-bar {
        display: none;
    }
}
