/* ============================================================
   SLOT88 WordPress Theme - Main Stylesheet
   Neon Slot Machine Theme with Pixel Art
   ============================================================ */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: #FF1493; text-decoration: none; transition: all 0.3s ease; }
a:hover { color: #00BFFF; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* === Neon Text Classes === */
.neon-text {
    color: #FF1493;
    text-shadow: 0 0 5px #FF1493, 0 0 10px #FF1493, 0 0 20px #FF1493, 0 0 40px #FF1493;
}
.neon-blue {
    color: #00BFFF;
    text-shadow: 0 0 5px #00BFFF, 0 0 10px #00BFFF, 0 0 20px #00BFFF;
}

/* === Header === */
.site-header {
    background: linear-gradient(180deg, #151020 0%, #0a0a0a 100%);
    border-bottom: 2px solid #2a1540;
    position: relative;
    z-index: 100;
}
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}
.logo img {
    max-height: 50px;
    filter: drop-shadow(0 0 10px rgba(255,20,147,0.5));
}
.header-time {
    color: #00BFFF;
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    text-shadow: 0 0 5px #00BFFF;
}
.header-btn-group {
    display: flex;
    gap: 10px;
    align-items: center;
}
.btn-login, .btn-register, .btn-demo {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-login {
    background: transparent;
    border: 2px solid #FF1493;
    color: #FF1493;
}
.btn-login:hover {
    background: #FF1493;
    color: #fff;
    box-shadow: 0 0 20px rgba(255,20,147,0.5);
}
.btn-register {
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 0 15px rgba(255,20,147,0.3);
}
.btn-register:hover {
    box-shadow: 0 0 30px rgba(255,20,147,0.6);
    transform: translateY(-2px);
    color: #fff;
}
.btn-demo {
    background: transparent;
    border: 2px solid #00BFFF;
    color: #00BFFF;
}
.btn-demo:hover {
    background: #00BFFF;
    color: #0a0a0a;
    box-shadow: 0 0 20px rgba(0,191,255,0.5);
}

/* === Navigation === */
.main-navigation {
    background: #151020;
    border-top: 1px solid #2a1540;
    border-bottom: 1px solid #2a1540;
    padding: 0;
}
.nav-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-item { position: relative; }
.nav-link {
    display: block;
    padding: 14px 14px;
    color: #ccc;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}
.nav-link:hover {
    color: #FF1493;
    text-shadow: 0 0 10px rgba(255,20,147,0.5);
    border-bottom-color: #FF1493;
}
.mobile-menu-toggle {
    display: none;
    background: transparent;
    color: #FF1493;
    font-size: 24px;
    cursor: pointer;
    border: none;
    padding: 12px;
}

/* === Notification Bar === */
.notification-bar {
    background: linear-gradient(90deg, #2a1540, #151020, #2a1540);
    padding: 10px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,20,147,0.2);
}
.notification-content {
    display: flex;
    gap: 40px;
    animation: scroll-notification 30s linear infinite;
    white-space: nowrap;
    color: #FFD700;
    font-size: 13px;
}
@keyframes scroll-notification {
    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;
    align-items: center;
    justify-content: center;
}
.announcement-modal.active { display: flex; }
.announcement-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
}
.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #151020, #0a0a0a);
    border: 2px solid #FF1493;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 50px rgba(255,20,147,0.3);
    animation: modal-glow 2s ease-in-out infinite alternate;
}
@keyframes modal-glow {
    0% { box-shadow: 0 0 30px rgba(255,20,147,0.3); }
    100% { box-shadow: 0 0 60px rgba(255,20,147,0.6); }
}
.announcement-close {
    position: absolute;
    top: 15px; right: 15px;
    background: none;
    border: none;
    color: #FF1493;
    font-size: 28px;
    cursor: pointer;
}
.announcement-header-icon {
    text-align: center;
    margin-bottom: 15px;
}
.announcement-header-icon i {
    font-size: 40px;
    color: #FF1493;
    text-shadow: 0 0 20px rgba(255,20,147,0.5);
}
.announcement-title {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    margin-bottom: 20px;
}
.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(42,21,64,0.5);
    border-radius: 10px;
    border: 1px solid rgba(255,20,147,0.2);
    transition: all 0.3s ease;
    color: #e0e0e0;
}
.announcement-item:hover {
    border-color: #FF1493;
    background: rgba(255,20,147,0.1);
    color: #fff;
}
.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}
.announcement-badge.hot { background: #FF1493; color: #fff; }
.announcement-badge.new { background: #00BFFF; color: #fff; }
.announcement-badge.info { background: #FFD700; color: #0a0a0a; }
.announcement-text { flex: 1; font-size: 13px; }
.announcement-footer {
    text-align: center;
    margin-top: 20px;
}
.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    color: #fff;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 0 20px rgba(255,20,147,0.4);
}
.announcement-cta:hover {
    color: #fff;
    box-shadow: 0 0 40px rgba(255,20,147,0.7);
    transform: scale(1.05);
}

/* === Neon Hero Section === */
.neon-hero-section {
    position: relative;
    padding: 60px 0;
    background: radial-gradient(ellipse at center, #2a1540 0%, #0a0a0a 70%);
    overflow: hidden;
    border-radius: 15px;
    margin: 20px 0;
}
.neon-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,20,147,0.03) 10px,
        rgba(255,20,147,0.03) 20px
    );
    animation: neon-grid-move 20s linear infinite;
}
@keyframes neon-grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(28px, 28px); }
}
.neon-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    gap: 40px;
}
.neon-hero-left { flex: 1; }
.neon-hero-right { flex: 0 0 auto; }
.neon-hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}
.neon-hero-desc {
    font-size: 16px;
    color: #bbb;
    margin-bottom: 30px;
    max-width: 500px;
}
.neon-hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-neon-primary, .btn-neon-secondary {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', monospace;
}
.btn-neon-primary {
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    color: #fff;
    box-shadow: 0 0 25px rgba(255,20,147,0.5);
    animation: btn-pulse 2s ease-in-out infinite;
}
@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 0 25px rgba(255,20,147,0.5); }
    50% { box-shadow: 0 0 50px rgba(255,20,147,0.8); }
}
.btn-neon-primary:hover { color: #fff; transform: translateY(-3px); }
.btn-neon-secondary {
    background: transparent;
    border: 2px solid #00BFFF;
    color: #00BFFF;
    box-shadow: 0 0 15px rgba(0,191,255,0.3);
}
.btn-neon-secondary:hover {
    background: #00BFFF;
    color: #0a0a0a;
    box-shadow: 0 0 30px rgba(0,191,255,0.6);
    color: #0a0a0a;
}

/* === Coin Slot Animation === */
.coin-slot-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.coin-slot {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 20px auto;
}
.coin {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: coin-drop 2s ease-in infinite;
    box-shadow: 0 0 15px rgba(255,215,0,0.5), inset 0 0 10px rgba(255,255,255,0.3);
}
.coin::after {
    content: '$';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    font-weight: 900;
    color: #B8860B;
    text-shadow: 1px 1px 0 #FFD700;
}
.coin-1 { animation-delay: 0s; }
.coin-2 { animation-delay: 0.7s; }
.coin-3 { animation-delay: 1.4s; }
@keyframes coin-drop {
    0% { top: -50px; opacity: 1; }
    80% { opacity: 1; }
    100% { top: 80px; opacity: 0; }
}
.slot-entry {
    width: 80px;
    height: 10px;
    background: #2a1540;
    border-radius: 5px;
    margin: 0 auto;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(42,21,64,0.8), inset 0 2px 4px rgba(0,0,0,0.5);
}
.slot-machine-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    background: linear-gradient(180deg, #2a1540, #151020);
    border: 2px solid #FF1493;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 20px rgba(255,20,147,0.3);
}
.slot-display {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.slot-symbol {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
    background: #0a0a0a;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #2a1540;
}
.slot-lever {
    position: absolute;
    right: -15px;
    top: 5px;
    width: 8px;
    height: 30px;
    background: #FF1493;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255,20,147,0.5);
}
.slot-lever::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,215,0,0.5);
}

