/* ========================================
   MAIN LAYOUT STYLES
   Homepage sections and grid layouts
======================================== */

/* Global Responsive Fixes */
html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container Utility */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========================================
   STICKY HEADER WRAPPER
======================================== */
.sticky-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #0a0a0a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Body padding to prevent content from hiding under sticky header */
body {
    padding-top: 0;
    overflow-x: hidden;
    max-width: 100%;
}

body.admin-bar .sticky-header-wrapper {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .sticky-header-wrapper {
        top: 46px;
    }
}

/* ========================================
   RESET HEADER
======================================== */
.site-header,
.top-bar,
.header-top,
.header-main {
    position: relative;
    height: auto;
    margin: 0;
    padding: 0;
    transform: none;
}

.site-header * {
    box-sizing: border-box;
}

/* ========================================
   TOP BAR
======================================== */
.top-bar {
    background: #0b0b0b;
    padding: 0.75rem 0;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-bar-left .tb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #dcdcdc;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.top-bar-left .tb-icon {
    font-size: 15px;
    line-height: 1;
    color: #ff3b3b;
}

.top-bar-left .tb-text {
    line-height: 1;
}

.top-bar-left .tb-link:hover {
    color: #ffffff;
    background: rgba(255, 59, 59, 0.12);
    box-shadow: 0 0 12px rgba(255, 59, 59, 0.35);
    transform: translateY(-1px);
}

.top-bar-left .tb-link:active {
    transform: scale(0.96);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 1rem;
}

.btn-register,
.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 999px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    margin: 0;
}

