@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;600;700;900&family=Orbitron:wght@700;900&display=swap');

:root {
    --primary: #2563eb;
    --secondary: #7c3aed;
    --dark: #1e293b;
    --text: #1e293b;
    --text-light: #64748b;
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border: rgba(15,23,42,0.1);
  }
  
  

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background: var(--bg-main);
    color: var(--text);
    direction: rtl;
    line-height: 1.6;
  }
  
  

a {
    color: var(--text);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--primary);
}

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

.container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

/* Top Bar */
.top-bar {
    background: rgba(15,20,25,0.95);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.top-bar .social-links {
    display: flex;
    gap: 0.8rem;
}

.top-bar .social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,255,136,0.1);
    border: 1px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    transition: 0.3s;
}

.top-bar .social-links a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,255,136,0.3);
}

/* Header */
.site-header {
    background: rgba(15,20,25,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 2px 20px rgba(0,255,136,0.2);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 1rem 0;
}

.header-wrapper-new {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    gap: 0.75rem;
    max-width: 100%;
}

.header-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.site-branding-center {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.site-branding-center a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    justify-content: center;
}

.header-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.site-logo {
    font-size: 2rem;
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0,255,136,0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(0,255,136,1), 0 0 50px rgba(0,255,136,0.5);
    }
}

.site-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.site-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary);
    margin: 0;
    text-shadow: 0 0 10px rgba(0,255,136,0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-description {
    font-size: 0.7rem;
    color: var(--secondary);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-toggle,
.profile-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: var(--dark);
    padding: 0;
    border-radius: 8px;
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0,255,136,0.3);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.profile-btn {
    border-radius: 50%;
}

.menu-toggle:hover,
.profile-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0,255,136,0.5);
}

/* Desktop Navigation */
.desktop-navigation {
    background: rgba(15,20,25,0.95);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

.desktop-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.desktop-menu li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: var(--text);
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.desktop-menu li a:hover {
    background: rgba(0,255,136,0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0,255,136,0.2);
}

/* Mobile Sidebar */
.mobile-sidebar-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: 0 !important;
    width: 280px !important;
    max-width: 85vw !important;
    background: rgba(15,20,25,0.98) !important;
    backdrop-filter: blur(20px) !important;
    border-left: 2px solid var(--primary) !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s ease-in-out !important;
    z-index: 1055 !important;
}

.mobile-sidebar-menu.show {
    transform: translateX(0) !important;
}

.offcanvas-header {
    background: linear-gradient(135deg, rgba(0,255,136,0.2), rgba(0,212,255,0.2));
    border-bottom: 2px solid var(--primary);
    padding: 1rem;
}

.offcanvas-title {
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(0,255,136,0.5);
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.offcanvas .btn-close {
    filter: invert(1);
}

.offcanvas-body {
    padding: 0.5rem;
}

.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.mobile-menu li {
    margin-bottom: 0.5rem;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    color: var(--text) !important;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
    border: 1px solid transparent;
    font-size: 0.95rem;
}

.mobile-menu a i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.mobile-menu a:hover {
    background: rgba(0,255,136,0.15) !important;
    border-color: var(--primary);
    color: var(--primary) !important;
    box-shadow: 0 0 20px rgba(0,255,136,0.2);
    transform: translateX(-5px);
}

.mobile-menu a:hover i {
    text-shadow: 0 0 10px var(--primary);
}

.mobile-menu .auth-links a {
    background: linear-gradient(135deg, rgba(0,255,136,0.2), rgba(0,212,255,0.2));
    color: var(--primary) !important;
    border: 1px solid var(--primary);
    margin: 0.5rem 0.5rem;
    font-weight: 700;
    justify-content: center;
}

.mobile-menu .auth-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: var(--dark) !important;
    transform: translateX(0) !important;
}

/* Hero */
.hero-section {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, rgba(0,255,136,0.05), rgba(0,212,255,0.05));
}

.hero-slide {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(234, 235, 241, 0.9) 100%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: var(--text);
}

.hero-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.hero-title a {
    color: var(--text);
}

.hero-title a:hover {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0,255,136,0.5);
}