/* === Hero Slider / Banner === */
.hero-slider {
    border-radius: 15px;
    overflow: hidden;
    margin: 20px 0;
    position: relative;
    border: 2px solid #2a1540;
}
.hero-slider .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 13px;
}
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #FF1493;
    text-shadow: 0 0 10px rgba(255,20,147,0.5);
}
.hero-slider .swiper-pagination-bullet-active {
    background: #FF1493;
    box-shadow: 0 0 10px #FF1493;
}

/* === Section Title === */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2a1540;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #FF1493, transparent);
}

/* === Pixel Categories Section === */
.pixel-categories-section {
    padding: 40px 0;
    margin: 20px 0;
}
.pixel-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.pixel-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: #151020;
    border: 2px solid #2a1540;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #e0e0e0;
}
.pixel-category-item:hover {
    border-color: #FF1493;
    box-shadow: 0 0 25px rgba(255,20,147,0.3), inset 0 0 25px rgba(255,20,147,0.05);
    transform: translateY(-5px);
    color: #fff;
}
.pixel-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    position: relative;
    image-rendering: pixelated;
}
/* Casino pixel icon - dice */
.pixel-icon-casino {
    box-shadow:
        8px 0 0 #FF1493, 16px 0 0 #FF1493, 24px 0 0 #FF1493, 32px 0 0 #FF1493,
        0 8px 0 #FF1493, 8px 8px 0 #FF69B4, 16px 8px 0 #FF69B4, 24px 8px 0 #FF69B4, 32px 8px 0 #FF69B4, 40px 8px 0 #FF1493,
        0 16px 0 #FF1493, 16px 16px 0 #FFD700, 24px 16px 0 #FF69B4, 40px 16px 0 #FF1493,
        0 24px 0 #FF1493, 8px 24px 0 #FF69B4, 24px 24px 0 #FFD700, 32px 24px 0 #FF69B4, 40px 24px 0 #FF1493,
        0 32px 0 #FF1493, 8px 32px 0 #FF69B4, 16px 32px 0 #FF69B4, 24px 32px 0 #FF69B4, 32px 32px 0 #FF69B4, 40px 32px 0 #FF1493,
        8px 40px 0 #FF1493, 16px 40px 0 #FF1493, 24px 40px 0 #FF1493, 32px 40px 0 #FF1493;
}
/* Slot pixel icon - slot machine */
.pixel-icon-slot {
    box-shadow:
        8px 0 0 #00BFFF, 16px 0 0 #00BFFF, 24px 0 0 #00BFFF, 32px 0 0 #00BFFF,
        0 8px 0 #00BFFF, 8px 8px 0 #FFD700, 16px 8px 0 #87CEEB, 24px 8px 0 #FFD700, 32px 8px 0 #87CEEB, 40px 8px 0 #00BFFF,
        0 16px 0 #00BFFF, 8px 16px 0 #87CEEB, 16px 16px 0 #FFD700, 24px 16px 0 #87CEEB, 32px 16px 0 #FFD700, 40px 16px 0 #00BFFF,
        0 24px 0 #00BFFF, 8px 24px 0 #FFD700, 16px 24px 0 #87CEEB, 24px 24px 0 #FFD700, 32px 24px 0 #87CEEB, 40px 24px 0 #00BFFF,
        0 32px 0 #00BFFF, 8px 32px 0 #87CEEB, 16px 32px 0 #87CEEB, 24px 32px 0 #87CEEB, 32px 32px 0 #87CEEB, 40px 32px 0 #00BFFF,
        8px 40px 0 #00BFFF, 16px 40px 0 #00BFFF, 24px 40px 0 #00BFFF, 32px 40px 0 #00BFFF;
}
/* Sport pixel icon - ball */
.pixel-icon-sport {
    box-shadow:
        16px 0 0 #FF1493, 24px 0 0 #FF1493,
        8px 8px 0 #FF1493, 16px 8px 0 #fff, 24px 8px 0 #fff, 32px 8px 0 #FF1493,
        0 16px 0 #FF1493, 8px 16px 0 #fff, 16px 16px 0 #0a0a0a, 24px 16px 0 #fff, 32px 16px 0 #0a0a0a, 40px 16px 0 #FF1493,
        0 24px 0 #FF1493, 8px 24px 0 #fff, 16px 24px 0 #fff, 24px 24px 0 #0a0a0a, 32px 24px 0 #fff, 40px 24px 0 #FF1493,
        8px 32px 0 #FF1493, 16px 32px 0 #0a0a0a, 24px 32px 0 #fff, 32px 32px 0 #FF1493,
        16px 40px 0 #FF1493, 24px 40px 0 #FF1493;
}
/* Fish pixel icon */
.pixel-icon-fish {
    box-shadow:
        16px 0 0 #00BFFF, 24px 0 0 #00BFFF, 32px 0 0 #00BFFF,
        8px 8px 0 #00BFFF, 16px 8px 0 #87CEEB, 24px 8px 0 #87CEEB, 32px 8px 0 #87CEEB, 40px 8px 0 #00BFFF,
        0 16px 0 #00BFFF, 8px 16px 0 #87CEEB, 16px 16px 0 #0a0a0a, 24px 16px 0 #87CEEB, 32px 16px 0 #87CEEB, 40px 16px 0 #87CEEB, 48px 16px 0 #00BFFF,
        0 24px 0 #00BFFF, 8px 24px 0 #87CEEB, 16px 24px 0 #87CEEB, 24px 24px 0 #87CEEB, 32px 24px 0 #87CEEB, 40px 24px 0 #87CEEB, 48px 24px 0 #00BFFF,
        8px 32px 0 #00BFFF, 16px 32px 0 #87CEEB, 24px 32px 0 #87CEEB, 32px 32px 0 #87CEEB, 40px 32px 0 #00BFFF,
        16px 40px 0 #00BFFF, 24px 40px 0 #00BFFF, 32px 40px 0 #00BFFF;
}
/* Card pixel icon */
.pixel-icon-card {
    box-shadow:
        8px 0 0 #FF1493, 16px 0 0 #FF1493, 24px 0 0 #FF1493, 32px 0 0 #FF1493,
        0 8px 0 #FF1493, 8px 8px 0 #fff, 16px 8px 0 #fff, 24px 8px 0 #fff, 32px 8px 0 #fff, 40px 8px 0 #FF1493,
        0 16px 0 #FF1493, 8px 16px 0 #fff, 16px 16px 0 #FF1493, 24px 16px 0 #fff, 32px 16px 0 #fff, 40px 16px 0 #FF1493,
        0 24px 0 #FF1493, 8px 24px 0 #fff, 16px 24px 0 #fff, 24px 24px 0 #FF1493, 32px 24px 0 #fff, 40px 24px 0 #FF1493,
        0 32px 0 #FF1493, 8px 32px 0 #fff, 16px 32px 0 #fff, 24px 32px 0 #fff, 32px 32px 0 #fff, 40px 32px 0 #FF1493,
        8px 40px 0 #FF1493, 16px 40px 0 #FF1493, 24px 40px 0 #FF1493, 32px 40px 0 #FF1493;
}
/* Lottery pixel icon - ticket */
.pixel-icon-lottery {
    box-shadow:
        0 0 0 #FFD700, 8px 0 0 #FFD700, 16px 0 0 #FFD700, 24px 0 0 #FFD700, 32px 0 0 #FFD700, 40px 0 0 #FFD700,
        0 8px 0 #FFD700, 8px 8px 0 #FFA500, 16px 8px 0 #FFA500, 24px 8px 0 #FFD700, 32px 8px 0 #FFA500, 40px 8px 0 #FFD700,
        0 16px 0 #FFD700, 8px 16px 0 #FFA500, 16px 16px 0 #FFD700, 24px 16px 0 #FFA500, 32px 16px 0 #FFD700, 40px 16px 0 #FFD700,
        0 24px 0 #FFD700, 8px 24px 0 #FFD700, 16px 24px 0 #FFA500, 24px 24px 0 #FFD700, 32px 24px 0 #FFA500, 40px 24px 0 #FFD700,
        0 32px 0 #FFD700, 8px 32px 0 #FFA500, 16px 32px 0 #FFA500, 24px 32px 0 #FFA500, 32px 32px 0 #FFA500, 40px 32px 0 #FFD700,
        0 40px 0 #FFD700, 8px 40px 0 #FFD700, 16px 40px 0 #FFD700, 24px 40px 0 #FFD700, 32px 40px 0 #FFD700, 40px 40px 0 #FFD700;
}
.pixel-category-name {
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === Hot Games Section === */
.hot-games-section {
    padding: 30px 0;
    margin: 20px 0;
}
.hot-games-swiper {
    padding-bottom: 40px;
}
.game-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 2px solid #2a1540;
    transition: all 0.3s ease;
}
.game-item:hover {
    border-color: #FF1493;
    box-shadow: 0 0 20px rgba(255,20,147,0.4);
    transform: translateY(-5px);
}
.game-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(transparent, rgba(10,10,10,0.9));
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

