/* Import specs common styles */
@import './specs-common.css';

/* Main styles for about and blog pages */

body {
  background: #111;
  color: #e0e0e0;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  position: relative;
}

.about-main, .blog-main {
  background: #fff;
  color: #000000;
  border-radius: 14px;
  box-shadow: 0 2px 16px #00e6d822;
  max-width: 800px;
  margin: 2.5em auto 0 auto;
  padding: 2em 1.5em;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.about-main h1, .blog-main h1 {
  color: #00e6d8;
  font-size: 2.2em;
  margin-bottom: 0.5em;
}

.about-main h2, .blog-main h2 {
  color: #00b3a4;
  font-size: 1.3em;
  margin-top: 1.5em;
}

.about-main ul, .blog-main ul {
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

@media (max-width: 600px) {
  .about-main, .blog-main {
    padding: 1em 0.5em;
    margin: 1em 0 0 0;
  }
  .about-main h1, .blog-main h1 {
    font-size: 1.4em;
  }
}

/* Like button styles */
.like-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  background: transparent;
  color: #e0e0e0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.like-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: all 0.2s ease;
}

.like-button:hover {
  background: rgba(224, 224, 224, 0.1);
  border-color: #ff4081;
  color: #ff4081;
}

.like-button.active {
  background: #ff4081;
  border-color: #ff4081;
  color: white;
}

.like-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 64, 129, 0.3);
}

.like-button:active {
  transform: scale(0.95);
}

/* Quick stats styling */
.quick-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 8px 0;
  border-top: 1px solid rgba(224, 224, 224, 0.1);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #888;
}

.stat-item strong {
  color: #e0e0e0;
}
/* Cookie Consent Card */
#cookie-consent-card {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 320px;
  background: #222;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  font-family: Arial, sans-serif;
  font-size: 14px;
  z-index: 99999;
  display: none;
  line-height: 1.5;
}

#cookie-consent-card button {
  background: #f1d600;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.2s;
}

#cookie-consent-card button:hover {
  background: #d4b500;
}

#cookie-consent-card a {
  color: #f1d600;
  text-decoration: none;
  transition: color 0.2s;
}

#cookie-consent-card a:hover {
  color: #d4b500;
  text-decoration: underline;
}