.hero-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Sections */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    flex-wrap: wrap;
    gap: 0.75rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--primary);
    margin: 0;
    text-shadow: 0 0 10px rgba(0,255,136,0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title i {
    font-size: 1.25rem;
}

.section-more {
    color: var(--text);
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.section-more:hover {
    color: var(--primary);
    transform: translateX(-5px);
}

/* Featured Cards */
.featured-card {
    background: rgba(15,20,25,0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: 0.3s;
    height: 100%;
}

.featured-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,255,136,0.2);
}

.featured-thumb {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.featured-card:hover .featured-thumb img {
    transform: scale(1.1);
}

.featured-category {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.featured-content {
    padding: 1rem;
}

.featured-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.featured-title a {
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-title a:hover {
    color: var(--primary);
}

.featured-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--secondary);
    flex-wrap: wrap;
}

/* Post Item */
.post-item {
    background: rgba(15,20,25,0.8);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.post-item:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(0,255,136,0.15);
}

.post-item-thumb {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
}

.post-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.post-item:hover .post-item-thumb img {
    transform: scale(1.1);
}

.post-item-category {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.post-item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-item-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-item-title a {
    color: var(--text);
}

.post-item-title a:hover {
    color: var(--primary);
}

.post-item-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--secondary);
    flex-wrap: wrap;
}

.post-item-excerpt {
    color: rgba(232,232,232,0.7);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 0.65rem 1.25rem;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(0,255,136,0.3);
    transition: 0.3s;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    transform: translateX(-3px) scale(1.03);
    box-shadow: 0 0 25px rgba(0,255,136,0.5);
    color: var(--dark);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.widget {
    background: rgba(15,20,25,0.8);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.widget-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    text-shadow: 0 0 10px rgba(0,255,136,0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popular-list {
    list-style: none;
    padding: 0;
}

.popular-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    transition: 0.3s;
}

.popular-item:last-child {
    border-bottom: none;
}

.popular-number {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 900;
    border-radius: 8px;
    flex-shrink: 0;
}

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

.popular-content a {
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popular-content a:hover {
    color: var(--primary);
}

.popular-meta {
    font-size: 0.8rem;
    color: var(--secondary);
    margin-top: 0.25rem;
}

.ad-banner-sidebar {
    background: rgba(10,14,39,0.5);
    border: 2px dashed var(--primary);
    border-radius: 8px;
    padding: 2.5rem 1rem;
    text-align: center;
}

.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    margin-bottom: 0.65rem;
}

.categories-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem;
    border-radius: 8px;
    transition: 0.3s;
    font-size: 0.9rem;
}

.categories-list a:hover {
    background: rgba(0,255,136,0.1);
    color: var(--primary);
    padding-right: 1rem;
}

.cat-count {
    background: rgba(0,255,136,0.1);
    color: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Footer */
.site-footer {
    background: rgba(15,20,25,0.98);
    border-top: 2px solid var(--primary);
    box-shadow: 0 -2px 20px rgba(0,255,136,0.2);
    padding: 2.5rem 0 1rem;
    margin-top: 3rem;
}

.footer-widgets {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    text-shadow: 0 0 10px rgba(0,255,136,0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,255,136,0.1);
    border: 1px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.15rem;
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,255,136,0.3);
}

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

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: rgba(22, 20, 20, 0.7);
    transition: 0.3s;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-right: 0.5rem;
}

.footer-newsletter {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid var(--primary);
    border-radius: 25px;
    background: rgba(0,0,0,0.3);
    color: var(--text);
    font-size: 0.9rem;
}

.footer-newsletter button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 0.7rem 1.25rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0,255,136,0.3);
    transition: 0.3s;
    flex-shrink: 0;
}

.footer-newsletter button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0,255,136,0.5);
}

.footer-bottom {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.copyright {
    margin: 0;
    color: rgba(175, 241, 68, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(232,232,232,0.7);
    transition: 0.3s;
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    color: var(--dark);
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,255,136,0.3);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,255,136,0.5);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.page-numbers {
    padding: 0.65rem 1rem;
    background: rgba(15,20,25,0.8);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.9rem;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0,255,136,0.3);
}

/* Responsive - موبایل */
@media (max-width: 991px) {
    .sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-wrapper-new {
        grid-template-columns: 50px 1fr 50px;
        gap: 0.5rem;
    }

    .site-logo {
        font-size: 1.75rem;
    }

    .site-title {
        font-size: 0.95rem;
    }

    .site-description {
        display: none !important;
    }

    .menu-toggle,
    .profile-btn {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
    }

    .hero-slide {
        height: 280px;
    }

    .hero-content {
        padding: 1.25rem;
    }

    .hero-title {
        font-size: 1.35rem;
    }

    .hero-meta {
        font-size: 0.8rem;
        gap: 1rem;
    }

    .section-title {
        font-size: 1.15rem;
    }

    .section-title i {
        font-size: 1.1rem;
    }

    .featured-thumb {
        height: 160px;
    }

    .featured-content {
        padding: 0.9rem;
    }

    .featured-title {
        font-size: 0.95rem;
    }

    .post-item {
        padding: 1rem;
    }

    .post-item-thumb {
        height: 160px;
    }

    .post-item-title {
        font-size: 1.1rem;
    }

    .widget {
        padding: 1rem;
    }

    .widget-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .popular-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .popular-content a {
        font-size: 0.85rem;
    }

    .scroll-top {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        bottom: 1rem;
        left: 1rem;
    }
}

