:root {
  --primary-color: #00ffff;
  --secondary-color: #ff00ff;
  --accent-color: #00ff88;
  --dark-bg: #0a0a1a;
  --darker-bg: #050510;
  --card-bg: #1a1a2e;
  --text-primary: #ffffff;
  --text-secondary: #b0b0c0;
  --neon-glow: 0 0 20px rgba(0, 255, 255, 0.5);
  --neon-glow-strong: 0 0 30px rgba(0, 255, 255, 0.8);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container-fluid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-navigation {
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary-color);
  box-shadow: var(--neon-glow);
}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.brand-text {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
  background: rgba(0, 255, 255, 0.1);
  box-shadow: var(--neon-glow);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger-line {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
  box-shadow: var(--neon-glow);
}

.hero-banner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: var(--neon-glow-strong);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
  to { text-shadow: 0 0 40px rgba(0, 255, 255, 1); }
}

.hero-subtitle {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: var(--neon-glow-strong);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.8);
}

.neon-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.neon-circle, .neon-square, .neon-triangle {
  position: absolute;
  border: 2px solid var(--primary-color);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.neon-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: 10%;
  left: 10%;
  box-shadow: var(--neon-glow);
}

.neon-square {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  box-shadow: var(--neon-glow);
  animation-delay: 2s;
}

.neon-triangle {
  width: 0;
  height: 0;
  border-left: 75px solid transparent;
  border-right: 75px solid transparent;
  border-bottom: 130px solid var(--accent-color);
  bottom: 20%;
  left: 70%;
  opacity: 0.2;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.main-content {
  padding: 60px 0;
}

.intro-section, .features-grid, .latest-posts, .facts-section {
  margin-bottom: 80px;
}

.section-heading {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
}

.section-text {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-secondary);
  line-height: 1.8;
}

.features-grid .container-fluid, .posts-grid, .blog-grid, .team-grid, .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card, .post-preview, .blog-card, .team-member, .value-item {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-card:hover, .post-preview:hover, .blog-card:hover, .team-member:hover, .value-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--neon-glow-strong);
}

.feature-icon, .value-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.feature-title, .post-title, .blog-card-title, .team-name, .value-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-description, .post-excerpt, .blog-excerpt, .team-bio, .value-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.post-image-wrapper, .blog-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.post-image, .blog-image, .team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-preview:hover .post-image, .blog-card:hover .blog-image {
  transform: scale(1.1);
}

.read-more, .blog-read-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
  transition: all 0.3s ease;
}

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

.facts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.fact-item {
  text-align: center;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.fact-item:hover {
  transform: scale(1.05);
  border-color: var(--primary-color);
  box-shadow: var(--neon-glow);
}

.fact-number {
  font-size: 42px;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 10px;
  text-shadow: var(--neon-glow);
}

.fact-label {
  color: var(--text-secondary);
  font-size: 16px;
}

.page-header {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 2px solid var(--primary-color);
}

.page-title {
  font-size: 48px;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
}

.blog-meta, .blog-meta-info {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.blog-date, .blog-category, .post-date, .post-category {
  padding: 5px 15px;
  background: rgba(0, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 14px;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.about-story {
  max-width: 900px;
  margin: 0 auto 60px;
}

.about-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.team-photo {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.team-position {
  color: var(--accent-color);
  font-size: 16px;
  margin-bottom: 15px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-heading {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  font-size: 32px;
  color: var(--primary-color);
}

.contact-label {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.contact-value {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-value a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.contact-registration {
  margin-top: 30px;
  padding: 20px;
  background: rgba(0, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.registration-text {
  color: var(--text-secondary);
}

.contact-form {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 500;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 15px;
  background: var(--darker-bg);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 16px;
  transition: all 0.3s ease;
}

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

.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--dark-bg);
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--neon-glow);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--neon-glow-strong);
}

.post-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.post-header {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  border-radius: 15px;
  margin-bottom: 40px;
}

.post-main-title {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: var(--neon-glow);
}

.post-lead {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.post-featured-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 40px;
}

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

.post-body {
  color: var(--text-secondary);
}

.content-section {
  margin-bottom: 50px;
}

.content-heading {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: var(--neon-glow);
}

.content-paragraph {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.related-posts {
  padding: 60px 0;
  background: var(--darker-bg);
}

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

.related-card {
  background: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.related-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--neon-glow-strong);
}

.related-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-title {
  padding: 20px;
  font-size: 20px;
}

.related-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-title a:hover {
  color: var(--accent-color);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.page-number {
  padding: 10px 20px;
  background: var(--card-bg);
  color: var(--text-primary);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-number.active, .page-number:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  box-shadow: var(--neon-glow);
}

.site-footer {
  background: var(--darker-bg);
  padding: 60px 20px 20px;
  border-top: 2px solid var(--primary-color);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-heading {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 20px;
  text-shadow: var(--neon-glow);
}

.footer-description, .footer-contact, .footer-reg {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  color: var(--text-secondary);
}

.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  background: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid var(--primary-color);
  box-shadow: var(--neon-glow-strong);
  z-index: 10000;
  display: none;
}

.cookie-consent.active {
  display: block;
  animation: slideUp 0.5s ease;
}

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

.cookie-title {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 15px;
}

.cookie-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-link {
  color: var(--accent-color);
  text-decoration: none;
}

.cookie-link:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--dark-bg);
}

.cookie-customize {
  background: var(--darker-bg);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.cookie-decline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--text-secondary);
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--neon-glow);
}

.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.success-modal.active {
  display: flex;
}

.modal-content {
  background: var(--card-bg);
  padding: 50px;
  border-radius: 15px;
  border: 2px solid var(--accent-color);
  text-align: center;
  max-width: 500px;
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.5);
}

.modal-icon {
  font-size: 72px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.modal-title {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.modal-text {
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.modal-close {
  padding: 12px 30px;
  background: var(--accent-color);
  color: var(--dark-bg);
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    display: none;
    border-top: 1px solid var(--primary-color);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-heading {
    font-size: 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .post-main-title {
    font-size: 32px;
  }

  .post-lead {
    font-size: 18px;
  }

  .content-heading {
    font-size: 24px;
  }

  .content-paragraph {
    font-size: 16px;
  }

  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .features-grid .container-fluid, .posts-grid, .blog-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 32px;
  }
}