/* === Poster Section === */
.poster-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}
.poster-item {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #2a1540;
    transition: all 0.3s ease;
}
.poster-item:hover {
    border-color: #FF1493;
    box-shadow: 0 0 20px rgba(255,20,147,0.3);
    transform: scale(1.02);
}
.poster-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* === Home News Section === */
.home-news-section {
    padding: 30px 0;
    margin: 20px 0;
}
.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}
.home-news-placeholder {
    display: contents;
}
.article-card {
    background: #151020;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a1540;
    transition: all 0.3s ease;
    display: block;
    color: #e0e0e0;
}
.article-card:hover {
    border-color: #FF1493;
    box-shadow: 0 0 15px rgba(255,20,147,0.2);
    transform: translateY(-3px);
    color: #fff;
}
.article-card-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.article-card-title {
    padding: 12px 15px 5px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}
.article-card-title span { display: block; }
.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: #888;
    display: flex;
    gap: 15px;
}
.article-card-meta i { color: #FF1493; margin-right: 5px; }
.article-card-excerpt {
    padding: 8px 15px 15px;
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
}
.article-card-more {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 15px 15px;
    background: linear-gradient(135deg, rgba(255,20,147,0.1), rgba(0,191,255,0.1));
    border: 1px solid #FF1493;
    border-radius: 20px;
    color: #FF1493;
    font-size: 12px;
    font-weight: 600;
}
.article-card-more:hover {
    background: #FF1493;
    color: #fff;
}
.view-more-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #FF1493;
    border-radius: 25px;
    color: #FF1493;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.view-more-btn:hover, .neon-view-more:hover {
    background: #FF1493;
    color: #fff;
    box-shadow: 0 0 25px rgba(255,20,147,0.5);
}
.neon-view-more {
    font-family: 'Orbitron', monospace;
    font-size: 13px;
}