@media (max-width: 576px) {
    .header-wrapper-new {
        grid-template-columns: 45px 1fr 45px;
        gap: 0.4rem;
    }

    .site-logo {
        font-size: 1.6rem;
    }

    .site-title {
        font-size: 0.9rem;
    }

    .menu-toggle,
    .profile-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-slide {
        height: 240px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .section-header {
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.05rem;
    }

    .featured-thumb,
    .post-item-thumb {
        height: 140px;
    }

    .widget {
        padding: 0.85rem;
    }
}

@media (max-width: 400px) {
    .header-wrapper-new {
        grid-template-columns: 42px 1fr 42px;
        gap: 0.3rem;
    }

    .site-logo {
        font-size: 1.5rem;
    }

    .site-title {
        font-size: 0.85rem;
    }

    .menu-toggle,
    .profile-btn {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
}
@media (max-width: 700px) {
    .header-wrapper-new {
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      justify-content: space-between !important;
      gap: 0 !important;
      width: 100% !important;
    }
    .header-right,
    .header-left {
      flex: 0 0 auto;
    }
    .site-branding-center {
      flex: 1 1 auto;
      justify-content: center !important;
      min-width: 0 !important;
    }
    .site-branding-center a {
      min-width: 0 !important;
      flex-wrap: nowrap !important;
      overflow: hidden !important;
    }
    .site-title {
      max-width: 120px !important;
      overflow: hidden !important;
      text-overflow: ellipsis !important;
      white-space: nowrap !important;
    }
    .menu-toggle,
    .profile-btn {
      min-width: 40px !important;
      max-width: 50px !important;
      flex-shrink: 0 !important;
      margin: 0 !important;
    }
  }

  .stat-item, .popular-number {
    background: linear-gradient(135deg, #89b8a3 60%, #8bd2e0 100%);
    color: #23282c;
    border-radius: 11px;
    padding: 0.26rem 0.9rem;
    min-width: 38px;
    box-shadow: 0 0 7px #00ff8888, 0 0 2px #00d4ff66;
    font-size: 0.97rem;
    font-family: Orbitron, Vazirmatn, sans-serif;
    font-weight: 900;
    text-align: center;
    display: inline-block;
    margin: 0 0.12rem;
    letter-spacing: 1px;
    animation: statpulse 1.1s infinite alternate;
    transition: transform .16s, box-shadow .23s;
  }
  
  @keyframes statpulse {
    from {
      box-shadow: 0 0 6px #00ff88cc, 0 0 1px #00d4ff55;
      transform: scale(1);
    }
    to {
      box-shadow: 0 0 15px #00ff88cc, 0 0 8px #00d4ff88;
      transform: scale(1.04);
    }
  }
  
  @media (max-width: 430px) {
    .stat-item, .popular-number {
      padding: 0.14rem 0.45rem;
      font-size: 0.8rem;
      min-width: 25px;
      margin: 0 0.08rem;
      border-radius: 7px;
      color:  #23282c !important
      /* سایر موارد */
    }
  }
  
/* Single Article Styles */
.single-article {
    background: rgba(15,20,25,0.7);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .article-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
  }
  
  .article-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .meta-item {
    color: var(--secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  .meta-item i {
    color: var(--primary);
  }
  
  .article-featured-image {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .article-featured-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
  }
  
  .article-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 1.5rem;
  }
  
  .article-content p {
    margin-bottom: 1rem;
  }
  
  .article-categories,
  .article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(0,255,136,0.05);
    border-radius: 8px;
    border: 1px solid rgba(0,255,136,0.2);
  }
  
  .article-categories i,
  .article-tags i {
    color: var(--primary);
    margin-left: 0.3rem;
  }
  
  .article-categories span,
  .article-tags span {
    color: var(--text);
    font-weight: 700;
    margin-left: 0.5rem;
  }
  
  .article-categories a,
  .article-tags a {
    background: rgba(0,255,136,0.15);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(0,255,136,0.3);
    transition: 0.3s;
  }
  
  .article-categories a:hover,
  .article-tags a:hover {
    background: var(--primary);
    color: var(--dark);
  }
  
  .article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0,212,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(0,212,255,0.2);
    margin-bottom: 1.5rem;
  }
  
  .article-share strong {
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .article-share i {
    color: var(--secondary);
  }
  
  .share-btns {
    display: flex;
    gap: 0.5rem;
  }
  
  .share-item {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,255,136,0.1);
    border: 1px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.1rem;
    transition: 0.3s;
  }
  
  .share-item:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,255,136,0.3);
  }
  
  /* Related Section */
  .related-section {
    background: rgba(15,20,25,0.7);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .related-item {
    background: rgba(15,20,25,0.8);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem;
    transition: 0.3s;
  }
  
  .related-item:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0,255,136,0.2);
  }
  
  .related-thumb {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.5rem;
  }
  
  .related-thumb img {
    width: 100%;
    height: 85px;
    object-fit: cover;
    display: block;
    transition: 0.3s;
  }
  
  .related-item:hover .related-thumb img {
    transform: scale(1.05);
  }
  
  .related-title {
    font-size: 0.9rem;
    margin: 0;
  }
  
  .related-title a {
    color: var(--text);
  }
  
  .related-title a:hover {
    color: var(--primary);
  }
  
  /* Comments Section */
  .comments-section {
    background: rgba(15,20,25,0.7);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  /* Sidebar */
  .sidebar .widget {
    background: rgba(15,20,25,0.7);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .hot-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .hot-item {
    margin-bottom: 1rem;
  }
  
  .hot-item a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(15,20,25,0.8);
    border: 1px solid transparent;
    border-radius: 8px;
    transition: 0.3s;
  }
  
  .hot-item a:hover {
    border-color: var(--primary);
    background: rgba(0,255,136,0.05);
  }
  
  .hot-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
  }
  
  .hot-item span {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.3;
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .sidebar {
      margin-top: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .single-article {
      padding: 1.25rem;
    }
    
    .article-title {
      font-size: 1.5rem;
    }
    
    .article-featured-image img {
      height: 220px;
    }
    
    .article-meta {
      gap: 0.75rem;
      font-size: 0.85rem;
    }
  }

  


  /* Comments Area */
.comments-area {
  background: rgba(15,20,25,0.7);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
}

.comments-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.comments-title i {
  color: var(--secondary);
}

/* Comment List */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.comment {
  background: rgba(20,25,35,0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: 0.3s;
}

.comment:hover {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0,255,136,0.15);
}

.comment-body {
  display: flex;
  gap: 1rem;
}

.comment-author img {
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.comment-content-wrap {
  flex: 1;
}

.comment-author {
  margin-bottom: 0.5rem;
}

.comment-author .fn {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 0.5rem;
}

.comment-metadata {
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.comment-metadata a {
  color: var(--secondary);
}

.comment-content {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.reply {
  margin-top: 0.5rem;
}

.comment-reply-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0,255,136,0.1);
  color: var(--primary);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid var(--primary);
  transition: 0.3s;
}

.comment-reply-link:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

/* Comment Form */
.comment-form-custom {
  background: rgba(20,25,35,0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.comment-reply-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comment-notes {
  background: rgba(0,212,255,0.08);
  border-left: 3px solid var(--secondary);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text);
}

.comment-notes i {
  color: var(--secondary);
  margin-left: 0.3rem;
}

.required {
  color: #ff4757;
  margin-right: 2px;
}

.comment-form-field {
  margin-bottom: 1.2rem;
}

.comment-form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.comment-form-field label i {
  color: var(--primary);
  margin-left: 0.3rem;
}

.comment-form-field input[type="text"],
.comment-form-field input[type="email"],
.comment-form-field input[type="url"],
.comment-form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(15,20,25,0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.95rem;
  transition: 0.3s;
}

.comment-form-field input:focus,
.comment-form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,255,136,0.1);
}

.comment-form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--dark);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,255,136,0.4);
}

