:root {
  /* Neo-Brutalism Color Palette - Bold & Graphic */
  --primary-color: #ff006e;
  --secondary-color: #8338ec;
  --accent-color: #fb5607;
  --dark-color: #000000;
  --light-color: #ffffff;
  --gray-light: #f8f9fa;
  --gray-medium: #6c757d;
  
  /* Type Scale */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  
  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border & Shadow System */
  --border-thick: 3px;
  --border-thin: 1px;
  --shadow-offset: 4px;
  --shadow-color: var(--dark-color);
  
  /* Border Radius */
  --radius-sharp: 0;
  --radius-soft: 4px;
  --radius-rounded: 8px;
  
  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: var(--gray-light);
  color: var(--dark-color);
  font-weight: 400;
  overflow-x: hidden;
}

/* Full-Height Layout */
html, body {
  height: 100%;
  min-height: 100vh;
}

/* Container System - Override Tailwind */
.container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: var(--space-lg) !important;
  padding-right: var(--space-lg) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Typography - Bold & Expressive */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 var(--space-lg) 0;
  color: var(--dark-color);
  letter-spacing: -0.025em;
}

h1 {
  font-size: var(--text-6xl);
  margin-bottom: var(--space-xl);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.05em;
}

h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: var(--text-3xl);
}

h4 {
  font-size: var(--text-2xl);
}

h5 {
  font-size: var(--text-xl);
}

h6 {
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  margin: 0 0 var(--space-lg) 0;
  font-size: var(--text-base);
  line-height: 1.7;
}

/* Links - Bold Interactive States */
a {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: var(--border-thick) solid transparent;
  transition: all 0.2s ease;
  font-weight: 600;
}

a:hover {
  border-bottom-color: var(--primary-color);
  background-color: rgba(255, 0, 110, 0.1);
  padding: 2px 4px;
  margin: -2px -4px;
}

a:focus {
  outline: var(--border-thick) solid var(--primary-color);
  outline-offset: 2px;
}

/* Lists - Brutalist Style */
ul, ol {
  padding-left: var(--space-lg);
  margin: 0 0 var(--space-lg) 0;
}

li {
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

/* Section System - High Contrast Backgrounds */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--light-color);
}

.section:nth-child(odd) {
  background: var(--gray-light);
}

.section-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.section-dark {
  background: var(--dark-color);
  color: var(--light-color);
}

/* Cards - Neo-Brutalist Design */
.card {
  background: var(--light-color);
  border: var(--border-thick) solid var(--dark-color);
  border-radius: var(--radius-sharp);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 var(--shadow-color);
}

.card-dark {
  background: var(--dark-color);
  color: var(--light-color);
}

.card-accent {
  background: var(--accent-color);
  color: var(--light-color);
  border-color: var(--dark-color);
}

.card-primary {
  background: var(--primary-color);
  color: var(--light-color);
  border-color: var(--dark-color);
}

.card-secondary {
  background: var(--secondary-color);
  color: var(--light-color);
  border-color: var(--dark-color);
}

/* Buttons - Bold & Brutalist */
.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: var(--border-thick) solid var(--dark-color);
  border-radius: var(--radius-sharp);
  background: var(--primary-color);
  color: var(--light-color);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 var(--shadow-color);
  background: var(--secondary-color);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
}

.btn:focus {
  outline: var(--border-thick) solid var(--accent-color);
  outline-offset: 2px;
}

.btn-secondary {
  background: var(--secondary-color);
}

.btn-accent {
  background: var(--accent-color);
}

.btn-outline {
  background: transparent;
  color: var(--dark-color);
  border-color: var(--dark-color);
}

.btn-outline:hover {
  background: var(--dark-color);
  color: var(--light-color);
}

/* Button Sizes */
.btn-sm {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-lg);
}

/* Forms - Brutalist Input Styling */
.form-group {
  margin-bottom: var(--space-lg);
}

label {
  display: block;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  color: var(--dark-color);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="search"],
textarea,
select {
  width: 100%;
  padding: var(--space-md);
  font-size: var(--text-base);
  font-family: var(--font-primary);
  border: var(--border-thick) solid var(--dark-color);
  border-radius: var(--radius-sharp);
  background: var(--light-color);
  color: var(--dark-color);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 transparent;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--primary-color);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Navigation - Bold & Graphic */
.nav {
  background: var(--dark-color);
  padding: var(--space-lg) 0;
  border-bottom: var(--border-thick) solid var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  text-decoration: none;
  border: none;
}

.nav-brand:hover {
  background: none;
  padding: 0;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-lg);
}

.nav-link {
  color: var(--light-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  padding: var(--space-sm) var(--space-md);
  border: var(--border-thick) solid transparent;
  transition: all 0.2s ease;
  border-radius: var(--radius-sharp);
}

.nav-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-color);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-color);
}

.nav-link:focus {
  outline: var(--border-thick) solid var(--accent-color);
  outline-offset: 2px;
}

/* Header Styles */
.header {
  padding: var(--space-2xl) 0;
  text-align: center;
  border-bottom: var(--border-thick) solid var(--dark-color);
}

.header-title {
  font-size: var(--text-5xl);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  margin-bottom: var(--space-md);
}

.header-subtitle {
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-1 * var(--space-md));
}

.col {
  flex: 1;
  padding: 0 var(--space-md);
}

.col-1 { flex: 0 0 8.333333%; }
.col-2 { flex: 0 0 16.666667%; }
.col-3 { flex: 0 0 25%; }
.col-4 { flex: 0 0 33.333333%; }
.col-6 { flex: 0 0 50%; }
.col-8 { flex: 0 0 66.666667%; }
.col-9 { flex: 0 0 75%; }
.col-12 { flex: 0 0 100%; }

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-accent { background-color: var(--accent-color); }
.bg-dark { background-color: var(--dark-color); }
.bg-light { background-color: var(--light-color); }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.text-dark { color: var(--dark-color); }
.text-light { color: var(--light-color); }
.text-gray { color: var(--gray-medium); }

/* Footer */
.footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: var(--space-3xl) 0 var(--space-xl) 0;
  border-top: var(--border-thick) solid var(--primary-color);
  text-align: center;
}

.footer-content {
  margin-bottom: var(--space-lg);
}

.footer-text {
  font-size: var(--text-sm);
  color: var(--gray-light);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --text-6xl: 2.5rem;
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
  }
  
  .container {
    padding-left: var(--space-md) !important;
    padding-right: var(--space-md) !important;
  }
  
  .nav-container {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .nav-menu {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  
  .row {
    flex-direction: column;
  }
  
  .col {
    margin-bottom: var(--space-lg);
  }
  
  .col-1, .col-2, .col-3, .col-4, .col-6, .col-8, .col-9 {
    flex: 0 0 100%;
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .section-hero {
    min-height: 80vh;
  }
  
  .btn {
    width: 100%;
    margin-bottom: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .card {
    padding: var(--space-lg);
  }
  
  .btn {
    padding: var(--space-lg) var(--space-lg);
  }
  
  h1 {
    font-size: var(--text-4xl);
  }
  
  .header-title {
    font-size: var(--text-3xl);
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #ff0000;
    --secondary-color: #0000ff;
    --dark-color: #000000;
    --light-color: #ffffff;
    --border-thick: 4px;
    --shadow-offset: 6px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Print Styles */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  .nav, .footer, .btn {
    display: none;
  }
  
  .section {
    padding: 1rem 0;
    border: 1px solid #000;
    margin-bottom: 1rem;
  }
}


/* 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;
    }
}