:root {
  /* Neo-Brutalism Color Palette */
  --primary-cyan: #00f0ff;
  --secondary-purple: #bf00ff;
  --bg-dark: #050b14;
  --bg-section: #0a1120;
  --bg-footer: #020408;
  --text-light: #ffffff;
  --text-dark: #000000;
  --accent-yellow: #ffeb3b;
  --accent-orange: #ff5722;
  
  /* Typography */
  --font-primary: 'Inter', 'Arial', sans-serif;
  --font-bold: 'Oswald', 'Impact', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  
  /* Spacing & Sizing */
  --border-thick: 3px;
  --border-medium: 2px;
  --border-light: 1px;
  --radius-sharp: 0;
  --radius-soft: 4px;
  --shadow-offset: 4px;
  
  /* Base spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

/* Bold Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-bold);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--text-dark);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
}

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-bottom: var(--space-md);
}

/* Neo-Brutalism Links */
a {
  color: var(--primary-cyan);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--secondary-purple);
  text-shadow: 2px 2px 0 var(--text-dark);
}

/* Container Overrides for Full Width */
.container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Full Width Sections */
.section-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: var(--space-2xl) var(--space-lg);
}

/* Section Background Alternating */
.bg-dark {
  background-color: var(--bg-dark);
}

.bg-section {
  background-color: var(--bg-section);
}

.bg-footer {
  background-color: var(--bg-footer);
}

/* Neo-Brutalism Cards */
.card {
  background-color: var(--bg-section);
  border: var(--border-thick) solid var(--text-dark);
  border-radius: var(--radius-soft);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--text-dark);
  transition: all 0.2s ease;
  position: relative;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 var(--text-dark);
}

.card-header {
  font-family: var(--font-bold);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-cyan);
  text-transform: uppercase;
  border-bottom: var(--border-medium) solid var(--text-dark);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-md);
}

/* Neo-Brutalism Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--button-color);
  color: var(--text-dark);
  border: var(--border-thick) solid var(--text-dark);
  border-radius: var(--radius-sharp);
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-bold);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--text-dark);
  text-decoration: none;
  position: relative;
}

.btn-primary:hover {
  background-color: var(--secondary-purple);
  color: var(--text-light);
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 var(--text-dark);
}

.btn-primary:active {
  transform: translate(0, 0);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--text-dark);
}

.btn-secondary {
  background-color: var(--secondary-purple);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--accent-orange);
  color: var(--text-dark);
}

/* Bold Form Elements */
.form-group {
  margin-bottom: var(--space-lg);
}

label {
  display: block;
  font-family: var(--font-bold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
  color: var(--primary-cyan);
}

input, textarea, select {
  width: 100%;
  background-color: var(--bg-section);
  border: var(--border-medium) solid var(--text-dark);
  border-radius: var(--radius-soft);
  padding: var(--space-sm);
  font-size: 1rem;
  color: var(--text-light);
  font-family: var(--font-primary);
  transition: all 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 var(--space-xs) rgba(0, 240, 255, 0.3);
}

/* Navigation Styles */
.navbar {
  background-color: var(--bg-section);
  border-bottom: var(--border-thick) solid var(--text-dark);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 var(--shadow-offset) 0 var(--text-dark);
}

.nav-link {
  color: var(--text-light);
  font-family: var(--font-bold);
  font-weight: 700;
  text-transform: uppercase;
  padding: var(--space-sm) var(--space-md);
  border: var(--border-medium) solid transparent;
  border-radius: var(--radius-soft);
  transition: all 0.2s ease;
}

.nav-link:hover {
  background-color: var(--primary-cyan);
  color: var(--text-dark);
  border-color: var(--text-dark);
  box-shadow: 2px 2px 0 var(--text-dark);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-section) 50%, var(--bg-dark) 100%);
  border-bottom: var(--border-thick) solid var(--text-dark);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  margin-bottom: var(--space-lg);
  color: var(--primary-cyan);
  text-shadow: 4px 4px 0 var(--text-dark);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 400;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid System Override */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 { grid-template-columns: repeat(1, 1fr); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }
.mt-6 { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }
.mb-6 { margin-bottom: var(--space-2xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-xs); }
.p-2 { padding: var(--space-sm); }
.p-3 { padding: var(--space-md); }
.p-4 { padding: var(--space-lg); }
.p-5 { padding: var(--space-xl); }
.p-6 { padding: var(--space-2xl); }

/* Footer Styles */
.footer {
  background-color: var(--bg-footer);
  border-top: var(--border-thick) solid var(--text-dark);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: var(--space-2xl);
}

.footer-title {
  font-family: var(--font-bold);
  color: var(--primary-cyan);
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.footer-link {
  color: var(--text-light);
  display: block;
  margin-bottom: var(--space-xs);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.footer-link:hover {
  color: var(--primary-cyan);
  padding-left: var(--space-xs);
}

/* Focus States for Accessibility */
*:focus {
  outline: 2px solid var(--primary-cyan);
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .card {
    border-width: var(--border-thick);
  }
  
  .btn-primary {
    border-width: var(--border-thick);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* Print Styles */
@media print {
  .card,
  .btn-primary,
  .navbar {
    border: 2px solid var(--text-dark);
    box-shadow: none;
  }
  
  .hero {
    min-height: auto;
    page-break-inside: avoid;
  }
}

/* Arabic Language Specific Adjustments */
[lang="es-AR"] {
  font-family: var(--font-primary);
  text-align: left;
}

/* Bold Interactive Elements */
.badge {
  display: inline-block;
  background-color: var(--accent-orange);
  color: var(--text-dark);
  border: var(--border-medium) solid var(--text-dark);
  border-radius: var(--radius-sharp);
  padding: var(--space-xs) var(--space-sm);
  font-family: var(--font-bold);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 2px 2px 0 var(--text-dark);
}

.badge-cyan {
  background-color: var(--primary-cyan);
}

.badge-purple {
  background-color: var(--secondary-purple);
  color: var(--text-light);
}

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 240, 255, 0.3),
    transparent
  );
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Responsive Typography */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  
  h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
  
  .card {
    padding: var(--space-md);
  }
  
  .btn-primary {
    padding: var(--space-sm) var(--space-md);
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-full {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-cyan);
  border: 2px solid var(--text-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-purple);
}


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}