.no-comments {
  text-align: center;
  padding: 2rem;
  color: var(--text);
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 768px) {
  .comments-area {
    padding: 1.25rem;
  }
  
  .comment-form-custom {
    padding: 1rem;
  }
  
  .comment-body {
    flex-direction: column;
  }
}














/* ==========================================
   Light Theme Complete
   ========================================== */

/* Header */
.site-header,
.main-header,
.top-bar {
  background: var(--bg-card) !important;
  border-bottom: 1px solid var(--border) !important;
}

/* Cards */
.featured-card,
.post-item,
.widget,
.single-post,
.single-article,
.related-posts,
.comments-area {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 1px 3px rgba(15,23,42,0.05) !important;
}

/* Hover */
.featured-card:hover,
.post-item:hover {
  box-shadow: 0 4px 12px rgba(37,99,235,0.15) !important;
  border-color: var(--primary) !important;
}

/* Footer */
.site-footer {
  background: var(--bg-card) !important;
  border-top: 1px solid var(--border) !important;
}

/* Mobile Menu */
.mobile-sidebar-menu {
  background: var(--bg-card) !important;
  border-left: 1px solid var(--border) !important;
}

/* Inputs */
.comment-form-field input,
.comment-form-field textarea,
.footer-newsletter input {
  background: var(--bg-main) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
}

