/* 
   Main Stylesheet
   Version: 1.0
*/

:root {
    --primary-color: #4a80f0;
    --primary-dark: #3a70e0;
    --accent-color: #9d50bb;
    --text-color: #e0e0e0;
    --dark-gray: #a0a0a0;
    --medium-gray: #555555;
    --light-gray: #2a2a2a;
    --dark-bg: #1a1a1a;
    --card-bg: #252525;
    --white: #ffffff;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	color: black;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #e4ecf8;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style-position: inside;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    color: color: #3e3c3c;;
}

h1 {
    font-size: 0.85rem;
}

h2 {
    font-size: 0.85rem;
	    color: black;
}

h3 {
    font-size: 1.2rem;
}

h4 {
    font-size: 1.15rem;
}

h5 {
    font-size: 0.85rem;
}

h6 {
    font-size: 0.745rem;
}

p {
    margin-bottom: 15px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.7rem;
}

.btn-primary {
    background-color: #186b8b;
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #663399;
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 12px 24px;
    font-size: 0.75rem;
}

.btn-sm {
    padding: 3px 8px;
    font-size: 0.6rem;
}

/* ===== HEADER ===== */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #FFFFFF;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--white);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}



.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    color: #090909;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-color);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    padding: 0;
    color: var(--white);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding: 100px 20px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 2.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.0rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-search {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.hero-search form {
    display: flex;
}

.hero-search input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-search button {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.hero-search button:hover {
    background-color: var(--primary-dark);
}

.stats-counter {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.feature-box:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-box h3 {
    font-size: 1.0rem;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-box p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.section-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-header.with-action {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
}

.section-header.with-action .section-title,
.section-header.with-action .section-subtitle,
.section-header.with-action .section-description {
    margin: 0 0 10px 0;
    text-align: left;
}

.view-all {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.view-all i {
    font-size: 0.8rem;
}

/* ===== FEATURED NETWORKS ===== */
.featured-networks {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.networks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.network-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--medium-gray);
}

.network-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.network-badge {
    /*position: absolute;*/
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.network-logo {
    height: 150px;
    overflow: hidden;
}

.network-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.network-info {
    padding: 20px;
    flex: 1;
}

.network-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.rating-summary {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: var(--warning-color);
    margin-right: 10px;
}

.review-count {
    color: var(--dark-gray);
    font-size: 14px;
}

.network-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.network-meta span {
    font-size: 14px;
    color: #0a0a0a;
}

.network-description {
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.6;
}

.network-founded {
    font-size: 14px;
    color: var(--dark-gray);
    margin-top: 10px;
}

.network-actions {
    padding: 10px 1px;
    // background-color: rgb(174 208 232 / 20%);
    display: flex;
    justify-content: right;
    gap: 4px;
    border-top: 1px solid var(--medium-gray);
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.category-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    border: 1px solid var(--medium-gray);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.category-count {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.view-all-categories {
    text-align: center;
}

/* ===== LATEST REVIEWS ===== */
.latest-reviews {
    background-color: #fbf7f7;
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: #373636;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-header {
    padding: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-avatar,
.avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.reviewer-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.reviewer-badge {
    display: inline-block;
    background-color: var(--success-color);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-bottom: 5px;
}

.reviewer-type {
    font-size: 14px;
    color: var(--dark-gray);
}

.review-content {
    padding: 20px;
}

.review-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #dad3d3;
}

.review-date {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.review-text {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
	background-color:#515256;
}

.review-pros h5,
.review-cons h5 {
    font-size: 16px;
    margin-bottom: 10px;
}

.review-pros ul,
.review-cons ul {
    padding-left: 20px;
}

.review-pros li,
.review-cons li {
    font-size: 14px;
    margin-bottom: 5px;
}

.review-footer {
    padding: 15px 20px;
    background-color: var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-likes {
    font-weight: 600;
    color: var(--primary-color);
}

.review-report {
    font-size: 14px;
    color: var(--dark-gray);
}

/* ===== SUBMIT REVIEW CTA ===== */
.submit-review-cta {
    background-color: var(--light-gray);
    padding: 60px 0;
    text-align: center;
}

.submit-review-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.submit-review-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.submit-review-cta p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 25px;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background-color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-gray);
}

/* ===== NETWORK OWNER CTA ===== */
.network-owner-cta {
    background: linear-gradient(135deg, #0f0f0f, #040404);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.network-owner-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.network-owner-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.network-owner-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.network-owner-cta .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.network-owner-cta .btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: #f5f4f4;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: #1e1b1b;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-quote::before {
    content: """;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
	color:#1e1b1b;
}

.author-info p {
    font-size: 0.9rem;
    color: #2f2f33;
    margin: 0;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, #000000, #111111);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.final-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.final-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* ===== AD BANNERS ===== */
.ad-banner {
    background-color: #2d2d2d;
    padding: 20px;
    text-align: center;
    margin: 30px auto;
    border-radius: var(--border-radius);
    color: #888;
    font-weight: 600;
    border: 1px dashed #555;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    width: 100%;
}

.ad-banner span {
    font-size: 0.8rem;
    font-weight: normal;
    margin-top: 5px;
}

/* ===== FOOTER ===== */
footer {
    background-color: #111111;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    color: var(--white);
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-column p {
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #FFFFFF;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #FFFFFF;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-newsletter {
    display: flex;
    margin-top: 15px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 14px;
}

.footer-newsletter button {
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgb(0 0 0 / 50%);
    font-size: 14px;
}

/* ===== NETWORKS PAGE LAYOUT ===== */
.networks-page {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 30px;
    margin-top: 40px;
}

.networks-sidebar {
    width: 280px;
}

.networks-main {
    width: 100%;
}

.networks-ads {
    width: 280px;
}

/* ===== NETWORKS HEADER ===== */
.networks-header {
    background-color: #20405b;
    padding: 40px 0;
    text-align: center;
    border-bottom: #111111;
}

.networks-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.networks-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== FILTER SIDEBAR ===== */
.filter-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--medium-gray);
}

.filter-header {
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--medium-gray);
}

.filter-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.filter-body {
    padding: 20px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-item {
    margin-bottom: 10px;
}

.filter-item:last-child {
    margin-bottom: 0;
}

.filter-item a {
    display: block;
    padding: 8px 10px;
    color: var(--text-color);
    border-radius: 4px;
    transition: var(--transition);
}

.filter-item a:hover,
.filter-item a.active {
    background-color: rgba(74, 128, 240, 0.2);
    color: var(--primary-color);
}

.filter-item a span {
    float: right;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.range-slider {
    margin-top: 15px;
}

.range-slider-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.range-slider-value {
    font-weight: 600;
}

.range-slider input {
    width: 100%;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 5px;
}

.pagination a {
display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fbfbfb;
    color: #090909;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--medium-gray);
}

.pagination a:hover,
.pagination a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    .networks-grid,
    .reviews-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .section-header.with-action {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .section-header.with-action .section-title,
    .section-header.with-action .section-subtitle,
    .section-header.with-action .section-description {
        text-align: center;
    }
    
    .view-all {
        margin-top: 15px;
    }
    
    .networks-page {
        flex-direction: column;
    }
    
    .networks-sidebar {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .filter-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .filter-card {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .hero-section .container {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-counter {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .networks-grid,
    .reviews-grid,
    .categories-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .review-pros-cons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .filter-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-counter {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-newsletter {
        flex-direction: column;
    }
    
    .footer-newsletter input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .footer-newsletter button {
        border-radius: var(--border-radius);
    }
}