/* abel-regular - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Abel';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/abel-v18-latin-regular.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Abel', sans-serif;
	line-height: 1.6;
	color: #333;
	background: #f8f9fa;
	font-size: 16px;
	letter-spacing: 0.5px;
}

  /* Navigation Bar */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 2px 25px rgba(0, 0, 0, 0.15);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-logo {
      font-size: 1.8rem;
      font-weight: 400;
      color: #1f2937;
      text-decoration: none;
      letter-spacing: 2px;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 1001;
    }

    .nav-logo svg {
      fill: #000000;
      width: 2.2em;
      height: 2.2em;
    }

    .nav-menu {
      display: flex;
      gap: 30px;
      list-style: none;
      align-items: center;
    }

    .nav-menu a {
      color: #4b5563;
      text-decoration: none;
      font-size: 1.2rem;
      letter-spacing: 1px;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #6366f1;
      transition: width 0.3s ease;
    }

    .nav-menu a:hover {
      color: #6366f1;
    }

    .nav-menu a:hover::after {
      width: 100%;
    }

    .nav-menu a.active {
      color: #6366f1;
    }

    /* Mobile Menu Toggle Button */
    .mobile-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
      z-index: 1001;
    }

    .mobile-toggle span {
      width: 28px;
      height: 3px;
      background: #1f2937;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .mobile-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translateY(11px);
    }

    .mobile-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translateY(-11px);
    }

	/* Mobile Responsive */
    @media (max-width: 768px) {
      .mobile-toggle {
        display: flex;
      }

      .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
      }

      .nav-menu.active {
        right: 0;
      }

      .nav-menu li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #f3f4f6;
      }

      .nav-menu li:last-child {
        border-bottom: none;
      }

      .nav-menu a {
        display: block;
        font-size: 1.3rem;
        width: 100%;
      }

      .nav-menu a::after {
        bottom: -15px;
      }

      .nav-logo {
        font-size: 1.4rem;
      }

      .nav-logo svg {
        width: 1.5em;
        height: 1.5em;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .hero p {
        font-size: 1rem;
      }

      /* Overlay when menu is open */
      body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
      }
    }

    /* Tablet Responsive */
    @media (max-width: 1024px) and (min-width: 769px) {
      .nav-menu {
        gap: 20px;
      }

      .nav-menu a {
        font-size: 0.95rem;
      }
    }

    /* Small mobile devices */
    @media (max-width: 480px) {
      .nav-container {
        padding: 12px 15px;
      }

      .nav-logo {
        font-size: 1.2rem;
      }

      .nav-menu {
        width: 250px;
        padding: 70px 25px 25px;
      }

      .nav-menu a {
        font-size: 1.1rem;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

/* Hero Section */
.hero {
	position: relative;
	height: 60vh;
	margin-top: 60px;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
		url('/assets/andrei-tanase-1271619.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
}

.hero h1 {
	font-size: 4rem;
	font-weight: 400;
	margin-bottom: 1rem;
	letter-spacing: 2px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	text-transform: uppercase;
	animation: fadeInDown 1s ease;
}

.hero p {
	font-size: 1.5rem;
	max-width: 800px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	letter-spacing: 1px;
	animation: fadeInUp 1s ease 0.3s both;
}

.hero-cta {
	margin-top: 30px;
	display: flex;
	gap: 15px;
	animation: fadeInUp 1s ease 0.6s both;
}

.cta-button {
	padding: 12px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-family: 'Abel', sans-serif;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.cta-primary {
	background: #6366f1;
	color: white;
	border: 2px solid #6366f1;
}

.cta-primary:hover {
	background: transparent;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.cta-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.cta-secondary:hover {
	background: white;
	color: #6366f1;
	transform: translateY(-3px);
}

/* Main Section */
.main-section {
	padding: 80px 0;
	position: relative;
	background:
		linear-gradient(rgba(248, 249, 250, 0.85), rgba(248, 249, 250, 0.85)),
		url('https://picsum.photos/id/17/1600/800');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	min-height: 100vh;
}

/* Subtle texture overlay */
.main-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(ellipse at top left, rgba(99, 102, 241, 0.02) 0%, transparent 70%),
		radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.02) 0%, transparent 70%),
		repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255, 255, 255, 0.01) 50px, rgba(255, 255, 255, 0.01) 100px);
	pointer-events: none;
}