/* Buttons - Keep Gradient */
.menu-toggle,
.profile-btn,
.submit-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  color: #ffffff !important;
}













/* ==========================================
   Horizontal Ads Banner - 6 بنر در همه سایزها
   ========================================== */

   .horizontal-ads-banner {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    margin-bottom: 1.5rem;
  }
  
  .ads-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .ad-banner-item {
    width: 100%;
    transition: transform 0.3s ease;
  }
  
  .ad-banner-item:hover {
    transform: translateY(-3px);
  }
  
  .ad-banner-item a {
    display: block;
    width: 100%;
  }
  
  .ad-banner-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
  }
  
  .ad-banner-item img:hover {
    box-shadow: 0 4px 12px rgba(37,99,235,0.15);
  }
  
  /* Responsive - فقط تنظیمات فاصله */
  @media (max-width: 768px) {
    .horizontal-ads-banner {
      padding: 0.75rem 0;
    }
    
    .ads-wrapper {
      gap: 0.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .horizontal-ads-banner {
      padding: 0.5rem 0;
    }
    
    .ads-wrapper {
      gap: 0.4rem;
    }
    
    .ad-banner-item img {
      border-radius: 6px;
    }
  }




  /* ==========================================
   Featured Posts Section
   ========================================== */

.featured-posts-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
  
  /* Featured Main Card (بزرگ) */
  .featured-main-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
    height: 400px;
    background: var(--bg-card);
  }
  
  .featured-main-link {
    display: block;
    height: 100%;
    position: relative;
  }
  
  .featured-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .featured-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .featured-main-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  }
  
  .featured-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: #ffffff;
    z-index: 2;
  }
  
  .featured-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    line-height: 1.3;
  }
  
  .featured-main-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
  }
  
  .featured-main-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  /* Featured Small Cards (4 کارت مربعی) */
  .featured-small-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 1 / 1; /* 👈 نسبت مربعی */
  }
  
  .featured-small-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(37,99,235,0.15);
  }
  
  .featured-small-link {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
  }
  
  .featured-small-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .featured-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .featured-small-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  }
  
  .featured-small-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    color: #ffffff;
    z-index: 2;
  }
  
  .featured-small-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.4;
  }
  
  .featured-small-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
  }
  
  .featured-small-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .featured-small-card {
      aspect-ratio: 4 / 3; /* در تبلت کمی افقی‌تر */
    }
  }
  
  @media (max-width: 768px) {
    .featured-main-card {
      height: 300px;
    }
    
    .featured-main-content {
      padding: 1.5rem;
    }
    
    .featured-main-title {
      font-size: 1.4rem;
    }
  }











  /* ==========================================
   Tabbed Slider Section
   ========================================== */

