:root {
  --primary: #FF00FF;
  --secondary: #00FFFF;
  --accent1: #FFFF00;
  --accent2: #00FF00;
  --dark-bg: #121212;
  --dark-surface: #1E1E1E;
  --text-light: #FFFFFF;
  --text-muted: #B0B0B0;
  --gradient-1: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-2: linear-gradient(135deg, var(--accent1), var(--accent2));
  --transition: all 0.3s ease;
}


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

h1, h2, h3, h4, h5, h6 {
  font-family: 'JetBrains Mono', monospace;
  margin-top: 0;
  font-weight: 700;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

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

.btn {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover, .btn-primary:focus {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover, .btn-outline:focus {
  background: var(--gradient-1);
  color: var(--text-light);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.container {
  padding: 2rem;
}

.pixelated {
  image-rendering: pixelated;
  position: relative;
}

.pixelated::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEklEQVQImWNgYGD4z0AE/ADlUQf/mKiKnAAAAABJRU5ErkJggg==');
  background-repeat: repeat;
  opacity: 0.1;
  pointer-events: none;
}

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: bold;
}

.gradient-text-2 {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: bold;
}

.card {
  background-color: var(--dark-surface);
  border: 1px solid rgba(255, 0, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 2px;
}


.y2k-border {
  border: 2px solid;
  border-image: var(--gradient-1);
  border-image-slice: 1;
  padding: 2px;
}

.y2k-shadow {
  box-shadow: 
    0 0 10px rgba(255, 0, 255, 0.5),
    0 0 20px rgba(0, 255, 255, 0.3);
}

.y2k-glow {
  text-shadow:
    0 0 5px rgba(255, 0, 255, 0.7),
    0 0 10px rgba(0, 255, 255, 0.5);
}

.retro-grid {
  background-image: 
    linear-gradient(rgba(255, 0, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center center;
}

.mt-5 {
  margin-top: 5rem !important;
}


.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.95));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}


.navbar {
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 0, 255, 0.2);
  padding: 1rem 2rem;
}

.navbar-brand img {
  height: 40px;
}

.navbar-toggler {
  border: none;
  background: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.nav-link {
  color: var(--text-light);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.2rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-link:hover, .nav-link:focus, .nav-link.active {
  color: var(--secondary);
}


.footer {
  background-color: var(--dark-surface);
  padding: 4rem 0 2rem;
  position: relative;
  border-top: 1px solid rgba(255, 0, 255, 0.2);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-1);
}

.footer h5 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-bg);
  color: var(--text-light);
  transition: var(--transition);
  border: 1px solid rgba(255, 0, 255, 0.3);
}

.social-links a:hover {
  transform: translateY(-3px);
  background: var(--gradient-1);
  border-color: transparent;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 0, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}


.form-control {
  background-color: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(255, 0, 255, 0.3);
  color: var(--text-light);
  padding: 0.8rem 1rem;
  border-radius: 5px;
  transition: var(--transition);
}

.form-control:focus {
  background-color: rgba(30, 30, 30, 0.9);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 255, 0.25);
  color: var(--text-light);
}

.form-label {
  color: var(--text-muted);
  font-weight: 500;
}

.form-check-input {
  background-color: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(255, 0, 255, 0.3);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-form {
  background-color: var(--dark-surface);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 0, 255, 0.2);
}


#cookieConsentModal .modal-content {
  background-color: var(--dark-surface);
  color: var(--text-light);
  border: 1px solid rgba(255, 0, 255, 0.3);
}

#cookieConsentModal .modal-header {
  border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}

#cookieConsentModal .modal-footer {
  border-top: 1px solid rgba(255, 0, 255, 0.2);
}

#cookieConsentBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-surface);
  color: var(--text-light);
  padding: 1rem;
  z-index: 1000;
  border-top: 1px solid rgba(255, 0, 255, 0.3);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
  display: none;
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.stat-card {
  background-color: var(--dark-surface);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 0, 255, 0.2);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
}

.stat-card .stat-value {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 0.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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


.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  background: var(--dark-bg);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 0, 255, 0.3);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-1);
  color: var(--text-light);
  transform: rotateY(180deg);
  border-color: transparent;
}


.article-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.article-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card .card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.article-card .card-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.card-text, .card-title, p {
  color: var(--text-light);
}

.article-card .btn {
  margin-top: auto;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}


.chart-container {
  position: relative;
  background: var(--dark-surface);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid rgba(255, 0, 255, 0.2);
  margin-bottom: 2rem;
}


.iti {
  width: 100%;
}

.iti__flag-container {
  border-radius: 5px 0 0 5px;
}


@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .navbar-collapse {
    background-color: var(--dark-bg);
    padding: 1rem;
    margin: 0 -1rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 1rem;
  }
  
  .stat-card .stat-value {
    font-size: 2.5rem;
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .navbar-brand img {
    height: 32px;
  }
}