/* Content container for cards */
.main-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	z-index: 1;
}

.section-header h2 {
	font-size: 2.5rem;
	color: #1f2937;
	margin-bottom: 10px;
	letter-spacing: 2px;
	font-weight: 400;
}

.section-header p {
	font-size: 1.2rem;
	color: #6b7280;
	letter-spacing: 1px;
}

.post-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
	gap: 40px;
	position: relative;
	z-index: 1;
}

.post-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	position: relative;
	transform: translateY(0);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.post-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #6366f1, #8b5cf6);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.post-card:hover::before {
	transform: scaleX(1);
}

.post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
}

/* Quick Actions Overlay */
.quick-actions {
	position: absolute;
	top: 20px;
	left: 20px;
	display: flex;
	gap: 10px;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 10;
}

.post-card:hover .quick-actions {
	opacity: 1;
	transform: translateY(0);
}

.action-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4b5563;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
	background: #6366f1;
	color: white;
	transform: scale(1.1);
}

/* Category Badge */
.category-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background: rgba(99, 102, 241, 0.9);
	backdrop-filter: blur(10px);
	color: white;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 400;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.card-content {
	display: flex;
	flex: 1;
	position: relative;
}

.card-image {
	position: relative;
	flex: 1.2;
	min-height: 280px;
	overflow: hidden;
}

.card-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, transparent 0%, rgba(99, 102, 241, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.post-card:hover .card-image::after {
	opacity: 1;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.post-card:hover .card-image img {
	transform: scale(1.05);
}

.date-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	padding: 8px 16px;
	border-radius: 30px;
	font-weight: 400;
	font-size: 0.9rem;
	color: #4b5563;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
}

.post-card:hover .date-badge {
	background: #6366f1;
	color: white;
	transform: translateY(-3px);
}

.card-text {
	flex: 1;
	padding: 30px;
	display: flex;
	flex-direction: column;
	position: relative;
}

/* Author Info */
.author-info {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
}

.author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #f3f4f6;
}

.author-details {
	display: flex;
	flex-direction: column;
}

.author-name {
	font-weight: 400;
	color: #1f2937;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
}

.read-time {
	font-size: 0.85rem;
	color: #6b7280;
	display: flex;
	align-items: center;
	gap: 5px;
}

.card-text h3 {
	font-size: 1.8rem;
	margin-bottom: 16px;
	color: #1f2937;
	transition: color 0.3s ease;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 1px;
}

.post-card:hover .card-text h3 {
	color: #6366f1;
}

.card-text p {
	margin-bottom: 24px;
	color: #6b7280;
	flex-grow: 1;
	line-height: 1.7;
	font-size: 1.05rem;
	letter-spacing: 0.5px;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.tag {
	background: #f3f4f6;
	color: #4b5563;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 400;
	transition: all 0.2s ease;
	letter-spacing: 0.5px;
}

.tag:hover {
	background: #6366f1;
	color: white;
	transform: translateY(-2px);
}

/* Integrated Statistics in Text Area */
.card-stats {
	display: flex;
	gap: 20px;
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px solid #f3f4f6;
}

.stat-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #6b7280;
	font-size: 0.95rem;
	transition: all 0.2s ease;
	letter-spacing: 0.5px;
}

.stat-item:hover {
	color: #6366f1;
	transform: translateY(-2px);
}

.stat-item i {
	font-size: 1.1rem;
	transition: all 0.2s ease;
}

.stat-item:hover i {
	transform: scale(1.2);
}

.stat-item .count {
	font-weight: 400;
	color: #374151;
}

.stat-item:hover .count {
	color: #6366f1;
}

