/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Source Code Pro', monospace;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #fafafa;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,.01) 2px,
      rgba(0,0,0,.01) 4px
    );
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* Container */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  padding: 3rem 0 2rem 0;
  border-bottom: 3px solid #000;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
  position: relative;
}

.header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #000 0px,
    #000 10px,
    transparent 10px,
    transparent 20px
  );
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo-link {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
  border: 2px solid #000;
  padding: 0.5rem 1rem;
  background: #fff;
  transition: all 0.2s ease;
}

.header__logo-link:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px #666;
}

.header__nav {
  display: flex;
  gap: 2rem;
}

.header__nav-link {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.header__nav-link:hover {
  border: 1px solid #000;
  background: #fff;
  transform: translateY(-1px);
}

/* Home page */
.home__hero {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(45deg, #f8f8f8, #fff);
  border: 3px solid #000;
  position: relative;
}

.home__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0,0,0,0.02) 10px,
    rgba(0,0,0,0.02) 20px
  );
  pointer-events: none;
}

.home__title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.home__subtitle {
  font-size: 1.1rem;
  color: #333;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Posts */
.posts__title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: bold;
  border-bottom: 3px solid #000;
  padding-bottom: 0.5rem;
}

.posts__list {
  display: grid;
  gap: 2rem;
}

/* Post card */
.post-card {
  border: 2px solid #000;
  background: #fff;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 3px 3px 0px #000;
}

.post-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px #000;
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #ff6b6b 0%,
    #4ecdc4 25%,
    #45b7d1 50%,
    #96ceb4 75%,
    #feca57 100%
  );
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.post-card__date {
  color: #666;
}

.post-card__separator {
  color: #000;
  font-weight: bold;
}

.post-card__category-link {
  color: #000;
  text-decoration: none;
  padding: 0.2rem 0.5rem;
  border: 1px solid #000;
  background: #fff;
  transition: all 0.2s ease;
}

.post-card__category-link:hover {
  background: #000;
  color: #fff;
}

.post-card__reading-time {
  color: #666;
}

.post-card__title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #000;
  line-height: 1.3;
}

.post-card__title-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.post-card__title-link:hover {
  border-bottom-color: #000;
}

.post-card__description {
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.post-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.post-card__tag {
  background-color: #000;
  color: #fff;
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  border: 2px solid #000;
  transition: all 0.2s ease;
}

.post-card__tag:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-1px);
}

.post-card__read-more {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  border: 2px solid #000;
}

.post-card__read-more:hover {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
}

/* Individual post */
.post {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #000;
  padding: 3rem;
  box-shadow: 5px 5px 0px #000;
  position: relative;
}

.post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #ff6b6b 0%,
    #4ecdc4 25%,
    #45b7d1 50%,
    #96ceb4 75%,
    #feca57 100%
  );
}

.post__breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.post__breadcrumb-link {
  color: #666;
  text-decoration: none;
  padding: 0.2rem 0.5rem;
  border: 1px solid #ccc;
  transition: all 0.2s ease;
}

.post__breadcrumb-link:hover {
  color: #000;
  border-color: #000;
  background: #f8f8f8;
}

.post__title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.post__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.post__separator {
  color: #000;
  font-weight: bold;
}

.post__category-link {
  color: #000;
  text-decoration: none;
  padding: 0.2rem 0.5rem;
  border: 1px solid #000;
  background: #fff;
  transition: all 0.2s ease;
}

.post__category-link:hover {
  background: #000;
  color: #fff;
}

.post__content {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: #333;
}