.tabbed-slider-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
  }
  
  /* Section Header با عنوان تب */
  .section-header-tabs {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
  }
  
  .section-title-tab {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
  }
  
  .section-title-tab i {
    color: var(--primary);
  }
  
  .active-tab-title {
    color: var(--primary);
  }
  
  /* Tab Navigation */
  .tab-nav {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    border-bottom: 2px solid var(--border);
    flex-wrap: wrap;
  }
  
  .tab-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    color: var(--text);
    font-weight: 600;
    margin-bottom: -2px;
  }
  
  .tab-item:hover {
    color: var(--primary);
  }
  
  .tab-item.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
  }
  
  .tab-item i {
    font-size: 1.2rem;
  }
  
  /* Tab Content */
  .tab-pane {
    display: none;
  }
  
  .tab-pane.active {
    display: block;
  }
  
  /* Slider Wrapper */
  .slider-wrapper {
    position: relative;
    padding: 0 50px;
  }
  
  .post-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .post-slider::-webkit-scrollbar {
    display: none;
  }
  
  /* Slider Post Item */
  .slider-post-item {
    flex: 0 0 250px;
    transition: transform 0.3s;
  }
  
  .slider-post-item:hover {
    transform: translateY(-5px);
  }
  
  .slider-post-image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    border: 1px solid var(--border);
  }
  
  .slider-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .slider-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    transition: color 0.3s;
  }
  
  .slider-post-item:hover .slider-post-title {
    color: var(--primary);
  }
  
  /* Slider Navigation */
  .slider-nav {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  
  .slider-nav:hover {
    background: var(--secondary);
    transform: translateY(-50%) scale(1.1);
  }
  
  .slider-nav.prev {
    right: 0;
  }
  
  .slider-nav.next {
    left: 0;
  }
  
  /* Responsive - موبایل */
  @media (max-width: 768px) {
    .slider-wrapper {
      padding: 0 40px;
    }
    
    /* اسکرول دقیق در موبایل */
    .post-slider {
      scroll-snap-type: x mandatory;
    }
    
    .slider-post-item {
      flex: 0 0 200px;
      scroll-snap-align: start;
    }
    
    .slider-post-image {
      height: 150px;
    }
    
    .slider-nav {
      width: 35px;
      height: 35px;
    }
    
    .section-title-tab {
      font-size: 1.3rem;
    }
  }
  
  
  


  /* ==========================================
   Main Posts Loop
   ========================================== */

.main-loop {
    margin-bottom: 2rem;
  }
  
  /* Tab Container */
  .tab-container {
    margin-bottom: 2rem;
  }
  
  .tabs {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--border);
  }
  
  .tabs li {
    margin: 0;
  }
  
  .tabs a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    color: var(--text);
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    text-decoration: none;
    margin-bottom: -2px;
  }
  
  .tabs a:hover {
    color: var(--primary);
  }
  
  .tabs a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
  }
  
  .tabs i {
    font-size: 1.2rem;
  }
  
  /* Post Horizontal Component */
  .post-horizontal-comp {
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
    text-decoration: none;
    display: block;
  }
  
  .post-horizontal-comp:hover {
    background: var(--bg-card);
  }
  
  .post-horizontal-comp .category {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .post-horizontal-comp .title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s;
  }
  
  .post-horizontal-comp:hover .title {
    color: var(--primary);
  }
  
  .metadata {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
  }
  
  .metadata > div {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  .metadata i {
    color: var(--primary);
  }
  
  /* Thumbnail */
  .thumbnail {
    position: relative;
    width: 180px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .dark-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    transition: background 0.3s;
  }
  
  .post-horizontal-comp:hover .dark-layer {
    background: rgba(0,0,0,0);
  }
  
  /* Show More Button */
  .show-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
  }
  
  .show-more:hover {
    background: var(--secondary);
    transform: translateY(-2px);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .thumbnail {
      width: 120px;
      height: 80px;
    }
    
    .post-horizontal-comp .title {
      font-size: 1rem;
    }
    
    
    
    .tabs a {
      padding: 1rem;
    }
  }
  