/* === Download Section === */
.download-section {
    background: linear-gradient(135deg, #151020, #2a1540);
    border: 2px solid #FF1493;
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255,20,147,0.2);
}
.download-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,191,255,0.1), transparent);
    border-radius: 50%;
}
.download-section-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}
.download-left { flex: 1; }
.download-right { flex: 0 0 200px; }
.download-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    margin-bottom: 15px;
}
.download-section p {
    color: #bbb;
    font-size: 15px;
    margin-bottom: 20px;
}
.download-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.download-feature {
    color: #00BFFF;
    font-size: 13px;
    font-weight: 600;
}
.download-feature i { margin-right: 5px; color: #FF1493; }
.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    color: #fff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 0 15px rgba(255,20,147,0.3);
    transition: all 0.3s ease;
}
.download-btn:hover {
    color: #fff;
    box-shadow: 0 0 30px rgba(255,20,147,0.6);
    transform: translateY(-2px);
}
.download-btn i { font-size: 20px; }
.download-phone-mockup {
    width: 180px;
    height: 320px;
    border: 3px solid #FF1493;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255,20,147,0.3);
    background: #0a0a0a;
    padding: 10px;
}
.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === Content Area & Article Grid === */
.content-area {
    display: flex;
    gap: 30px;
    padding: 20px 0;
}
.main-content { flex: 1; min-width: 0; }
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