.post__content h1,
.post__content h2,
.post__content h3,
.post__content h4,
.post__content h5,
.post__content h6 {
  margin: 2.5rem 0 1rem 0;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.post__content h2 {
  font-size: 1.8rem;
  border-bottom: 2px solid #000;
  padding-bottom: 0.5rem;
}

.post__content h3 {
  font-size: 1.5rem;
}

.post__content p {
  margin-bottom: 1.5rem;
}

.post__content code {
  background-color: #000;
  color: #0f0;
  padding: 0.2rem 0.4rem;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
  border: 1px solid #333;
}

.post__content pre {
  background-color: #000;
  color: #0f0;
  padding: 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 2px solid #333;
  position: relative;
}

.post__content pre::before {
  content: '$ ';
  color: #0f0;
  font-weight: bold;
}

.post__content pre code {
  background: none;
  padding: 0;
  border: none;
  color: inherit;
}

.post__content blockquote {
  border-left: 4px solid #000;
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: #333;
  font-style: italic;
  background: #f8f8f8;
  padding: 1rem 1rem 1rem 1.5rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.post__content ul,
.post__content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.post__content li {
  margin-bottom: 0.5rem;
}

.post__content img {
  display: block;
  margin: 2rem auto;
  max-width: 100%;
  height: auto;
  border: 3px solid #000;
  box-shadow: 5px 5px 0px #000;
}

.post__content a img {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post__content a img:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px #000;
}

.post__content p em {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
  margin-top: -1rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.post__footer {
  border-top: 3px solid #000;
  padding-top: 2rem;
  margin-bottom: 3rem;
}

.post__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.post__tags-label {
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.post__tag {
  background-color: #000;
  color: #fff;
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  border: 2px solid #000;
  transition: all 0.2s ease;
}

.post__tag:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-1px);
}

.post__navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  border: 2px solid #000;
  overflow: hidden;
}

.post__nav-item {
  padding: 1.5rem;
  background-color: #fff;
  border-right: 1px solid #000;
  transition: all 0.2s ease;
}

.post__nav-item:last-child {
  border-right: none;
}

.post__nav-item:hover {
  background-color: #f8f8f8;
}

.post__nav-item--next {
  text-align: right;
}

.post__nav-label {
  display: block;
  font-size: 0.7rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.post__nav-link {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

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

.post__author {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.post__author h3 {
  margin-bottom: 1rem;
  color: #222;
}

.post__author p {
  margin-bottom: 1rem;
  color: #666;
}

.post__author-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.post__author-links a {
  color: #0066cc;
  text-decoration: none;
}

.post__author-links a:hover {
  text-decoration: underline;
}

/* Page */
.page {
  max-width: 800px;
  margin: 0 auto;
}

.page__breadcrumb {
  margin-bottom: 2rem;
}

.page__breadcrumb-link {
  color: #666;
  text-decoration: none;
}

.page__breadcrumb-link:hover {
  color: #333;
}

.page__title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #222;
}

.page__content {
  font-size: 1.1rem;
  line-height: 1.7;
}

.page__content h1,
.page__content h2,
.page__content h3,
.page__content h4,
.page__content h5,
.page__content h6 {
  margin: 2rem 0 1rem 0;
  color: #222;
}

.page__content p {
  margin-bottom: 1.5rem;
}

.page__content a {
  color: #0066cc;
  text-decoration: none;
}

.page__content a:hover {
  text-decoration: underline;
}

/* Category and Tag pages */
.category__breadcrumb,
.tag__breadcrumb {
  margin-bottom: 2rem;
}

.category__breadcrumb-link,
.tag__breadcrumb-link {
  color: #666;
  text-decoration: none;
}

.category__breadcrumb-link:hover,
.tag__breadcrumb-link:hover {
  color: #333;
}

.category__title,
.tag__title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.category__count,
.tag__count {
  color: #666;
  margin-bottom: 3rem;
}

/* Sidebar */
.sidebar {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.sidebar__section {
  margin-bottom: 2rem;
}

.sidebar__section:last-child {
  margin-bottom: 0;
}

.sidebar__title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #222;
}

.sidebar__list {
  list-style: none;
}

.sidebar__item {
  margin-bottom: 0.5rem;
}

.sidebar__link {
  color: #666;
  text-decoration: none;
}

.sidebar__link:hover {
  color: #333;
}

.sidebar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sidebar__tag {
  background-color: #fff;
  color: #666;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.sidebar__tag:hover {
  background-color: #e5e5e5;
}

/* Footer */
.footer {
  margin-top: 4rem;
  padding: 3rem 0 2rem 0;
  border-top: 3px solid #000;
  text-align: center;
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #000 0px,
    #000 10px,
    transparent 10px,
    transparent 20px
  );
}

.footer__text {
  color: #000;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer__links a {
  color: #000;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #000;
  transition: all 0.2s ease;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer__links a:hover {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header__inner {
    flex-direction: column;
    gap: 1rem;
  }

  .header__nav {
    gap: 1rem;
  }

  .home__title {
    font-size: 2rem;
  }

  .post__title,
  .page__title,
  .category__title,
  .tag__title {
    font-size: 2rem;
  }

  .post__navigation {
    grid-template-columns: 1fr;
  }

  .post__nav-item--next {
    text-align: left;
  }

  .footer__links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* Newsletter Subscription */
.newsletter {
  background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
  border: 3px solid #000;
  margin: 3rem 0;
  padding: 2.5rem;
  position: relative;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #ff6b6b 0%,
    #4ecdc4 25%,
    #45b7d1 50%,
    #96ceb4 75%,
    #feca57 100%
  );
}

.newsletter::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.02) 20px,
    rgba(0,0,0,0.02) 40px
  );
  pointer-events: none;
}

