/* 
NeutronCapitalHub - Styles
Gaming & Esports Design Theme with Neon Highlights
*/


:root {
  
  --neon-blue: #00f3ff;
  --deep-purple: #2d1b4e;
  --electric-pink: #ff00e4;
  
  
  --tech-black: #0a0a13;
  --dark-blue: #121330;
  --slate-gray: #3c3c54;
  
  
  --deep-space: #050517;
  --midnight: #0e0e23;
  --dark-matter: #16162e;
  
  
  --neon-green: #00ff66;
  --energy-yellow: #ffcc00;
  --bright-cyan: #00ccff;
  
  
  --title-font: 'Merriweather', serif;
  --body-font: 'Open Sans', sans-serif;
  
  
  --smooth-transition: all 0.3s ease;
}


* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: #fff;
  background-color: var(--deep-space);
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

a {
  color: var(--neon-blue);
  transition: var(--smooth-transition);
  text-decoration: none;
}

a:hover, a:focus {
  color: var(--electric-pink);
  text-decoration: none;
}

p {
  margin-bottom: 1.5rem;
}

.button {
  background-color: var(--deep-purple);
  color: white;
  border-radius: 4px;
  padding: 0.85rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: var(--smooth-transition);
  border: 2px solid var(--neon-blue);
  position: relative;
  overflow: hidden;
}

.button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
  transition: 0.5s;
}

.button:hover:before {
  left: 100%;
}

.button:hover, .button:focus {
  background-color: var(--dark-blue);
  border-color: var(--electric-pink);
  color: white;
  box-shadow: 0 0 15px var(--neon-blue), 0 0 30px rgba(0, 243, 255, 0.3);
  transform: translateY(-2px);
}

.button.large {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.button.small {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

.button.secondary {
  background-color: transparent;
  color: var(--neon-blue);
}

.button.secondary:hover {
  color: white;
  background-color: var(--dark-blue);
}

.button.primary {
  background-color: var(--neon-blue);
  color: var(--deep-space);
  border-color: var(--neon-blue);
}

.button.primary:hover {
  background-color: var(--electric-pink);
  border-color: var(--electric-pink);
  color: white;
}

.glow-button {
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 10px var(--neon-blue);
  }
  to {
    box-shadow: 0 0 20px var(--neon-blue), 0 0 30px var(--electric-pink);
  }
}

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

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.section-light {
  background-color: var(--midnight);
  padding: 5rem 0;
  position: relative;
}

.section-light:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--neon-blue), var(--electric-pink));
  opacity: 0.7;
}

.section-dark {
  background-color: var(--deep-space);
  padding: 5rem 0;
  position: relative;
}

.section-dark:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  opacity: 0.5;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  color: white;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--electric-pink), transparent);
}

.section-intro {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}


.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-blue);
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
  border-top: 2px solid var(--neon-blue);
}

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

.cookie-content h3 {
  color: white;
  margin-top: 0;
}

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

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  overflow: auto;
}

.cookie-modal-content {
  position: relative;
  background-color: var(--midnight);
  margin: 10% auto;
  padding: 2rem;
  width: 90%;
  max-width: 600px;
  border-radius: 5px;
  box-shadow: 0 0 20px var(--neon-blue);
  border: 1px solid var(--neon-blue);
}

.cookie-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: var(--neon-blue);
  cursor: pointer;
  transition: var(--smooth-transition);
}

.cookie-close:hover {
  color: var(--electric-pink);
}

.cookie-categories {
  margin: 1.5rem 0;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--slate-gray);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category label {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  margin-right: 0.5rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.category-name {
  color: white;
}

.cookie-category p {
  margin-left: 25px;
  margin-top: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.cookie-settings-link {
  margin-top: 1rem;
}


.site-header {
  background-color: var(--deep-space);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid var(--dark-blue);
}

.logo img {
  max-height: 50px;
  width: auto;
}

.main-nav .menu {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav .menu li {
  margin-left: 1.5rem;
}

.main-nav .menu a {
  color: white;
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: var(--smooth-transition);
}

.main-nav .menu a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--neon-blue), var(--electric-pink));
  transition: var(--smooth-transition);
}

.main-nav .menu a:hover, .main-nav .menu a.active {
  color: var(--neon-blue);
}

.main-nav .menu a:hover:after, .main-nav .menu a.active:after {
  width: 100%;
}

.menu-icon {
  display: inline-block;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: white;
  font-size: 1.5rem;
  transition: var(--smooth-transition);
}

.menu-icon:hover, .menu-icon:focus {
  color: var(--neon-blue);
}


.hero-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 5, 23, 0.8) 0%, rgba(18, 19, 48, 0.6) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
  position: relative;
}