/* ==========================================
   Sidebar Complete - 100% مثل گیمفا
   ========================================== */

   .sidebar {
    position: sticky;
    top: 80px;
  }
  
  .sidebar-widget {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
  }
  
  .widget-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
  }
  
  .widget-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
  }
  
  .widget-title i {
    color: var(--primary);
  }
  
  /* ==========================================
     1. تبلیغات
     ========================================== */
  
  .sidebar-ads .ads-grid .ad-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
  }
  
  .sidebar-ads .ads-grid .ad-item:hover {
    transform: scale(1.05);
  }
  
  .sidebar-ads .ads-grid img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* ==========================================
     2. دکمه‌های متنی تبلیغاتی
     ========================================== */
  
  .sidebar-text-ads {
    padding: 1rem;
  }
  
  .text-ads-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .text-ad-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .text-ad-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  }
  
  /* ==========================================
     3. Tab System (برای همه ویجت‌ها)
     ========================================== */
  
  .widget-tabs {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    border-bottom: 2px solid var(--border);
  }
  
  .widget-tabs li {
    flex: 1;
  }
  
  .widget-tab-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    text-align: center;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    text-decoration: none;
    margin-bottom: -2px;
  }
  
  .widget-tab-link:hover {
    color: var(--primary);
  }
  
  .widget-tab-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
  }
  
  .widget-tab-content {
    position: relative;
  }
  
  .widget-tab-pane {
    display: none;
    animation: fadeIn 0.3s;
  }
  
  .widget-tab-pane.active {
    display: block;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* ==========================================
     داغ‌ترین‌ها
     ========================================== */
  
  .hot-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .hot-post-item {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
  }
  
  .hot-post-item:last-child {
    border-bottom: none;
  }
  
  .hot-post-item:hover {
    background: var(--bg-main);
  }
  
  .hot-post-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
  }
  
  .hot-post-thumbnail {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .hot-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hot-post-info {
    flex: 1;
  }
  
  .hot-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  
  .hot-post-link:hover .hot-post-title {
    color: var(--primary);
  }
  
  .hot-post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
  }
  
  .hot-post-meta i {
    color: var(--primary);
  }
  
  /* ==========================================
     بازی‌ها و فیلم‌ها
     ========================================== */
  
  /* آیتم اول (بزرگ با تصویر) */
  .game-item-first,
  .film-item-first {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    text-decoration: none;
  }
  
  .game-item-first img,
  .film-item-first img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .game-first-title,
  .film-first-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .game-first-title .counter,
  .film-first-title .counter {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--dark);
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  .game-first-title .title-text,
  .film-first-title .title-text {
    flex: 1;
    color: white;
    font-weight: 700;
    font-size: 1rem;
  }
  
  .game-date,
  .film-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--dark);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
  }
  
  .game-date .number,
  .film-date .number {
    display: block;
    font-size: 1.5rem;
  }
  
  .game-date .month,
  .film-date .month {
    display: block;
    font-size: 0.75rem;
  }
  
  /* آیتم‌های بقیه (لیستی) */
  .game-item,
  .film-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .game-item:hover,
  .film-item:hover {
    background: var(--bg-main);
  }
  
  .game-item-title,
  .film-item-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
  }
  
  .counter-border {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  .counter-border .counter {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
  }
  
  .game-item-title .title-text,
  .film-item-title .title-text {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
  }
  
  .game-item:hover .title-text,
  .film-item:hover .title-text {
    color: var(--primary);
  }
  
  .game-item .game-date,
  .film-item .film-date {
    position: static;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 0;
  }
  
  /* Show More Button */
  .show-more-wrapper {
    text-align: center;
    padding-top: 1rem;
  }
  
  .show-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--dark);
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .show-more:hover {
    background: var(--secondary);
    transform: translateY(-2px);
  }
  
  /* ==========================================
     پربازدیدترین‌ها
     ========================================== */
  
  .sidebar-most-viewed {
    padding: 1.5rem;
  }
  
  .widget-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
  }
  
  .widget-header-flex .widget-title {
    margin: 0;
  }
  
  .time-filters {
    display: flex;
    gap: 0.5rem;
  }
  
  .time-filter-btn {
    padding: 0.4rem 0.8rem;
    background: var(--bg-main);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .time-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
  }
  
  .time-filter-btn.active {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
  }
  
  .sidebar-most-view-tabs {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    overflow-x: auto;
    scrollbar-width: thin;
    border-bottom: 2px solid var(--border);
  }
  
  .sidebar-most-view-tabs::-webkit-scrollbar {
    height: 4px;
  }
  
  .sidebar-most-view-tabs li {
    flex-shrink: 0;
  }
  
  .most-view-tab-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-weight: 600;
    font-size: 0.85rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
    margin-bottom: -2px;
  }
  
  .most-view-tab-link:hover {
    color: var(--primary);
  }
  
  .most-view-tab-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
  }
  
  .sidebar-slider-wrapper {
    position: relative;
  }
  
  .sidebar-most-viewed-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 1rem 0;
  }
  
  .sidebar-most-viewed-slider::-webkit-scrollbar {
    display: none;
  }
  
  .most-viewed-post-item {
    flex: 0 0 280px;
    transition: transform 0.3s;
  }
  
  .most-viewed-post-item:hover {
    transform: translateY(-5px);
  }
  
  .most-viewed-post-link {
    display: block;
    text-decoration: none;
  }
  
  .most-viewed-thumbnail {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  
  .most-viewed-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .most-viewed-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    transition: color 0.3s;
  }
  
  .most-viewed-post-link:hover .most-viewed-title {
    color: var(--primary);
  }
  
  .slider-navigation {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .slider-nav-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .slider-nav-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
  }
  
  /* ==========================================
     تبلیغات انتهایی
     ========================================== */
  
  .sidebar-bottom-ad {
    padding: 0;
    overflow: hidden;
  }
  
  .sidebar-bottom-ad img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }
  
  /* ==========================================
     Responsive
     ========================================== */
  
  @media (max-width: 991px) {
    .sidebar {
      position: relative;
      top: 0;
      margin-top: 3rem;
    }
  }
  
  @media (max-width: 768px) {
    .widget-header-flex {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .time-filters {
      width: 100%;
      justify-content: center;
    }
    
    .most-viewed-post-item {
      flex: 0 0 250px;
    }
  }
  






  /* ==========================================
   Scroll Snap برای پربازدیدترین‌ها
   ========================================== */

.sidebar-most-viewed-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 1rem 0;
    
    /* اضافه کردن Scroll Snap */
    scroll-snap-type: x mandatory;
  }
  
  .sidebar-most-viewed-slider::-webkit-scrollbar {
    display: none;
  }
  
  .most-viewed-post-item {
    flex: 0 0 280px;
    transition: transform 0.3s;
    
    /* Snap به مرکز */
    scroll-snap-align: center;
  }
  
  /* در موبایل یکی یکی برن */
  @media (max-width: 768px) {
    .most-viewed-post-item {
      flex: 0 0 calc(100% - 2rem);
      scroll-snap-align: center;
    }
  }
  
  /* در تبلت 2 تا کنار هم */
  @media (min-width: 769px) and (max-width: 991px) {
    .most-viewed-post-item {
      flex: 0 0 calc(50% - 0.5rem);
      scroll-snap-align: start;
    }
  }
  
  /* در دسکتاپ 3 تا کنار هم */
  @media (min-width: 992px) {
    .sidebar-most-viewed-slider {
      scroll-snap-type: x mandatory;
    }
    
    .most-viewed-post-item {
      flex: 0 0 280px;
      scroll-snap-align: start;
    }
  }









  /* ==========================================
   Page: About Us - Modern Design
   ========================================== */