/* Newsletter Section */
.newsletter {
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	padding: 60px 20px;
	margin: 80px 0;
	border-radius: 20px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.newsletter::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.newsletter::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.newsletter-content {
	position: relative;
	z-index: 1;
	max-width: 600px;
	margin: 0 auto;
}

.newsletter h3 {
	font-size: 2rem;
	color: white;
	margin-bottom: 15px;
	font-weight: 400;
	letter-spacing: 2px;
}

.newsletter p {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 30px;
	letter-spacing: 0.5px;
}

.newsletter-form {
	display: flex;
	gap: 10px;
	max-width: 500px;
	margin: 0 auto;
}

.newsletter-form input {
	flex: 1;
	padding: 15px 20px;
	border: none;
	border-radius: 30px;
	font-family: 'Abel', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.5px;
	outline: none;
}

.newsletter-form button {
	padding: 15px 30px;
	background: white;
	color: #6366f1;
	border: none;
	border-radius: 30px;
	font-family: 'Abel', sans-serif;
	font-size: 1rem;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
}

.newsletter-form button:hover {
	background: #1f2937;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Scroll to Top Button */
.scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: #6366f1;
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
}

.scroll-top.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-top:hover {
	background: #4f46e5;
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

    /* Footer */
    footer {
      background: linear-gradient(135deg, #2c3e50, #34495e);
      color: white;
      padding: 30px 20px;
      text-align: center;
      font-family: 'Abel', sans-serif;
      letter-spacing: 1px;
    }

    footer p {
      margin: 0;
      color: rgba(255, 255, 255, 0.9);
    }

/* Animations */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}

	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translateY(30px);
		}

		@keyframes slideIn {
			from {
				opacity: 0;
				transform: translateY(30px);
			}

			.post-card {
				animation: slideIn 0.6s ease forwards;
			}

			.post-card:nth-child(1) {
				animation-delay: 0.1s;
			}

			.post-card:nth-child(2) {
				animation-delay: 0.2s;
			}

			.post-card:nth-child(3) {
				animation-delay: 0.3s;
			}

			.post-card:nth-child(4) {
				animation-delay: 0.4s;
			}

			.post-card:nth-child(5) {
				animation-delay: 0.5s;
			}

			.post-card:nth-child(6) {
				animation-delay: 0.6s;
			}

			/* Responsive Design */
        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 80px 30px 30px;
                gap: 0;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                width: 100%;
                padding: 15px 0;
                border-bottom: 1px solid #f3f4f6;
            }

            .nav-menu li:last-child {
                border-bottom: none;
            }

            .nav-menu a {
                display: block;
                font-size: 1.1rem;
                width: 100%;
            }

            .nav-menu a::after {
                bottom: -15px;
            }

            .nav-logo {
                font-size: 1.2rem;
            }

            .nav-logo svg {
                width: 1.5em;
                height: 1.5em;
            }

            .hero h1 {
                font-size: 2.5rem;
                padding: 0 20px;
            }

            /* Overlay when menu is open */
            body.menu-open::before {
                content: '';
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 999;
                animation: fadeIn 0.3s ease;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

				.hero {
					height: 70vh;
				}

				.hero h1 {
					font-size: 2.5rem;
				}

				.hero p {
					font-size: 1.2rem;
					padding: 0 20px;
				}

				.hero-cta {
					flex-direction: column;
					width: 100%;
					padding: 0 20px;
				}

				.cta-button {
					width: 100%;
					justify-content: center;
				}

				.post-cards {
					grid-template-columns: 1fr;
				}

				.card-content {
					flex-direction: column;
				}

				.card-image {
					min-height: 200px;
				}

				.post-card:hover {
					transform: translateY(-3px);
				}

				.card-stats {
					flex-wrap: wrap;
					gap: 15px;
				}

				.newsletter h3 {
					font-size: 1.5rem;
				}

				.newsletter-form {
					flex-direction: column;
				}

				.footer-content {
					grid-template-columns: 1fr;
					text-align: center;
				}

				.social-links {
					justify-content: center;
				}

				.main-section {
					background-attachment: scroll;
				}

				.main-content {
					padding: 0 15px;
				}

				body {
					font-family: 'Abel', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
					line-height: 1.6;
					color: #333;
					background: #f8f9fa;
					font-size: 16px;
					letter-spacing: 0.5px;
				}

				.nav-menu a.active {
					color: #6366f1;
				}

				/* Hero Section */
				.hero {
					position: relative;
					height: 60vh;
					margin-top: 60px;
					background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
						url('https://picsum.photos/seed/tags-hero/1920/1080.jpg');
					background-size: cover;
					background-position: center;
					background-attachment: fixed;
					display: flex;
					flex-direction: column;
					justify-content: center;
					align-items: center;
					text-align: center;
					color: white;
				}

				.hero h1 {
					font-size: 3.5rem;
					font-weight: 400;
					margin-bottom: 1rem;
					letter-spacing: 2px;
					text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
					text-transform: uppercase;
					animation: fadeInDown 1s ease;
				}

				.hero p {
					font-size: 1.3rem;
					max-width: 700px;
					text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
					letter-spacing: 1px;
					animation: fadeInUp 1s ease 0.3s both;
				}

				/* Main Section */
				.main-section {
					padding: 80px 20px;
					position: relative;
					background:
						linear-gradient(rgba(248, 249, 250, 0.85), rgba(248, 249, 250, 0.85)),
						url('https://picsum.photos/id/17/1600/800');
					background-size: cover;
					background-position: center;
					background-attachment: fixed;
					min-height: 100vh;
				}

				.main-section::before {
					content: '';
					position: absolute;
					top: 0;
					left: 0;
					right: 0;
					bottom: 0;
					background:
						radial-gradient(ellipse at top left, rgba(99, 102, 241, 0.02) 0%, transparent 70%),
						radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.02) 0%, transparent 70%);
					pointer-events: none;
				}

				.main-content {
					max-width: 1200px;
					margin: 0 auto;
					position: relative;
					z-index: 1;
				}

				/* Filter Section */
				.filter-section {
					background: white;
					padding: 30px;
					border-radius: 20px;
					box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
					margin-bottom: 50px;
					display: flex;
					gap: 20px;
					align-items: center;
					flex-wrap: wrap;
				}

				.filter-search {
					flex: 1;
					min-width: 250px;
					position: relative;
				}

				.filter-search input {
					width: 100%;
					padding: 12px 45px 12px 20px;
					border: 2px solid #f3f4f6;
					border-radius: 30px;
					font-family: 'Abel', sans-serif;
					font-size: 1rem;
					letter-spacing: 0.5px;
					outline: none;
					transition: all 0.3s ease;
				}

				.filter-search input:focus {
					border-color: #6366f1;
					box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
				}

				.filter-search i {
					position: absolute;
					right: 20px;
					top: 50%;
					transform: translateY(-50%);
					color: #6b7280;
				}

				.filter-buttons {
					display: flex;
					gap: 10px;
					flex-wrap: wrap;
				}

				.filter-btn {
					padding: 10px 20px;
					border: 2px solid #f3f4f6;
					background: white;
					border-radius: 25px;
					font-family: 'Abel', sans-serif;
					font-size: 0.95rem;
					letter-spacing: 0.5px;
					cursor: pointer;
					transition: all 0.3s ease;
					display: flex;
					align-items: center;
					gap: 8px;
				}

				.filter-btn:hover {
					border-color: #6366f1;
					color: #6366f1;
					transform: translateY(-2px);
				}

				.filter-btn.active {
					background: #6366f1;
					color: white;
					border-color: #6366f1;
				}

				/* Stats Bar */
				.stats-bar {
					display: flex;
					justify-content: space-between;
					align-items: center;
					margin-bottom: 40px;
					padding: 20px;
					background: white;
					border-radius: 15px;
					box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
				}

				.stats-info {
					display: flex;
					gap: 30px;
				}

				.stat-item {
					display: flex;
					align-items: center;
					gap: 10px;
					color: #6b7280;
				}

				.stat-item i {
					color: #6366f1;
					font-size: 1.2rem;
				}

				.stat-number {
					font-size: 1.5rem;
					font-weight: 400;
					color: #1f2937;
				}

				.sort-dropdown {
					padding: 10px 20px;
					border: 2px solid #f3f4f6;
					border-radius: 25px;
					font-family: 'Abel', sans-serif;
					letter-spacing: 0.5px;
					cursor: pointer;
					outline: none;
					background: white;
					transition: all 0.3s ease;
				}

				.sort-dropdown:hover {
					border-color: #6366f1;
				}

				/* Tags Grid */
				.tags-grid {
					display: grid;
					grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
					gap: 25px;
					margin-bottom: 60px;
				}

				.tag-card {
					background: white;
					padding: 30px;
					border-radius: 20px;
					box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
					transition: all 0.3s ease;
					cursor: pointer;
					position: relative;
					overflow: hidden;
					border: 1px solid rgba(0, 0, 0, 0.05);
				}

				.tag-card::before {
					content: '';
					position: absolute;
					top: 0;
					left: 0;
					right: 0;
					height: 5px;
					background: linear-gradient(90deg, #6366f1, #8b5cf6);
					transform: scaleX(0);
					transform-origin: left;
					transition: transform 0.3s ease;
				}

				.tag-card:hover::before {
					transform: scaleX(1);
				}

				.tag-card:hover {
					transform: translateY(-5px);
					box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
				}

				.tag-icon {
					width: 60px;
					height: 60px;
					border-radius: 50%;
					background: linear-gradient(135deg, #6366f1, #8b5cf6);
					display: flex;
					align-items: center;
					justify-content: center;
					color: white;
					font-size: 1.5rem;
					margin-bottom: 20px;
					transition: all 0.3s ease;
				}

				.tag-card:hover .tag-icon {
					transform: rotate(15deg) scale(1.1);
				}

				.tag-name {
					font-size: 1.5rem;
					color: #1f2937;
					margin-bottom: 10px;
					letter-spacing: 1px;
					font-weight: 400;
				}

				.tag-count {
					color: #6b7280;
					font-size: 1rem;
					margin-bottom: 15px;
					letter-spacing: 0.5px;
				}

				.tag-description {
					color: #9ca3af;
					font-size: 0.95rem;
					line-height: 1.6;
					letter-spacing: 0.5px;
				}

				/* Popular Tags Section */
				.popular-tags-section {
					background: white;
					padding: 40px;
					border-radius: 20px;
					box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
					margin-bottom: 60px;
				}

				.popular-tags-section h2 {
					font-size: 2rem;
					color: #1f2937;
					margin-bottom: 30px;
					letter-spacing: 2px;
					font-weight: 400;
				}

				.popular-tags {
					display: flex;
					flex-wrap: wrap;
					gap: 15px;
				}

				.popular-tag {
					background: #f3f4f6;
					color: #4b5563;
					padding: 12px 24px;
					border-radius: 30px;
					font-size: 1.1rem;
					font-weight: 400;
					transition: all 0.3s ease;
					cursor: pointer;
					letter-spacing: 0.5px;
					display: flex;
					align-items: center;
					gap: 10px;
				}

				.popular-tag:hover {
					background: #6366f1;
					color: white;
					transform: translateY(-3px);
					box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
				}

				.popular-tag .count {
					background: rgba(0, 0, 0, 0.1);
					padding: 4px 10px;
					border-radius: 15px;
					font-size: 0.9rem;
				}

				.hero {
					height: 50vh;
				}

				.hero p {
					font-size: 1.1rem;
					padding: 0 20px;
				}

				.filter-section {
					flex-direction: column;
				}

				.filter-search {
					width: 100%;
				}

				.stats-bar {
					flex-direction: column;
					gap: 20px;
				}

				.stats-info {
					flex-direction: column;
					gap: 15px;
					width: 100%;
				}

				.tags-grid {
					grid-template-columns: 1fr;
				}

				.popular-tags-section {
					padding: 25px;
				}

				        /* Tablet Responsive */
        @media (max-width: 1024px) and (min-width: 769px) {
            .nav-menu {
                gap: 20px;
            }

            .nav-menu a {
                font-size: 0.95rem;
            }
        }

        /* Small mobile devices */
        @media (max-width: 480px) {
            .nav-container {
                padding: 12px 15px;
            }

            .nav-logo {
                font-size: 1rem;
            }

            .nav-menu {
                width: 250px;
                padding: 70px 25px 25px;
            }

            .nav-menu a {
                font-size: 1rem;
            }
        }