.btn-register {
    background: linear-gradient(180deg, #ff2b2b, #b80000);
    color: #ffffff;
    border: none;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.btn-register:hover {
    background: linear-gradient(180deg, #ff4444, #d00000);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    transform: translateY(-1px);
    opacity: 0.9;
}

.btn-login {
    border: 2px solid #ff2b2b;
    background: transparent;
    color: #fff;
}

.btn-login:hover {
    background: #ff2b2b;
    color: #ffffff;
    transform: translateY(-1px);
    opacity: 0.9;
}

/* ========================================
   TOP BAR DIVIDER
======================================== */
.top-bar-divider {
    height: 2px;
    background: linear-gradient(90deg, #c40000 0%, #ff0000 50%, #c40000 100%);
    margin: 0;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
}

/* ========================================
   SITE HEADER
======================================== */
.site-header {
    background: #0a0a0a;
    padding: 1.5rem 0;
    display: block;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

/* ===== LOGO WRAPPER ===== */
.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-left: 1rem;
}

/* ===== LOGO LINK ===== */
.custom-logo-link {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

/* ===== LOGO IMAGE ===== */
.custom-logo {
    height: 110px;
    width: auto;
    max-width: 440px;
    display: block;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* ===== HOVER EFFECT ===== */
.custom-logo-link:hover .custom-logo {
    opacity: 0.85;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
}

/* ===== MENU ICON GRID ===== */
.menu-icons {
    display: flex;
    gap: 38px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-icons li {
    margin: 0;
    padding: 0;
}

/* ===== ITEM ===== */
.menu-icons li a {
    width: 102px;
    height: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border-radius: 12px;
    color: #ffffff;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.65rem 0.4rem;
    position: relative;
}

/* ===== ICON ===== */
.menu-icons li a i {
    font-size: 24px;
    color: #ffffff;
    line-height: 1;
    display: block;
    font-style: normal;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TEXT ===== */
.menu-icons li a span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== HOVER EFFECT ===== */
.menu-icons li a:hover {
    background: radial-gradient(ellipse at center, rgba(255, 51, 51, 0.35) 0%, rgba(255, 26, 26, 0.25) 50%, rgba(204, 0, 0, 0.15) 100%);
    box-shadow: 
        0 0 24px rgba(255, 51, 51, 0.6),
        0 0 12px rgba(255, 26, 26, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 102, 102, 0.2);
    transform: translateY(-3px) scale(1.02);
    border: 1px solid rgba(255, 51, 51, 0.3);
}

/* ===== ICON HOVER ===== */
.menu-icons li a:hover i {
    transform: translateY(-2px);
    color: #ff5555;
    filter: drop-shadow(0 0 10px rgba(255, 85, 85, 0.8));
}

/* ===== TEXT HOVER ===== */
.menu-icons li a:hover span {
    color: #ffdddd;
    text-shadow: 0 0 10px rgba(255, 85, 85, 0.6);
}

/* ===== ACTIVE STATE (PRESS) ===== */
.menu-icons li a:active {
    transform: translateY(-1px) scale(0.98);
}

/* ===== CURRENT/ACTIVE MENU ITEM (BERANDA DEFAULT) ===== */
.menu-icons li:first-child > a,
.menu-icons .current-menu-item > a,
.menu-icons .current_page_item > a {
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255, 51, 51, 0.25) 0%, rgba(255, 26, 26, 0.18) 50%, rgba(204, 0, 0, 0.1) 100%);
    box-shadow: 
        0 0 18px rgba(255, 51, 51, 0.45),
        0 0 8px rgba(255, 26, 26, 0.3),
        inset 0 1px 0 rgba(255, 102, 102, 0.15);
    border: 1px solid rgba(255, 51, 51, 0.25);
}

.menu-icons li:first-child > a::after,
.menu-icons .current-menu-item > a::after,
.menu-icons .current_page_item > a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff5555, transparent);
    box-shadow: 0 0 8px rgba(255, 85, 85, 0.7);
}

.menu-icons li:first-child > a i,
.menu-icons .current-menu-item > a i,
.menu-icons .current_page_item > a i {
    color: #ff5555;
    filter: drop-shadow(0 0 8px rgba(255, 85, 85, 0.6));
}

.menu-icons li:first-child > a span,
.menu-icons .current-menu-item > a span,
.menu-icons .current_page_item > a span {
    color: #ffdddd;
    text-shadow: 0 0 6px rgba(255, 85, 85, 0.4);
}

/* ========================================
   FULL WIDTH BANNER SECTION
======================================== */
.full-width-banner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #0a0a0a;
}

.banner-container {
    width: 100%;
    max-width: 100%;
    height: 613px;
    margin: 0;
    padding: 0;
    line-height: 0;
    overflow: hidden;
    position: relative;
}

.banner-image {
    width: 100%;
    max-width: 100%;
    height: 613px;
    display: block;
    object-fit: contain;
    object-position: center;
}

/* ========================================
   HEADLINE SECTION (SITE TITLE + TAGLINE)
======================================== */
.headline-section {
    width: 100%;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-top: 2px solid #c40000;
    border-bottom: 2px solid #c40000;
    padding: 2.5rem 0;
    margin: 0;
}

.headline-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.headline-single {
    text-align: center;
    white-space: nowrap;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Legacy classes - keep for backward compatibility but hide */
.headline-title,
.headline-tagline {
    display: none;
}

/* ========================================
   FULL WIDTH GIF SECTION BELOW HEADLINE
======================================== */
.gif-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: transparent;
}

.gif-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.gif-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

/* ========================================
   CONTENT GRID SECTION
======================================== */
.content-grid-section {
    padding: 5rem 0;
    background-color: #0a0a0a;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* ========================================
   CONTENT BOX
======================================== */
.content-box {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a9eff 0%, #6bb3ff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.content-box:hover {
    border-color: #4a9eff;
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(74, 158, 255, 0.15);
}

.content-box:hover::before {
    transform: scaleX(1);
}

.box-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a9eff 0%, #6bb3ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: #ffffff;
}

.box-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.box-description {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.box-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a9eff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.box-link:hover {
    gap: 0.75rem;
    color: #6bb3ff;
}

/* ========================================
   FEATURE GRID SECTION
======================================== */
.feature-grid-section {
    padding: 5rem 0;
    background-color: #0f0f0f;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: #1f1f1f;
    border-color: #3a3a3a;
    transform: scale(1.05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.feature-text {
    font-size: 0.95rem;
    color: #b0b0b0;
    line-height: 1.6;
}

/* ========================================
   HIGHLIGHT SECTION
======================================== */
.highlight-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.highlight-box {
    background-color: rgba(26, 26, 26, 0.6);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.highlight-box:hover {
    border-color: #4a9eff;
    background-color: rgba(26, 26, 26, 0.8);
}

.highlight-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4a9eff 0%, #6bb3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.highlight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.highlight-description {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.7;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.125rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   SPACING UTILITIES
======================================== */
.section-spacing {
    margin-bottom: 5rem;
}

.section-spacing-large {
    margin-bottom: 7rem;
}

.content-spacing {
    margin-top: 3rem;
}

/* ========================================
   RESPONSIVE DESIGN - LARGE DESKTOP
======================================== */
@media (max-width: 1200px) {
    .top-bar-inner,
    .header-inner,
    .headline-container,
    .image-grid-container,
    .providers-payment-container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .menu-icons {
        gap: 28px;
    }
    
    .menu-icons li a {
        width: 95px;
        height: 74px;
    }
    
    /* Banner Responsive - Large Desktop */
    .banner-container {
        height: 580px;
    }
    
    .banner-image {
        height: 580px;
    }
    
    /* Headline Responsive - Large Desktop */
    .headline-section {
        padding: 2.25rem 0;
    }
    
    .headline-container {
        padding: 0 1.5rem;
    }
    
    .headline-single {
        font-size: 26px;
    }
    
    /* GIF Section Responsive - Large Desktop */
    .gif-container {
        padding: 0 1.5rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
======================================== */
@media (max-width: 1024px) {
    .top-bar-inner,
    .header-inner {
        padding: 0 1.5rem;
    }
    
    .top-bar {
        padding: 0.6rem 0;
    }
    
    .top-bar-inner {
        min-height: 38px;
    }
    
    .top-bar-left {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .top-bar-left .tb-link {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .top-bar-left .tb-icon {
        font-size: 14px;
    }
    
    .top-bar-right {
        padding-right: 0;
    }
    
    .btn-register,
    .btn-login {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .site-header {
        padding: 1rem 0;
    }
    
    .header-inner {
        gap: 1.5rem;
        min-height: 38px;
    }
    
    .site-branding {
        padding-left: 0;
    }
    
    .custom-logo {
        height: 85px;
        max-width: 340px;
    }
    
    .menu-icons {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .menu-icons li a {
        width: 85px;
        height: 66px;
        gap: 6px;
        padding: 0.4rem 0.2rem;
    }
    
    .menu-icons li a i {
        font-size: 21px;
    }
    
    .menu-icons li a span {
        font-size: 10px;
    }
    
    /* Banner Responsive - Tablet */
    .banner-container {
        height: 420px;
    }
    
    .banner-image {
        height: 420px;
    }
    
    /* Headline Responsive - Tablet */
    .headline-section {
        padding: 2rem 0;
    }
    
    .headline-container {
        padding: 0 1.5rem;
    }
    
    .headline-single {
        font-size: 24px;
        white-space: normal;
        letter-spacing: 0.8px;
    }
    
    /* GIF Section Responsive - Tablet */
    .gif-section {
        padding: 25px 0;
    }
    
    .gif-container {
        padding: 0 1.5rem;
        max-width: 900px;
    }
    
    .grid-container,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-box,
    .feature-item {
        padding: 2rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
======================================== */
@media (max-width: 768px) {
    /* Mobile Header - Remove Fixed/Sticky Position */
    .sticky-header-wrapper {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    body {
        padding-top: 0 !important;
    }
    
    body.admin-bar .sticky-header-wrapper {
        top: auto !important;
    }
    
    .site-header,
    .top-bar,
    .header-top,
    .header-main {
        position: relative !important;
        top: auto !important;
    }
    
    .top-bar {
        padding: 0.5rem 0;
        border-bottom: 1px solid #c40000;
    }
    
    .top-bar-inner {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        min-height: auto;
    }
    
    .top-bar-left {
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .top-bar-right {
        width: 100%;
        justify-content: center;
        padding-right: 0;
    }
    
    .top-bar-left .tb-link {
        font-size: 11px;
        padding: 5px 8px;
    }
    
    .top-bar-left .tb-icon {
        font-size: 13px;
    }
    
    .btn-register,
    .btn-login {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .site-header {
        padding: 0.75rem 0;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
        min-height: auto;
    }
    
    .site-branding {
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
        padding-left: 0;
        margin: 0;
    }
    
    .custom-logo {
        height: 70px;
        max-width: 280px;
    }
    
    .main-navigation {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .menu-icons {
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .menu-icons li a {
        width: 75px;
        height: 58px;
        gap: 5px;
        padding: 0.3rem 0.15rem;
    }
    
    .menu-icons li a i {
        font-size: 18px;
    }
    
    .menu-icons li a span {
        font-size: 9px;
    }
    
    /* Banner Responsive - Mobile */
    .banner-container {
        height: auto;
        min-height: 280px;
    }
    
    .banner-image {
        height: auto;
        min-height: 280px;
        object-fit: contain;
    }
    
    /* Headline Responsive - Mobile */
    .headline-section {
        padding: 1.75rem 0;
    }
    
    .headline-container {
        padding: 0 1rem;
    }
    
    .headline-single {
        font-size: 20px;
        white-space: normal;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }
    
    /* GIF Section Responsive - Mobile */
    .gif-section {
        padding: 20px 0;
    }
    
    .gif-container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .grid-container,
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-grid-section,
    .feature-grid-section,
    .highlight-section {
        padding: 3rem 0;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .content-box {
        padding: 1.75rem;
    }
    
    .box-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .box-title {
        font-size: 1.25rem;
    }
    
    .highlight-box {
        padding: 2rem;
    }
    
    .highlight-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
======================================== */
@media (max-width: 480px) {
    /* Mobile Header - Ensure Relative Position */
    .sticky-header-wrapper {
        position: relative !important;
        top: auto !important;
    }
    
    body {
        padding-top: 0 !important;
    }
    
    .top-bar-inner {
        padding: 0.5rem 0.75rem;
    }
    
    .top-bar-left {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .top-bar-left .tb-text {
        display: none;
    }
    
    .top-bar-left .tb-link {
        font-size: 13px;
        padding: 4px 6px;
    }
    
    .top-bar-left .tb-icon {
        font-size: 14px;
    }
    
    .btn-register,
    .btn-login {
        padding: 7px 14px;
        font-size: 12px;
    }
    
    .header-inner {
        padding: 0 0.75rem;
    }
    
    .custom-logo {
        height: 60px;
        max-width: 240px;
    }
    
    .menu-icons {
        gap: 10px;
    }
    
    .menu-icons li a {
        width: 68px;
        height: 52px;
        gap: 4px;
        padding: 0.25rem 0.1rem;
    }
    
    .menu-icons li a i {
        font-size: 16px;
    }
    
    .menu-icons li a span {
        font-size: 8px;
    }
    
    /* Banner Responsive - Small Mobile */
    .banner-container {
        height: auto;
        min-height: 220px;
    }
    
    .banner-image {
        height: auto;
        min-height: 220px;
    }
    
    /* Headline Responsive - Small Mobile */
    .headline-section {
        padding: 1.5rem 0;
    }
    
    .headline-container {
        padding: 0 0.75rem;
    }
    
    .headline-single {
        font-size: 18px;
        white-space: normal;
        letter-spacing: 0.3px;
        line-height: 1.25;
    }
    
    /* GIF Section Responsive - Small Mobile */
    .gif-section {
        padding: 15px 0;
    }
    
    .gif-container {
        padding: 0 0.75rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .content-box,
    .feature-item,
    .highlight-box {
        padding: 1.5rem;
    }
    
    .box-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ========================================
   IMAGE GRID SECTION (18 ITEMS - 6x3)
======================================== */
.image-grid-section {
    width: 100%;
    background-color: #0a0a0a;
    padding: 3rem 0;
    margin: 0;
    border-top: 2px solid #c40000;
    position: relative;
    z-index: 1;
}

.image-grid-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    margin: 0;
    padding: 0;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #b00000;
    padding: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.grid-item-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.grid-image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.grid-item-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.grid-item-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #666;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 8px;
}

.placeholder-number {
    opacity: 0.3;
}

.grid-title {
    width: 100%;
    min-height: 52px;
    margin-top: 14px;
    padding: 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    line-height: 1.45;
    word-wrap: break-word;
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover Effect - Desktop */
@media (hover: hover) {
    .grid-item:hover {
        transform: translateY(-6px) scale(1.04);
        box-shadow: 0 0 18px rgba(255, 0, 0, 0.7);
    }
}

/* Active/Press Effect */
.grid-item:active {
    transform: translateY(-3px) scale(1.02);
}

/* ========================================
   PROVIDERS & PAYMENT SECTION
======================================== */
.providers-payment-section {
    width: 100%;
    background-color: #0a0a0a;
    padding: 4rem 0 6rem 0;
    margin: 0;
}

.providers-payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-block {
    margin-bottom: 3rem;
}

.section-block-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 2rem 0;
    text-transform: capitalize;
}

/* Providers Box */
.providers-box {
    background: #0b0b0b;
    border: 2px solid #c40000;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.provider-item {
    flex: 0 0 auto;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.provider-item img:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.provider-placeholder {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 700;
}

/* Payment Groups */
.payment-group {
    margin-bottom: 2rem;
}

.payment-group:last-child {
    margin-bottom: 0;
}

.payment-group-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1rem 0;
    padding-left: 0.5rem;
}

.payment-box {
    background: #0b0b0b;
    border: 2px solid #c40000;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
}

.payment-item {
    flex: 0 0 auto;
    width: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.payment-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.payment-item img:hover {
    filter: brightness(1.1);
}

.payment-placeholder {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Online Indicator */
.payment-item.online .online-indicator {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    border: 2px solid #0b0b0b;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.6);
}

/* ========================================
   FOOTER BOTTOM LOGO
======================================== */
.footer-bottom-logo {
    text-align: center;
    margin: 2rem 0 1.5rem 0;
    padding: 0;
}

.footer-bottom-logo a {
    display: inline-block;
    line-height: 0;
}

.footer-bottom-logo img {
    max-height: 70px;
    width: auto;
    display: inline-block;
    opacity: 1;
    filter: none;
}

.footer-bottom-logo a:hover img {
    opacity: 0.85;
}

/* ========================================
   SINGLE ARTICLE CONTENT SECTION
======================================== */
.single-article-content-section {
    width: 100%;
    background-color: #0a0a0a;
    padding: 4rem 0;
}

.single-article-content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.single-article-content {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 3rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2a2a2a;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-thumbnail {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}

.article-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    font-size: 1.125rem;
    color: #d0d0d0;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
}

.article-content h2 {
    font-size: 2rem;
}

.article-content h3 {
    font-size: 1.5rem;
}

.article-content h4 {
    font-size: 1.25rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
}

.article-content a {
    color: #ff5555;
    text-decoration: underline;
}

.article-content a:hover {
    color: #ff7777;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-content blockquote {
    border-left: 4px solid #c40000;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #b0b0b0;
}

.article-tags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
    font-size: 0.875rem;
    color: #888;
}

.article-tags a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin: 0.25rem;
    background: #2a2a2a;
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.article-tags a:hover {
    background: #c40000;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
}

.article-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-navigation a:hover {
    color: #ff5555;
}

.article-navigation .nav-previous {
    text-align: left;
}

.article-navigation .nav-next {
    text-align: right;
}

/* Responsive - Single Article Content */
@media (max-width: 768px) {
    .single-article-content-section {
        padding: 2.5rem 0;
    }
    
    .single-article-content-container {
        padding: 0 1rem;
    }
    
    .single-article-content {
        padding: 1.5rem;
    }
    
    .article-meta {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .article-navigation .nav-previous,
    .article-navigation .nav-next {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .single-article-content {
        padding: 1.25rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
}

/* ========================================
   HOMEPAGE ARTICLES SECTION
======================================== */
.homepage-articles-section {
    width: 100%;
    background-color: #0a0a0a;
    padding: 3rem 0;
    border-top: 2px solid #c40000;
}

.homepage-articles-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.homepage-articles-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 2rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.homepage-articles-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.homepage-article-item {
    border-bottom: 1px solid #2a2a2a;
}

.homepage-article-item:last-child {
    border-bottom: none;
}

.homepage-article-item .article-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.homepage-article-item .article-link:hover {
    padding-left: 0.5rem;
}

.homepage-article-item .article-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    flex: 1;
    transition: color 0.3s ease;
}

.homepage-article-item .article-link:hover .article-title {
    color: #ff5555;
}

.homepage-article-item .article-date {
    color: #888;
    font-size: 0.875rem;
    white-space: nowrap;
}

/* ========================================
   HOMEPAGE ARTICLES - RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .homepage-articles-section {
        padding: 2rem 0;
    }
    
    .homepage-articles-container {
        padding: 0 1rem;
    }
    
    .homepage-articles-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .homepage-article-item .article-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.875rem 0;
    }
    
    .homepage-article-item .article-title {
        font-size: 0.95rem;
    }
    
    .homepage-article-item .article-date {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .homepage-articles-section {
        padding: 1.5rem 0;
    }
    
    .homepage-articles-container {
        padding: 0 0.75rem;
    }
    
    .homepage-articles-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .homepage-article-item .article-title {
        font-size: 0.9rem;
    }
}

/* ========================================
   HOMEPAGE ARTICLES
======================================== */

/* Latest Article Below Banner */
.homepage-latest-article {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(26, 26, 26, 0.5);
    margin: 0;
}

.homepage-latest-article a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.homepage-latest-article a:hover {
    color: #ff5555;
}

/* All Articles List at Bottom */
.homepage-articles-list {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: #0a0a0a;
}

.homepage-article-item {
    padding: 1rem 0;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.homepage-article-item:last-child {
    border-bottom: none;
}

.homepage-article-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    flex: 1;
    transition: color 0.3s ease;
}

.homepage-article-item a:hover {
    color: #ff5555;
}

.homepage-article-item .article-date {
    color: #888;
    font-size: 0.875rem;
    white-space: nowrap;
}

/* ========================================
   LIVECHAT BUTTON
======================================== */
.livechat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(180deg, #ff2b2b, #b80000);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(255, 43, 43, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.livechat-button:hover {
    background: linear-gradient(180deg, #ff4444, #d00000);
    box-shadow: 0 6px 20px rgba(255, 43, 43, 0.6);
    transform: translateY(-2px);
}

.livechat-button:active {
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE - TABLET (IMAGE GRID & PROVIDERS)
======================================== */
@media (max-width: 1024px) {
    /* Image Grid Responsive - Tablet (4 columns) */
    .image-grid-section {
        padding: 2.5rem 0;
    }
    
    .image-grid-container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .image-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .grid-item {
        padding: 12px;
    }
    
    .grid-title {
        font-size: 14.5px;
        min-height: 48px;
        margin-top: 12px;
        padding: 0 4px;
    }
    
    /* Providers & Payment Responsive - Tablet */
    .providers-payment-section {
        padding: 3rem 0 5rem 0;
    }
    
    .providers-payment-container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .section-block-title {
        font-size: 1.5rem;
    }
    
    .providers-box,
    .payment-box {
        padding: 1.5rem;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .provider-item {
        width: 110px;
        height: 55px;
    }
    
    .payment-item {
        width: 90px;
        height: 45px;
    }
    
    /* Footer Logo Responsive - Tablet */
    .footer-bottom-logo {
        margin: 1.75rem 0 1.25rem 0;
    }
    
    .footer-bottom-logo img {
        max-height: 55px;
    }
    
    .livechat-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 22px;
        font-size: 14px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (IMAGE GRID & PROVIDERS)
======================================== */
@media (max-width: 768px) {
    /* Image Grid Responsive - Mobile (2 columns) */
    .image-grid-section {
        padding: 2rem 0;
    }
    
    .image-grid-container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .grid-item {
        border-radius: 8px;
        padding: 10px;
    }
    
    .grid-item-link,
    .grid-item-image,
    .grid-image-wrapper {
        border-radius: 6px;
    }
    
    .grid-title {
        font-size: 14px;
        min-height: auto;
        margin-top: 10px;
        padding: 0 4px;
        line-height: 1.3;
    }
    
    /* Providers & Payment Responsive - Mobile */
    .providers-payment-section {
        padding: 2rem 0 3.5rem 0;
    }
    
    .providers-payment-container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .section-block {
        margin-bottom: 2.5rem;
    }
    
    .section-block-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .providers-box,
    .payment-box {
        padding: 1.25rem;
        gap: 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .provider-item {
        width: 85px;
        height: 42px;
    }
    
    .payment-item {
        width: 80px;
        height: 40px;
    }
    
    .payment-group-title {
        font-size: 1rem;
    }
    
    /* Footer Logo Responsive - Mobile */
    .footer-bottom-logo {
        margin: 1.5rem 0 1rem 0;
    }
    
    .footer-bottom-logo img {
        max-height: 50px;
    }
    
    .livechat-button {
        bottom: 15px;
        right: 15px;
        padding: 11px 20px;
        font-size: 13px;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (IMAGE GRID & PROVIDERS)
======================================== */
@media (max-width: 480px) {
    /* Image Grid Responsive - Small Mobile (2 columns) */
    .image-grid-section {
        padding: 1.5rem 0;
    }
    
    .image-grid-container {
        padding: 0 0.75rem;
    }
    
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .grid-item {
        padding: 8px;
        border-radius: 6px;
    }
    
    .grid-item-link,
    .grid-item-image,
    .grid-image-wrapper {
        border-radius: 5px;
    }
    
    .grid-title {
        font-size: 13px;
        min-height: auto;
        margin-top: 8px;
        padding: 0 3px;
        line-height: 1.25;
    }
    
    /* Providers & Payment Responsive - Small Mobile */
    .providers-payment-section {
        padding: 1.5rem 0 3rem 0;
    }
    
    .providers-payment-container {
        padding: 0 0.75rem;
    }
    
    .section-block {
        margin-bottom: 2rem;
    }
    
    .section-block-title {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .providers-box {
        gap: 1rem;
        padding: 1rem;
    }
    
    .provider-item {
        width: 75px;
        height: 38px;
    }
    
    .payment-box {
        gap: 1rem;
        justify-content: center;
        padding: 1rem;
    }
    
    .payment-item {
        width: 70px;
        height: 35px;
    }
    
    .payment-group-title {
        font-size: 0.95rem;
    }
    
    /* Footer Logo Responsive - Small Mobile */
    .footer-bottom-logo {
        margin: 1.25rem 0 0.75rem 0;
    }
    
    .footer-bottom-logo img {
        max-height: 45px;
    }
    
    .livechat-button {
        bottom: 12px;
        right: 12px;
        padding: 10px 18px;
        font-size: 12px;
        z-index: 9999;
    }
}

/* ========================================
   BLOG & ARCHIVE PAGES
======================================== */
.blog-main,
.archive-main {
    width: 100%;
    background-color: #0a0a0a;
    padding: 4rem 0;
    min-height: 60vh;
}

.blog-container,
.archive-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-header,
.archive-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #c40000;
}

.blog-title,
.archive-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-description,
.archive-description {
    font-size: 1.125rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.blog-posts,
.archive-posts {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.post-item {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-item:hover {
    border-color: #c40000;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(196, 0, 0, 0.3);
}

.post-thumbnail {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.post-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content-wrapper {
    padding: 2rem;
}

.post-header {
    margin-bottom: 1.5rem;
}

.post-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.post-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #ff5555;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #888;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-meta i {
    font-style: normal;
}

.post-category a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-category a:hover {
    color: #ff5555;
}

.post-excerpt {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.post-footer {
    padding-top: 1.5rem;
    border-top: 1px solid #2a2a2a;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff5555;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.75rem;
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    color: #888;
    font-size: 1.125rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0.5rem 1rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #c40000;
    border-color: #c40000;
    color: #ffffff;
}

/* ========================================
   SINGLE POST PAGE
======================================== */
.single-post-main {
    width: 100%;
    background-color: #0a0a0a;
    padding: 4rem 0;
    min-height: 60vh;
}

.single-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.single-post-article {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 3rem;
}

.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2a2a2a;
}

.single-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-post-thumbnail {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}

.single-post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-content {
    font-size: 1.125rem;
    color: #d0d0d0;
    line-height: 1.8;
}

.single-post-content p {
    margin-bottom: 1.5rem;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
}

.single-post-content h2 {
    font-size: 2rem;
}

.single-post-content h3 {
    font-size: 1.5rem;
}

.single-post-content h4 {
    font-size: 1.25rem;
}

.single-post-content ul,
.single-post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.single-post-content li {
    margin-bottom: 0.5rem;
    color: #d0d0d0;
}

.single-post-content a {
    color: #ff5555;
    text-decoration: underline;
}

.single-post-content a:hover {
    color: #ff7777;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.single-post-content blockquote {
    border-left: 4px solid #c40000;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #b0b0b0;
}

.single-post-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
}

.post-tags-list {
    font-size: 0.875rem;
    color: #888;
}

.post-tags-list a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin: 0.25rem;
    background: #2a2a2a;
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.post-tags-list a:hover {
    background: #c40000;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
}

.post-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.post-navigation a:hover {
    color: #ff5555;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

/* Page Links */
.page-links {
    margin: 2rem 0;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 6px;
    text-align: center;
}

.page-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    background: #1a1a1a;
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.page-links a:hover {
    background: #c40000;
}

/* ========================================
   RESPONSIVE - BLOG & SINGLE POST
======================================== */
@media (max-width: 768px) {
    .blog-main,
    .archive-main,
    .single-post-main {
        padding: 2.5rem 0;
    }
    
    .blog-container,
    .archive-container,
    .single-post-container {
        padding: 0 1rem;
    }
    
    .blog-title,
    .archive-title {
        font-size: 1.75rem;
    }
    
    .post-content-wrapper,
    .single-post-article {
        padding: 1.5rem;
    }
    
    .post-title {
        font-size: 1.5rem;
    }
    
    .post-meta,
    .single-post-meta {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-previous,
    .nav-next {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .blog-title,
    .archive-title {
        font-size: 1.5rem;
    }
    
    .post-title {
        font-size: 1.25rem;
    }
    
    .post-content-wrapper,
    .single-post-article {
        padding: 1.25rem;
    }
    
    .single-post-content {
        font-size: 1rem;
    }
}