.page-about {
    overflow: hidden;
  }
  
  /* Hero Section */
  .about-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(139, 92, 246, 0.05));
    position: relative;
  }
  
  .about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .about-hero .container {
    position: relative;
    z-index: 1;
  }
  
  .about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  }
  
  .about-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .about-excerpt {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  
  .about-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s;
  }
  
  .about-hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  }
  
  .about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .about-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255,255,255,0.2);
  }
  
  /* Content Section */
  .about-content {
    padding: 6rem 0;
  }
  
  .content-box {
    background: var(--bg-card);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  }
  
  .content-box p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text);
    margin-bottom: 1.5rem;
  }
  
  .content-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Stats Section */
  .about-stats {
    padding: 6rem 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-main);
    border-radius: 16px;
    border: 2px solid var(--border);
    transition: all 0.3s;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
  }
  
  .stat-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    font-size: 2rem;
    color: var(--dark);
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
  }
  
  /* Features Section */
  .about-features {
    padding: 6rem 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
  }
  
  .feature-card {
    padding: 2.5rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    margin-bottom: 2rem;
    transition: all 0.3s;
    height: 100%;
  }
  
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    font-size: 2.5rem;
    color: var(--dark);
    transition: all 0.3s;
  }
  
  .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
  }
  
  .feature-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
  }
  
  /* Mission Section */
  .about-mission {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(139, 92, 246, 0.03));
  }
  
  .mission-image {
    text-align: center;
    font-size: 15rem;
    color: var(--primary);
    opacity: 0.1;
  }
  
  .mission-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 2rem;
  }
  
  .mission-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text);
    margin-bottom: 1.5rem;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .about-title {
      font-size: 2.5rem;
    }
    
    .about-hero-image {
      transform: none;
      margin-top: 3rem;
    }
    
    .content-box {
      padding: 2.5rem;
    }
    
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-image {
      display: none;
    }
  }
  
  @media (max-width: 576px) {
    .about-title {
      font-size: 2rem;
    }
    
    .about-excerpt {
      font-size: 1.1rem;
    }
    
    .stats-grid {
      grid-template-columns: 1fr;
    }
    
    .stat-card {
      flex-direction: column;
      text-align: center;
    }
    
    .content-box {
      padding: 2rem;
    }
  }
  
  
  /* ==========================================
     Page: Contact Us
     ========================================== */
  
  .page-contact {
    padding: 4rem 0;
  }
  
  .contact-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .page-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 1rem;
  }
  
  .page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
  }
  
  /* Contact Form */
  .contact-form-wrapper {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
  }
  
  .section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2rem;
  }
  
  .section-title i {
    color: var(--primary);
  }
  
  .contact-form .form-group {
    margin-bottom: 1.5rem;
  }
  
  .contact-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
  }
  
  .contact-form label i {
    color: var(--primary);
  }
  
  .contact-form .form-control {
    width: 100%;
    padding: 1rem;
    background: var(--bg-main);
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s;
  }
  
  .contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-card);
  }
  
  .contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
  }
  
  .btn-send {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .btn-send:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
  }
  
  .btn-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  .form-response {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
  }
  
  .form-response.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid #10b981;
  }
  
  .form-response.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid #ef4444;
  }
  
  /* Contact Info */
  .contact-info-wrapper {
    position: sticky;
    top: 100px;
  }
  
  .contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
    transition: all 0.3s;
  }
  
  .contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }
  
  .info-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--dark);
  }
  
  .info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
  }
  
  .info-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
  }
  
  /* Social Links */
  .contact-social {
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
  }
  
  .contact-social h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-main);
    border: 2px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    font-size: 1.3rem;
    transition: all 0.3s;
    text-decoration: none;
  }
  
  .social-link:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-3px);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-title,
    .page-title {
      font-size: 2rem;
    }
    
    .about-excerpt,
    .page-subtitle {
      font-size: 1rem;
    }
    
    .stat-number {
      font-size: 2rem;
    }
    
    .content-wrapper {
      padding: 2rem 1.5rem;
    }
    
    .contact-form-wrapper {
      padding: 1.5rem;
    }
    
    .contact-info-wrapper {
      position: static;
      margin-top: 2rem;
    }
  }
  
  
