:root {
  --primary-blue: #00d4ff;
  --primary-green: #00ff88;
  --dark-bg: #0a0e27;
  --darker-bg: #050811;
  --text-light: #e0e6ff;
  --text-muted: #8892b0;
  --neon-glow: 0 0 10px var(--primary-blue), 0 0 20px var(--primary-blue), 0 0 30px var(--primary-blue);
  --neon-glow-green: 0 0 10px var(--primary-green), 0 0 20px var(--primary-green);
}

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

body {
  font-family: 'Exo 2', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
  z-index: 10000;
  box-shadow: var(--neon-glow);
  transition: width 0.1s ease;
}

.main-nav {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-blue);
  box-shadow: var(--neon-glow);
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  box-shadow: var(--neon-glow);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.clock-widget {
  font-family: 'Orbitron', sans-serif;
  color: var(--primary-green);
  font-size: 0.9rem;
  text-shadow: var(--neon-glow-green);
}

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1200px;
  padding: 2rem;
}

.glitch-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary-blue);
  text-shadow: var(--neon-glow);
  margin-bottom: 1rem;
  animation: glitch 3s infinite;
}

@keyframes glitch {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-2px, 2px); }
  94% { transform: translate(2px, -2px); }
  96% { transform: translate(-2px, -2px); }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: var(--primary-green);
  text-shadow: var(--neon-glow-green);
  font-weight: 900;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.holographic-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
  100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features-zone {
  padding: 6rem 0;
  background: var(--darker-bg);
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--primary-blue);
  text-shadow: var(--neon-glow);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(26, 31, 58, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: var(--neon-glow);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
  filter: drop-shadow(var(--neon-glow-green));
}

.feature-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

.showcase-section {
  padding: 6rem 0;
  background: var(--dark-bg);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
  text-shadow: var(--neon-glow-green);
}

.showcase-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tech-list {
  list-style: none;
  margin-bottom: 2rem;
}

.tech-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.tech-list li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-size: 1.2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--neon-glow);
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--primary-blue), 0 0 40px var(--primary-blue);
}

.showcase-image {
  position: relative;
}

.showcase-image img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--primary-blue);
  box-shadow: var(--neon-glow);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 136, 0.2));
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.showcase-image:hover .image-overlay {
  opacity: 1;
}

.latest-posts {
  padding: 6rem 0;
  background: var(--darker-bg);
}

.posts-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.post-card {
  background: rgba(26, 31, 58, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.post-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: var(--neon-glow);
}

.post-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.post-content {
  padding: 2rem;
}

.post-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.post-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.read-more {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--primary-blue);
  text-shadow: var(--neon-glow);
}

.main-footer {
  background: var(--darker-bg);
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  font-family: 'Orbitron', sans-serif;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.footer-column p,
.footer-column ul {
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-blue);
  text-shadow: var(--neon-glow);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--neon-glow);
  transform: scale(1.1);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.98);
  border-top: 2px solid var(--primary-blue);
  padding: 2rem;
  z-index: 9999;
  box-shadow: 0 -5px 30px rgba(0, 212, 255, 0.3);
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.cookie-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: var(--dark-bg);
  box-shadow: var(--neon-glow);
}

.cookie-btn.reject {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--primary-blue);
}

.cookie-btn:hover {
  transform: scale(1.05);
}

.cookie-link {
  color: var(--primary-green);
  text-decoration: none;
  padding: 0.75rem 1rem;
  display: inline-block;
}

.page-header {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.page-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: var(--primary-blue);
  text-shadow: var(--neon-glow);
  margin-bottom: 1rem;
  text-align: center;
}

.page-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.2rem;
}

.blog-main {
  padding: 4rem 0;
  background: var(--dark-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 3rem;
}

.blog-post-card {
  background: rgba(26, 31, 58, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: var(--neon-glow);
}

.post-img-wrapper {
  position: relative;
  overflow: hidden;
}

.post-img-wrapper img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post-card:hover .post-img-wrapper img {
  transform: scale(1.1);
}

.post-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-blue);
  color: var(--dark-bg);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--neon-glow);
}

.post-details {
  padding: 2rem;
}

.post-details h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.post-details h2 a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-details h2 a:hover {
  color: var(--primary-green);
  text-shadow: var(--neon-glow-green);
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.post-details p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.post-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.post-link:hover {
  color: var(--primary-blue);
  text-shadow: var(--neon-glow);
}

.about-intro {
  padding: 4rem 0;
  background: var(--dark-bg);
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--primary-blue);
  box-shadow: var(--neon-glow);
}

.team-section {
  padding: 4rem 0;
  background: var(--darker-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.team-card {
  background: rgba(26, 31, 58, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: var(--neon-glow);
}

.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--primary-blue);
  box-shadow: var(--neon-glow);
  margin-bottom: 1.5rem;
  object-fit: cover;
}

.team-card h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-green);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-bio {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.values-section {
  padding: 4rem 0;
  background: var(--dark-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-item {
  background: rgba(26, 31, 58, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary-blue);
  box-shadow: var(--neon-glow);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: var(--primary-green);
  filter: drop-shadow(var(--neon-glow-green));
}

.value-item h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.value-item p {
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-main {
  padding: 4rem 0;
  background: var(--dark-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-section h2,
.contact-form-section h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--primary-blue);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.info-block {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(26, 31, 58, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info-block:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--neon-glow);
}

.info-icon {
  width: 40px;
  height: 40px;
  color: var(--primary-green);
  flex-shrink: 0;
}

.info-content h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.info-content p,
.info-content a {
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.6;
}

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

.working-hours {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(26, 31, 58, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
}

.working-hours h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.working-hours ul {
  list-style: none;
}

.working-hours li {
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-form {
  background: rgba(26, 31, 58, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(10, 14, 39, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 5px;
  color: var(--text-light);
  font-family: 'Exo 2', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: var(--neon-glow);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: var(--dark-bg);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--neon-glow);
}

.submit-btn:hover {
  transform: scale(1.02);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--dark-bg);
  border: 2px solid var(--primary-blue);
  border-radius: 10px;
  padding: 3rem;
  text-align: center;
  max-width: 500px;
  box-shadow: var(--neon-glow);
}

.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: var(--primary-green);
  filter: drop-shadow(var(--neon-glow-green));
}

.modal-content h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.modal-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-btn {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: var(--dark-bg);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.post-article {
  background: var(--dark-bg);
}

.post-header {
  padding: 4rem 0 2rem;
  background: var(--darker-bg);
}

.post-category-badge {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--dark-bg);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: var(--neon-glow);
}

.post-header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.post-meta-info {
  display: flex;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.post-featured-image {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

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

.post-content-wrapper {
  padding: 4rem 0;
}

.post-body {
  max-width: 900px;
  margin: 0 auto;
}

.lead-paragraph {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.post-body h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--primary-blue);
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
}

.post-body p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-image {
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--primary-blue);
  box-shadow: var(--neon-glow);
  margin: 2rem 0;
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 1rem;
  }
  
  .showcase-grid,
  .about-content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .glitch-text {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .nav-links {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .features-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}