

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner.hidden {
  display: none !important;
}

.cookie-banner-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.cookie-banner-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.cookie-banner-desc a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.cookie-banner-desc a:hover {
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn-accept {
  background-color: var(--accent);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background-color: var(--accent-light);
}

.cookie-btn-reject {
  background-color: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-reject:hover {
  border-color: rgba(255,255,255,0.6);
  background-color: rgba(255,255,255,0.05);
  color: var(--white);
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-text {
    min-width: auto;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
  }
}