.newsletter__container {
  position: relative;
  z-index: 1;
}

.newsletter__content {
  text-align: center;
  margin-bottom: 2rem;
}

.newsletter__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.newsletter__description {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter__form {
  max-width: 400px;
  margin: 0 auto;
}

.newsletter__hidden {
  position: absolute;
  left: -9999px;
}

.newsletter__form-group {
  margin-bottom: 1rem;
}

.newsletter__label {
  display: block;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.newsletter__input-group {
  display: flex;
  border: 2px solid #000;
  background: #fff;
  transition: all 0.2s ease;
}

.newsletter__input-group:focus-within {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0px #000;
}

.newsletter__input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  background: transparent;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
  font-size: 0.9rem;
  color: #000;
  outline: none;
}

.newsletter__input::placeholder {
  color: #666;
}

.newsletter__button {
  background: #000;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter__button:hover {
  background: #333;
  transform: translateX(-2px);
}

.newsletter__button:active {
  transform: translateX(0);
}

.newsletter__button-text {
  display: block;
}

.newsletter__button-icon {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.newsletter__button:hover .newsletter__button-icon {
  transform: translateX(2px);
}

.newsletter__privacy {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

.newsletter__privacy-link {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  transition: all 0.2s ease;
}

.newsletter__privacy-link:hover {
  background: #000;
  color: #fff;
  padding: 0.1rem 0.3rem;
  margin: 0 -0.3rem;
}

.newsletter__success {
  text-align: center;
  padding: 2rem;
  background: #f0f8f0;
  border: 2px solid #4CAF50;
  margin-top: 1rem;
}

.newsletter__success-title {
  color: #2E7D32;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.newsletter__success-message {
  color: #388E3C;
  font-size: 0.9rem;
}

.newsletter__error {
  color: #d32f2f;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: #ffebee;
  border: 1px solid #d32f2f;
  text-align: center;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
}

/* Newsletter responsive design */
@media (max-width: 768px) {
  .newsletter {
    margin: 2rem 0;
    padding: 2rem 1.5rem;
  }

  .newsletter__input-group {
    flex-direction: column;
  }

  .newsletter__button {
    border-top: 1px solid #000;
    justify-content: center;
  }

  .newsletter__title {
    font-size: 1.5rem;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  color: #fff;
  z-index: 1000;
  border-top: 3px solid #fff;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
}

.cookie-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookie-banner__description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #ccc;
  margin: 0;
}

.cookie-banner__link {
  color: #4ecdc4;
  text-decoration: none;
  border-bottom: 1px solid #4ecdc4;
  transition: all 0.2s ease;
}

.cookie-banner__link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.cookie-banner__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-banner__button {
  padding: 0.7rem 1.2rem;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.cookie-banner__button:hover {
  transform: translateY(-1px);
}

.cookie-banner__button--accept {
  background: #4ecdc4;
  border-color: #4ecdc4;
  color: #000;
}

.cookie-banner__button--accept:hover {
  background: #fff;
  border-color: #fff;
}

.cookie-banner__button--preferences:hover {
  background: #333;
}

.cookie-banner__button--decline:hover {
  background: #d32f2f;
  border-color: #d32f2f;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
}

.cookie-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}

.cookie-modal__content {
  position: relative;
  background: #fff;
  border: 3px solid #000;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 5px 5px 0px #000;
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 2px solid #000;
  background: #f8f8f8;
}

.cookie-modal__title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #000;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal__close:hover {
  color: #000;
}

.cookie-modal__body {
  padding: 1.5rem;
}

.cookie-modal__intro {
  margin-bottom: 2rem;
  color: #333;
  line-height: 1.6;
}

.cookie-category {
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid #ddd;
  background: #f9f9f9;
}

.cookie-category__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category__title {
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookie-category__status {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cookie-category__description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border: 2px solid #000;
}

.cookie-toggle__slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: #000;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background-color: #4ecdc4;
}

.cookie-toggle input:checked + .cookie-toggle__slider:before {
  transform: translateX(22px);
  background-color: #fff;
}

.cookie-modal__footer {
  padding: 1.5rem;
  border-top: 2px solid #000;
  background: #f8f8f8;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .cookie-banner__actions {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cookie-banner__button {
    font-size: 0.7rem;
    padding: 0.6rem 1rem;
  }
  
  .cookie-modal__content {
    margin: 1rem;
  }
  
  .cookie-modal__footer {
    flex-direction: column;
  }
}