.hero-content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 19, 0.7);
  border-left: 4px solid var(--neon-blue);
  transform: skew(-5deg);
  z-index: -1;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 0 10px var(--neon-blue), 0 0 20px rgba(0, 243, 255, 0.5);
}

.hero-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--neon-blue);
  font-weight: 400;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.energy-stats {
  margin-top: 3rem;
}

.stat-card {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--deep-space) 100%);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
  border: 1px solid var(--slate-gray);
  transition: var(--smooth-transition);
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px var(--neon-blue);
  border-color: var(--neon-blue);
}

.stat-card i {
  font-size: 2.5rem;
  color: var(--neon-blue);
  margin-bottom: 1rem;
}

.stat-card h3 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.stat-card p {
  font-size: 1rem;
  color: var(--neon-blue);
  margin-bottom: 0;
}


.key-areas {
  padding-bottom: 3rem;
}

.area-card {
  background: var(--dark-matter);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--smooth-transition);
  border: 1px solid var(--slate-gray);
  height: 100%;
}

.area-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px var(--neon-blue);
  border-color: var(--neon-blue);
}

.card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--smooth-transition);
}

.area-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--neon-blue);
}

.card-content p {
  font-size: 0.95rem;
  color: #c5c5d2;
  margin-bottom: 1.5rem;
}


.timeline {
  position: relative;
  max-width: 1200px;
  margin: 3rem auto;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--neon-blue), var(--electric-pink));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  width: 100%;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--electric-pink);
  border-radius: 50%;
  z-index: 10;
  border: 3px solid var(--deep-space);
  box-shadow: 0 0 0 4px var(--neon-blue);
}

.timeline-content {
  position: relative;
  width: calc(50% - 50px);
  padding: 2rem;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--deep-space) 100%);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--slate-gray);
  transition: var(--smooth-transition);
  margin-left: calc(50% + 50px);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 0;
  margin-right: calc(50% + 50px);
}

.timeline-content:before {
  content: '';
  position: absolute;
  top: 10px;
  left: -20px;
  border-style: solid;
  border-width: 10px;
  border-color: transparent var(--dark-blue) transparent transparent;
}

.timeline-item:nth-child(even) .timeline-content:before {
  left: auto;
  right: -20px;
  border-color: transparent transparent transparent var(--dark-blue);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px var(--neon-blue);
  border-color: var(--neon-blue);
}

.timeline-content h3 {
  color: var(--neon-blue);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.timeline-content p {
  color: #c5c5d2;
  margin-bottom: 0;
}


.report-card {
  background: var(--dark-matter);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--slate-gray);
  transition: var(--smooth-transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.report-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px var(--neon-blue);
  border-color: var(--neon-blue);
}

.report-date {
  display: inline-block;
  background: var(--electric-pink);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.report-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: white;
}

.report-card p {
  color: #c5c5d2;
  margin-bottom: 1.5rem;
}


.challenge-item {
  display: flex;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--deep-space) 100%);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--slate-gray);
  transition: var(--smooth-transition);
}

.challenge-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px var(--neon-blue);
  border-color: var(--neon-blue);
}

.challenge-icon {
  flex: 0 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--neon-blue);
}

.challenge-content {
  flex: 1;
  padding-left: 1.5rem;
}

.challenge-content h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 1rem;
}

.challenge-content p {
  color: #c5c5d2;
  margin-bottom: 0;
}


.contact-form-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--deep-space) 0%, var(--dark-blue) 100%);
}

form {
  background: var(--midnight);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--slate-gray);
}

label {
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background-color: var(--deep-space);
  border: 1px solid var(--slate-gray);
  border-radius: 4px;
  color: white;
  padding: 0.8rem;
  margin-bottom: 1.5rem;
  width: 100%;
  transition: var(--smooth-transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 10px var(--neon-blue);
  background-color: var(--deep-space);
  outline: none;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.checkbox-container label {
  font-weight: 400;
  font-size: 0.9rem;
  color: #c5c5d2;
}

.checkbox-container a {
  color: var(--neon-blue);
  text-decoration: underline;
}

.checkbox-container a:hover {
  color: var(--electric-pink);
}


.site-footer {
  background-color: var(--deep-space);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--dark-blue);
  margin-top: auto;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  max-height: 50px;
}

.footer-title {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--neon-blue), var(--electric-pink));
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.footer-nav li {
  margin-bottom: 0.8rem;
}

.footer-nav a {
  color: #c5c5d2;
  transition: var(--smooth-transition);
}

.footer-nav a:hover {
  color: var(--neon-blue);
  padding-left: 5px;
}

.contact-info {
  color: #c5c5d2;
  margin-bottom: 2rem;
}

.contact-info i {
  color: var(--neon-blue);
  width: 25px;
  margin-right: 0.5rem;
}

.copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark-blue);
  color: #c5c5d2;
  font-size: 0.9rem;
}


.thank-you-section {
  padding: 8rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  text-align: center;
}

.thank-icon {
  font-size: 5rem;
  color: var(--neon-green);
  margin-bottom: 2rem;
}

.thank-you-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thank-you-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #c5c5d2;
}

.related-resources {
  padding: 5rem 0;
}

.resource-card {
  background: var(--dark-matter);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--slate-gray);
  transition: var(--smooth-transition);
  height: 100%;
  text-align: center;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px var(--neon-blue);
  border-color: var(--neon-blue);
}

.resource-card h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.resource-card p {
  color: #c5c5d2;
  margin-bottom: 1.5rem;
}


.page-header-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--deep-space) 100%);
  position: relative;
  overflow: hidden;
}

.page-header-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,90.7C96,85,192,75,288,96C384,117,480,171,576,170.7C672,171,768,117,864,101.3C960,85,1056,107,1152,122.7C1248,139,1344,149,1392,154.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.page-header-section h1 {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 0 10px var(--neon-blue), 0 0 20px rgba(0, 243, 255, 0.3);
}

.page-header-section p {
  position: relative;
  z-index: 2;
  color: #c5c5d2;
}


.reports-filter {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.filter-container {
  background: var(--dark-matter);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--slate-gray);
  margin-bottom: 2rem;
}

.filter-container h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.reports-grid {
  padding-top: 2rem;
}

.report-item {
  background: var(--dark-matter);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--slate-gray);
  transition: var(--smooth-transition);
  height: 100%;
}

.report-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px var(--neon-blue);
  border-color: var(--neon-blue);
}

.report-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.report-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--smooth-transition);
}

.report-item:hover .report-image img {
  transform: scale(1.05);
}

.report-image .report-date {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
}

.report-content {
  padding: 1.5rem;
}

.report-category {
  display: inline-block;
  background: var(--deep-purple);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.report-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: white;
}

.report-content p {
  color: #c5c5d2;
  margin-bottom: 1.5rem;
}

.report-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--neon-blue);
}

.report-meta span {
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
}

.report-meta span i {
  margin-right: 0.3rem;
}

.pagination {
  margin: 2rem 0;
}

.pagination a, .pagination .current {
  background: var(--dark-matter);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin: 0 0.2rem;
  transition: var(--smooth-transition);
}

.pagination a:hover {
  background: var(--deep-purple);
  color: white;
}

.pagination .current {
  background: var(--neon-blue);
  color: var(--deep-space);
}

.subscription-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--deep-space) 0%, var(--dark-blue) 100%);
}

.subscription-form {
  max-width: 600px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  margin-bottom: 0.5rem;
}

.input-group-field {
  flex: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}

.input-group-button button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-bottom: 0;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: #c5c5d2;
}

.form-note a {
  color: var(--neon-blue);
}

.form-note a:hover {
  color: var(--electric-pink);
}


.archives-filter {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

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

.archives-timeline {
  padding-top: 2rem;
}

.year-section {
  margin-bottom: 4rem;
}

.year-title {
  font-size: 2rem;
  color: white;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--neon-blue);
  display: inline-block;
}

.month-section {
  margin-bottom: 3rem;
}

.month-title {
  font-size: 1.5rem;
  color: var(--neon-blue);
  margin-bottom: 2rem;
}

.archive-item {
  background: var(--dark-matter);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--slate-gray);
  transition: var(--smooth-transition);
}

.archive-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px var(--neon-blue);
  border-color: var(--neon-blue);
}

.item-type {
  background: var(--deep-purple);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.item-type i {
  margin-right: 0.5rem;
}

.item-title {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.5rem;
}

.item-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.item-meta span {
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
}

.item-category {
  color: var(--neon-blue);
}

.item-size {
  color: #c5c5d2;
}

.item-description {
  color: #c5c5d2;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.load-more {
  margin-top: 2rem;
}

.load-more i {
  margin-left: 0.5rem;
}


.featured-article {
  padding: 5rem 0;
}

.featured-article-card {
  background: var(--dark-matter);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--slate-gray);
  transition: var(--smooth-transition);
}

.featured-article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px var(--neon-blue);
  border-color: var(--neon-blue);
}

.featured-article-image {
  height: 100%;
  min-height: 300px;
}

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

.featured-article-content {
  padding: 2rem;
}

.article-category {
  display: inline-block;
  background: var(--deep-purple);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.article-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: #c5c5d2;
}

.article-meta span {
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
}

.article-excerpt {
  color: #c5c5d2;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.article-item {
  background: var(--dark-matter);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--slate-gray);
  transition: var(--smooth-transition);
  height: 100%;
}