/* === Breadcrumb === */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.breadcrumb a { color: #FF1493; }
.breadcrumb a:hover { color: #00BFFF; }
.breadcrumb span { color: #888; }

/* === Category Page === */
.category-header {
    padding: 20px 0;
    margin-bottom: 15px;
}
.category-title {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    margin-bottom: 10px;
}
.category-desc {
    color: #aaa;
    font-size: 14px;
}
.provider-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid #2a1540;
    border-bottom: 1px solid #2a1540;
}
.provider-tab {
    padding: 8px 20px;
    background: #151020;
    border: 1px solid #2a1540;
    border-radius: 20px;
    color: #ccc;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.provider-tab:hover, .provider-tab.active {
    background: #FF1493;
    color: #fff;
    border-color: #FF1493;
    box-shadow: 0 0 15px rgba(255,20,147,0.3);
}

/* === Pagination === */
.pagination {
    margin-top: 30px;
    text-align: center;
}
.nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.nav-links a, .nav-links .current, .nav-links span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #2a1540;
    background: #151020;
    color: #ccc;
    transition: all 0.3s ease;
}
.nav-links a:hover {
    background: #FF1493;
    color: #fff;
    border-color: #FF1493;
}
.nav-links .current {
    background: #FF1493;
    color: #fff;
    border-color: #FF1493;
    box-shadow: 0 0 15px rgba(255,20,147,0.3);
}

/* === Single Article === */
.single-article {
    background: #151020;
    border: 1px solid #2a1540;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}
.article-header { margin-bottom: 20px; }
.article-title {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}
.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #888;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a1540;
}
.article-meta i { color: #FF1493; margin-right: 5px; }
.article-meta a { color: #00BFFF; }
.article-featured-img {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #2a1540;
}
.article-featured-img img {
    width: 100%;
    height: auto;
}
.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
}
.article-content h2, .article-content h3, .article-content h4 {
    color: #fff;
    margin: 25px 0 12px;
}
.article-content p { margin-bottom: 15px; }
.article-content a { color: #FF1493; text-decoration: underline; }
.article-content img {
    border-radius: 10px;
    margin: 15px 0;
}
.article-tags {
    padding: 15px 0;
    margin-top: 25px;
    border-top: 1px solid #2a1540;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    color: #888;
}
.article-tags i { color: #FF1493; }
.article-tags span a {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,20,147,0.1);
    border: 1px solid #2a1540;
    border-radius: 15px;
    color: #FF1493;
    font-size: 12px;
    margin: 3px;
}
.article-tags span a:hover {
    background: #FF1493;
    color: #fff;
}
.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #2a1540;
}
.article-nav-prev a, .article-nav-next a {
    color: #00BFFF;
    font-size: 14px;
}

/* === Related Posts === */
.related-posts {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #2a1540;
}
.related-posts-title {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    margin-bottom: 20px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.related-item {
    background: #151020;
    border: 1px solid #2a1540;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    color: #e0e0e0;
}
.related-item:hover {
    border-color: #FF1493;
    box-shadow: 0 0 15px rgba(255,20,147,0.2);
    color: #fff;
}
.related-item-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.related-item-title {
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

/* === Page === */
.page-article {
    background: #151020;
    border: 1px solid #2a1540;
    border-radius: 15px;
    padding: 30px;
}
.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
}
.page-featured-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.page-content {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
}
.page-content h2, .page-content h3 { color: #fff; margin: 20px 0 10px; }
.page-content p { margin-bottom: 15px; }
.page-content img { border-radius: 10px; margin: 15px 0; }

/* === Footer === */
.site-footer {
    background: linear-gradient(180deg, #0a0a0a, #151020);
    border-top: 2px solid #2a1540;
    padding: 50px 0 20px;
    margin-top: 50px;
}
.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}
.footer-col h4 {
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    color: #FF1493;
    text-shadow: 0 0 5px rgba(255,20,147,0.3);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a1540;
}
.footer-brand-logo img {
    max-height: 45px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(255,20,147,0.4));
}
.footer-brand-text {
    color: #aaa;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 2px solid #FF1493;
    border-radius: 50%;
    color: #FF1493;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}
.footer-social-links {
    display: flex;
    gap: 10px;
}
.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #2a1540;
    border-radius: 50%;
    color: #ccc;
    font-size: 16px;
    transition: all 0.3s ease;
}
.footer-social-links a:hover {
    border-color: #FF1493;
    color: #FF1493;
    box-shadow: 0 0 15px rgba(255,20,147,0.3);
    background: rgba(255,20,147,0.1);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: #aaa;
    font-size: 13px;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover {
    color: #FF1493;
    padding-left: 5px;
}
.footer-license-bar {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #2a1540;
    border-bottom: 1px solid #2a1540;
    margin-bottom: 20px;
}
.footer-license-bar h4 {
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    color: #00BFFF;
    text-shadow: 0 0 5px rgba(0,191,255,0.3);
    margin-bottom: 15px;
}
.license-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}
.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.license-item i {
    font-size: 28px;
    color: #FF1493;
    text-shadow: 0 0 10px rgba(255,20,147,0.3);
}
.license-item span {
    font-size: 11px;
    color: #888;
    font-weight: 600;
}
.footer-bottom {
    text-align: center;
    padding-top: 15px;
}
.footer-copyright {
    color: #888;
    font-size: 13px;
    margin-bottom: 5px;
}
.footer-disclaimer {
    color: #666;
    font-size: 12px;
}

/* === Floating Sidebar === */
.floating-sidebar {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
}
.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #151020, #2a1540);
    border: 2px solid #2a1540;
    color: #FF1493;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}
.sidebar-btn:hover {
    border-color: #FF1493;
    box-shadow: 0 0 20px rgba(255,20,147,0.4);
    transform: scale(1.1);
    color: #fff;
}
.sidebar-btn-facebook:hover { color: #1877F2; border-color: #1877F2; box-shadow: 0 0 20px rgba(24,119,242,0.4); }
.sidebar-btn-telegram:hover { color: #0088cc; border-color: #0088cc; box-shadow: 0 0 20px rgba(0,136,204,0.4); }
.sidebar-label {
    position: absolute;
    right: 60px;
    background: #151020;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid #2a1540;
}
.sidebar-btn:hover .sidebar-label {
    opacity: 1;
    right: 65px;
}
