/* ============================================================
   V9BET (moban-9) WordPress Theme - Main Stylesheet
   ============================================================ */

/* ============================================================
   1. Global / Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
body {
    background: linear-gradient(135deg, #0d0b2e 0%, #1a1040 100%);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: #00E5FF; text-decoration: none; transition: all 0.3s; }
a:hover { color: #fff; }

/* ============================================================
   2. Header
   ============================================================ */
.site-header {
    background: rgba(13, 11, 46, 0.95);
    border-bottom: 1px solid #2a1f6e;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}
.logo img { max-height: 45px; }
.header-time { color: #00E5FF; font-size: 14px; }
.header-btn-group { display: flex; gap: 10px; }
.btn-login {
    padding: 8px 20px;
    border: 1px solid #00E5FF;
    color: #00E5FF;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    background: transparent;
    transition: all 0.3s;
}
.btn-login:hover { background: rgba(0, 229, 255, 0.1); color: #fff; }
.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #00E5FF, #0088ff);
    color: #fff;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    border: none;
    transition: all 0.3s;
}
.btn-register:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(0, 229, 255, 0.3); color: #fff; }
.btn-demo {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid #aaa;
    color: #aaa;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
}
.btn-demo:hover { border-color: #00E5FF; color: #00E5FF; }

/* ============================================================
   3. Navigation
   ============================================================ */
.main-navigation {
    background: rgba(20, 16, 58, 0.9);
    border-top: 1px solid #2a1f6e;
}
.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
}
.nav-item { position: relative; }
.nav-link {
    display: block;
    padding: 12px 15px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s;
}
.nav-link:hover, .nav-link:focus { color: #00E5FF; }
.nav-link i { margin-right: 5px; color: #00E5FF; }
.mobile-menu-toggle {
    display: none;
    background: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
}
.nav-dropdown, .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #14103a;
    border: 1px solid #2a1f6e;
    min-width: 200px;
    display: none;
    z-index: 999;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.nav-item:hover .nav-dropdown,
.nav-item:hover .sub-menu { display: block; }
.nav-dropdown li a, .sub-menu li a {
    padding: 10px 15px;
    color: #fff;
    display: block;
    font-size: 13px;
}
.nav-dropdown li a:hover, .sub-menu li a:hover { color: #00E5FF; background: rgba(0, 229, 255, 0.05); }

/* ============================================================
   4. Notification Bar
   ============================================================ */
.notification-bar {
    background: linear-gradient(90deg, #2a1f6e, #1a1040);
    padding: 10px 0;
    overflow: hidden;
}
.notification-content {
    display: flex;
    gap: 40px;
    animation: scrollNotification 30s linear infinite;
    white-space: nowrap;
    font-size: 13px;
    color: #aaa;
}
@keyframes scrollNotification {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ============================================================
   5. Stats Counter Section
   ============================================================ */
.stats-counter-section {
    padding: 60px 0;
    text-align: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.stat-card {
    background: rgba(20, 16, 58, 0.8);
    border: 1px solid #2a1f6e;
    border-radius: 16px;
    padding: 40px 20px;
    backdrop-filter: blur(10px);
}
.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #00E5FF;
    margin-bottom: 10px;
}
.stat-label {
    color: #aaa;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================================
   6. Hero Slider
   ============================================================ */
.hero-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #2a1f6e;
}
.hero-slider .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.hero-slider .swiper-pagination-bullet { background: #fff; opacity: 0.5; }
.hero-slider .swiper-pagination-bullet-active { background: #00E5FF; opacity: 1; }
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev { color: #00E5FF; }

/* ============================================================
   7. Section Title
   ============================================================ */
.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-left: 4px solid #00E5FF;
    padding-left: 12px;
}
.section-title i { color: #00E5FF; margin-right: 8px; }

/* ============================================================
   8. Product Grid (6 Grid)
   ============================================================ */
.product-grid-section { padding: 30px 0; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.product-card {
    background: linear-gradient(135deg, #14103a, #1a1040);
    border: 1px solid #2a1f6e;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    display: block;
    color: #fff;
}
.product-card:hover {
    border-color: #00E5FF;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.15);
    color: #fff;
}
.product-card i { font-size: 40px; color: #00E5FF; margin-bottom: 15px; display: block; }
.product-card h3 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.product-card p { color: #888; font-size: 13px; margin: 0; }

/* ============================================================
   9. Waterfall Grid
   ============================================================ */
.waterfall-section { padding: 30px 0; }
.waterfall-grid {
    columns: 4;
    column-gap: 15px;
}
.waterfall-item {
    break-inside: avoid;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a1f6e;
    transition: all 0.3s;
    display: inline-block;
    width: 100%;
    position: relative;
}
.waterfall-item:hover {
    border-color: #00E5FF;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}
.waterfall-item img { width: 100%; display: block; }
.waterfall-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 15px 10px 10px;
    opacity: 0;
    transition: opacity 0.3s;
}
.waterfall-item:hover .waterfall-item-overlay { opacity: 1; }
.waterfall-item-overlay span { color: #fff; font-size: 13px; font-weight: 500; }

/* ============================================================
   10. Glass Promo Cards
   ============================================================ */
.glass-promo-section { padding: 30px 0; }
.glass-promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.glass-card {
    background: rgba(20, 16, 58, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}
.glass-card:hover {
    border-color: #00E5FF;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 229, 255, 0.1);
}
.glass-card-icon { margin-bottom: 15px; }
.glass-card-icon i { font-size: 36px; color: #00E5FF; }
.glass-card h3 { color: #fff; font-size: 18px; margin-bottom: 10px; }
.glass-card-amount {
    font-size: 32px;
    font-weight: 700;
    color: #00E5FF;
    margin-bottom: 10px;
}
.glass-card p { color: #aaa; font-size: 14px; margin-bottom: 20px; }
.glass-card-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #00E5FF, #0088ff);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
.glass-card-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(0, 229, 255, 0.3); color: #fff; }

/* ============================================================
   11. Poster Section
   ============================================================ */
.poster-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 30px 0;
}
.poster-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a1f6e;
    transition: all 0.3s;
}
.poster-item:hover {
    border-color: #00E5FF;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}
.poster-item img { width: 100%; display: block; }

/* ============================================================
   12. News Section
   ============================================================ */
.home-news-section { padding: 30px 0; }
.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.article-card {
    background: #14103a;
    border: 1px solid #2a1f6e;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    display: block;
    color: #fff;
}
.article-card:hover {
    border-color: #00E5FF;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
    color: #fff;
}
.article-card-thumb { overflow: hidden; }
.article-card-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s;
}
.article-card:hover .article-card-thumb img { transform: scale(1.05); }
.article-card-title {
    padding: 12px 15px 5px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}
.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: #888;
}
.article-card-meta i { color: #00E5FF; margin-right: 5px; }
.article-card-excerpt {
    padding: 8px 15px 15px;
    font-size: 13px;
    color: #aaa;
}
.article-card-more {
    display: inline-block;
    padding: 8px 15px 15px;
    color: #00E5FF;
    font-size: 13px;
    font-weight: 500;
}
.article-card-more:hover { color: #fff; }
.view-more-btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid #00E5FF;
    color: #00E5FF;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
}
.view-more-btn:hover {
    background: rgba(0, 229, 255, 0.1);
    color: #fff;
}

/* ============================================================
   13. Download Section
   ============================================================ */
.download-section {
    background: linear-gradient(135deg, #14103a, #1a1040);
    border: 1px solid #2a1f6e;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 30px 0;
}
.download-section h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}
.download-section p {
    color: #aaa;
    font-size: 15px;
    margin-bottom: 25px;
}
.download-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #00E5FF, #0088ff);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}
.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
    color: #fff;
}
.download-btn i { font-size: 20px; }

/* ============================================================
   14. Content Area & Articles (index/category/single)
   ============================================================ */
.content-area {
    display: flex;
    gap: 30px;
    padding: 30px 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 0;
    color: #aaa;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: #888;
}
.breadcrumb a { color: #aaa; }
.breadcrumb a:hover { color: #00E5FF; }
.breadcrumb span { margin: 0 8px; }

/* Category */
.category-header { margin-bottom: 20px; }
.category-title {
    font-size: 26px;
    color: #fff;
    margin-bottom: 10px;
}
.category-title i { color: #00E5FF; margin-right: 8px; }
.category-desc { color: #aaa; font-size: 14px; }

/* Provider Tabs */
.provider-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.provider-tab {
    padding: 8px 18px;
    background: #14103a;
    border: 1px solid #2a1f6e;
    color: #aaa;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}
.provider-tab:hover, .provider-tab.active {
    border-color: #00E5FF;
    color: #00E5FF;
    background: rgba(0, 229, 255, 0.05);
}

/* Single Article */
.single-article {
    background: #14103a;
    border: 1px solid #2a1f6e;
    border-radius: 16px;
    padding: 30px;
}
.article-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}
.article-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2a1f6e;
}
.article-meta i { color: #00E5FF; margin-right: 5px; }
.article-featured-img {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}
.article-featured-img img { width: 100%; display: block; }
.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
}
.article-content p { margin-bottom: 15px; }
.article-content h2, .article-content h3, .article-content h4 { color: #fff; margin: 20px 0 10px; }
.article-content img { max-width: 100%; border-radius: 8px; margin: 15px 0; }
.article-tags {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #2a1f6e;
}
.article-tags i { color: #00E5FF; margin-right: 8px; }
.article-tags span {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 6px;
    font-size: 12px;
    color: #00E5FF;
    margin: 4px;
}
.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #2a1f6e;
}
.article-nav a { color: #00E5FF; font-size: 14px; }

/* Related Posts */
.related-posts { margin-top: 30px; }
.related-posts-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
}
.related-posts-title i { color: #00E5FF; margin-right: 8px; }
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.related-item {
    background: #14103a;
    border: 1px solid #2a1f6e;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    display: block;
    color: #fff;
}
.related-item:hover {
    border-color: #00E5FF;
    transform: translateY(-3px);
    color: #fff;
}
.related-item-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.related-item-title {
    padding: 10px;
    font-size: 13px;
    color: #fff;
}

/* Page */
.page-article {
    background: #14103a;
    border: 1px solid #2a1f6e;
    border-radius: 16px;
    padding: 30px;
}
.page-title { font-size: 28px; color: #fff; margin-bottom: 20px; }
.page-featured-img { margin-bottom: 20px; border-radius: 12px; overflow: hidden; }
.page-featured-img img { width: 100%; display: block; }
.page-content { font-size: 16px; line-height: 1.8; color: #ddd; }
.page-content p { margin-bottom: 15px; }
.page-content img { max-width: 100%; border-radius: 8px; }

/* Pagination */
.pagination { margin-top: 30px; text-align: center; }
.pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination a, .pagination .current, .pagination span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}
.pagination a {
    background: #14103a;
    border: 1px solid #2a1f6e;
    color: #aaa;
}
.pagination a:hover { border-color: #00E5FF; color: #00E5FF; }
.pagination .current {
    background: linear-gradient(135deg, #00E5FF, #0088ff);
    color: #fff;
    border: none;
}

/* ============================================================
   15. Floating Sidebar
   ============================================================ */
.floating-sidebar {
    position: fixed;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
}
.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #14103a;
    border: 1px solid #2a1f6e;
    border-radius: 10px;
    color: #00E5FF;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
}
.sidebar-btn:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: #00E5FF;
    color: #fff;
    transform: scale(1.1);
}
.sidebar-btn-facebook:hover { background: rgba(24, 119, 242, 0.2); color: #1877F2; border-color: #1877F2; }
.sidebar-btn-telegram:hover { background: rgba(0, 136, 204, 0.2); color: #0088cc; border-color: #0088cc; }
.sidebar-label {
    display: none;
    position: absolute;
    right: 60px;
    background: #14103a;
    border: 1px solid #2a1f6e;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    color: #fff;
}
.sidebar-btn:hover .sidebar-label { display: block; }

/* ============================================================
   16. Footer
   ============================================================ */
.site-footer {
    background: #0a0825;
    border-top: 1px solid #2a1f6e;
    padding: 40px 0 20px;
    margin-top: 40px;
}
.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
.footer-brand-logo { margin-bottom: 15px; }
.footer-brand-logo img { max-height: 40px; }
.footer-brand-text { color: #aaa; font-size: 13px; line-height: 1.6; margin-bottom: 15px; }
.footer-18plus {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #ff4444;
    color: #ff4444;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}
.footer-social-links { display: flex; gap: 10px; }
.footer-social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #14103a;
    border: 1px solid #2a1f6e;
    border-radius: 8px;
    color: #aaa;
    transition: all 0.3s;
}
.footer-social-links a:hover { border-color: #00E5FF; color: #00E5FF; }
.footer-col h4 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aaa; font-size: 13px; transition: all 0.3s; }
.footer-col ul li a:hover { color: #00E5FF; padding-left: 5px; }
.footer-license-bar {
    border-top: 1px solid #2a1f6e;
    padding-top: 20px;
    text-align: center;
    margin-bottom: 20px;
}
.footer-license-bar h4 { color: #fff; font-size: 14px; margin-bottom: 15px; }
.license-icons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #aaa;
}
.license-item i { font-size: 24px; color: #00E5FF; }
.license-item span { font-size: 11px; }
.footer-bottom {
    border-top: 1px solid #2a1f6e;
    padding-top: 20px;
    text-align: center;
}
.footer-copyright { color: #aaa; font-size: 13px; margin-bottom: 8px; }
.footer-disclaimer { color: #666; font-size: 12px; }

/* ============================================================
   17. Announcement Modal
   ============================================================ */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.announcement-modal.active { display: flex; }
.announcement-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}
.announcement-content {
    position: relative;
    background: #14103a;
    border: 1px solid #2a1f6e;
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    z-index: 1;
}
.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 24px;
    cursor: pointer;
}
.announcement-close:hover { color: #fff; }
.announcement-header-icon {
    text-align: center;
    margin-bottom: 15px;
}
.announcement-header-icon i { font-size: 36px; color: #00E5FF; }
.announcement-title {
    text-align: center;
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}
.announcement-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid #2a1f6e;
    border-radius: 8px;
    transition: all 0.3s;
    color: #fff;
}
.announcement-item:hover { border-color: #00E5FF; color: #fff; }
.announcement-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}
.announcement-badge.hot { background: #ff4444; color: #fff; }
.announcement-badge.new { background: #00E5FF; color: #000; }
.announcement-badge.info { background: #0088ff; color: #fff; }
.announcement-text { flex: 1; font-size: 13px; }
.announcement-item i { color: #00E5FF; }
.announcement-footer { text-align: center; }
.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #00E5FF, #0088ff);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}
.announcement-cta:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(0, 229, 255, 0.3); color: #fff; }

/* ============================================================
   18. Partners
   ============================================================ */
.partners-section { padding: 30px 0; }
.partners-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
}
.partners-scroll::-webkit-scrollbar { display: none; }
.partner-item {
    flex-shrink: 0;
    padding: 15px 25px;
    background: #14103a;
    border: 1px solid #2a1f6e;
    border-radius: 10px;
    color: #aaa;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
.partner-item:hover { border-color: #00E5FF; color: #00E5FF; }