.article-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px var(--neon-blue);
  border-color: var(--neon-blue);
}

.article-image {
  height: 200px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--smooth-transition);
}

.article-item:hover .article-image img {
  transform: scale(1.05);
}

.article-content {
  padding: 1.5rem;
}

.analytics-chart {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--deep-space) 0%, var(--dark-blue) 100%);
}

.chart-container {
  background: var(--midnight);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--slate-gray);
}

.chart-description {
  color: #c5c5d2;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}


.contact-info-section {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.contact-card {
  background: var(--dark-matter);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--slate-gray);
  transition: var(--smooth-transition);
  height: 100%;
  margin-bottom: 2rem;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px var(--neon-blue);
  border-color: var(--neon-blue);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--neon-blue);
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 1rem;
}

.contact-card p {
  color: #c5c5d2;
  margin-bottom: 0;
}

.map-section {
  padding-top: 0;
  padding-bottom: 5rem;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--slate-gray);
}

.faq-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.accordion {
  background: transparent;
  border: none;
}

.accordion-item {
  margin-bottom: 1rem;
  background: var(--dark-matter);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--slate-gray);
  transition: var(--smooth-transition);
}

.accordion-item:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px var(--neon-blue);
  border-color: var(--neon-blue);
}

.accordion-title {
  background: var(--dark-matter);
  padding: 1.5rem;
  color: white;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
}

.accordion-title:hover, .accordion-title:focus {
  background: var(--dark-blue);
  color: var(--neon-blue);
}

.accordion-title::before {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  float: right;
  color: var(--neon-blue);
  transition: var(--smooth-transition);
}

.is-active > .accordion-title::before {
  transform: rotate(180deg);
  color: var(--electric-pink);
}

.accordion-content {
  padding: 1rem 1.5rem;
  background: var(--midnight);
  border: none;
  color: #c5c5d2;
}


.policy-content, .terms-content, .cookie-policy-content {
  padding: 5rem 0;
}

.policy-content h2, .terms-content h2, .cookie-policy-content h2 {
  color: white;
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--slate-gray);
}

.policy-content h3, .terms-content h3, .cookie-policy-content h3 {
  color: var(--neon-blue);
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content p, .terms-content p, .cookie-policy-content p,
.policy-content li, .terms-content li, .cookie-policy-content li {
  color: #c5c5d2;
  font-size: 1rem;
  line-height: 1.7;
}

.policy-content ul, .terms-content ul, .cookie-policy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-content li, .terms-content li, .cookie-policy-content li {
  margin-bottom: 0.5rem;
}

.policy-content a, .terms-content a, .cookie-policy-content a {
  color: var(--neon-blue);
  text-decoration: underline;
}

.policy-content a:hover, .terms-content a:hover, .cookie-policy-content a:hover {
  color: var(--electric-pink);
}

.callout {
  border-radius: 8px;
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.callout.primary {
  background-color: rgba(0, 243, 255, 0.1);
  border-left: 4px solid var(--neon-blue);
}

.callout.secondary {
  background-color: rgba(255, 0, 228, 0.1);
  border-left: 4px solid var(--electric-pink);
}

.callout p {
  margin-bottom: 0;
}

table {
  width: 100%;
  margin-bottom: 2rem;
  border-collapse: collapse;
}

thead {
  background-color: var(--deep-purple);
  color: white;
}

th, td {
  padding: 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--slate-gray);
}

tbody tr {
  background-color: var(--dark-matter);
  transition: var(--smooth-transition);
}

tbody tr:hover {
  background-color: var(--dark-blue);
}


.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}


@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .timeline:before {
    left: 30px;
  }
  
  .timeline-marker {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 80px;
    margin-right: 0;
  }
  
  .timeline-content:before, .timeline-item:nth-child(even) .timeline-content:before {
    left: -20px;
    right: auto;
    border-color: transparent var(--dark-blue) transparent transparent;
  }
  
  .featured-article-image {
    min-height: 250px;
  }
  
  .article-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    height: auto;
    min-height: 500px;
    padding: 4rem 0;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content h2 {
    font-size: 1.3rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .stat-card {
    margin-bottom: 1.5rem;
  }
  
  .challenge-item {
    flex-direction: column;
  }
  
  .challenge-icon {
    margin-bottom: 1rem;
  }
  
  .challenge-content {
    padding-left: 0;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .article-meta span {
    margin-bottom: 0.3rem;
  }
}

@media (max-width: 575.98px) {
  .section-light, .section-dark {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .cookie-modal-content {
    padding: 1.5rem;
    width: 95%;
    margin: 5% auto;
  }
  
  .article-title {
    font-size: 1.3rem;
  }
  
  .featured-article-content {
    padding: 1.5rem;
  }
}