/* Eightball Theme - Main Styles */

/* ===== ERROR MESSAGES ===== */
.error-message {
  color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.1) !important;
  border-left: 4px solid #ff6b6b !important;
  font-style: italic;
}

.error-message p {
  color: #ff6b6b !important;
  margin: 0;
}

/* ===== LAYOUT & STRUCTURE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #000000;
  margin: 0;
  padding: 0;
}

.site-content {
  flex: 1;
  background: #000000;
  margin: 0;
  padding: 0;
}

.header-container,
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  background: #000000;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  margin: 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.site-branding a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.75rem;
}

.eightball-logo {
  font-size: 8rem;
  font-weight: 900;
  font-family: 'Impact', 'Arial Black', 'Helvetica Bold', sans-serif;
  color: #ffffff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  letter-spacing: -0.05em;
}

.eightball-logo-infinity {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Impact', 'Arial Black', 'Helvetica Bold', sans-serif;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
  display: inline-block;
  line-height: 1;
  animation: infiniteSpin 3s linear infinite;
  letter-spacing: -0.05em;
}

@keyframes infiniteSpin {
  from {
    transform: rotate(90deg);
  }
  to {
    transform: rotate(450deg);
  }
}

.eightball-text {
  color: #ffffff;
}

/* ===== HEADER SEARCH ===== */
.header-search {
  flex: 1;
  width: 100%;
  margin-left: 3rem;
}

.header-search-form {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

.header-search-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.header-search-icon {
  position: absolute;
  left: 1.5rem;
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Impact', 'Arial Black', 'Helvetica Bold', sans-serif;
  color: #ffffff;
  transform: rotate(90deg);
  z-index: 2;
  text-decoration: none;
  animation: infiniteSpin 3s linear infinite;
  transition: all 0.3s ease;
}

.header-search-icon:hover {
  animation-play-state: paused;
  transform: rotate(90deg) scale(1.2);
  color: #00ff88;
}

.header-search-icon:not(:hover) {
  animation-play-state: running;
}

.header-search-input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 4rem;
  font-size: 1.125rem;
  background: #2a2a2a;
  border: 2px solid #333;
  border-radius: 30px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.header-search-input::placeholder {
  color: #999;
}

.header-search-input:focus {
  outline: none;
  border-color: #ffffff;
  background: #3a3a3a;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.header-search-button {
  position: absolute;
  right: 0.5rem;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000000;
}

.header-search-button:hover {
  background: #cccccc;
  transform: scale(1.05);
}

/* ===== LOADING INDICATOR ===== */
.loading-section {
  text-align: center;
  padding: 4rem 2rem;
  background: #000000;
}

.loading-content h3 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.loading-content p {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #333;
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 2rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: #00ff88;
  color: #000000;
  border-color: #00ff88;
}

.btn-primary:hover {
  background: #00cc6a;
  border-color: #00cc6a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #00ff88;
  border-color: #00ff88;
}

.btn-secondary:hover {
  background: #00ff88;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

/* ===== HOMEPAGE ===== */
.eightball-homepage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  background: #000000;
  margin-top: -10vh; /* Move content up for better visual appeal */
}

.hero-section {
  max-width: 800px;
  margin: 0 auto;
}

.giant-eight {
  font-size: 15rem;
  font-weight: 900;
  font-family: 'Impact', 'Arial Black', 'Helvetica Bold', sans-serif;
  color: #ffffff;
  text-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
  margin-bottom: 3rem;
  line-height: 1;
  animation: glow 3s ease-in-out infinite alternate;
  cursor: pointer;
  transition: transform 0.3s ease;
  letter-spacing: -0.05em;
}

.giant-eight:hover {
  transform: scale(1.05);
  animation-play-state: paused;
}

@keyframes glow {
  from {
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
  }
  to {
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.6);
  }
}

/* ===== SEARCH FORM ===== */
.search-form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 1.5rem 4rem 1.5rem 2rem;
  font-size: 1.25rem;
  background: #2a2a2a;
  border: 2px solid #333;
  border-radius: 50px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.search-input::placeholder {
  color: #999;
}

.search-input:focus {
  outline: none;
  border-color: #ffffff;
  background: #3a3a3a;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.search-button {
  position: absolute;
  right: 0.5rem;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000000;
}

.search-button:hover {
  background: #cccccc;
  transform: scale(1.05);
}

/* ===== SEARCH RESULTS ===== */
.search-results {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 20px;
  background: #000000;
}

.search-results-content h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}

.results-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.result-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.result-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.result-card:hover {
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.result-card h2 {
  margin-bottom: 1rem;
}

.result-card h3 {
  margin-bottom: 1rem;
}

.result-card h2 a,
.result-card h3 a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
}

.result-card h2 a:hover,
.result-card h3 a:hover {
  color: #cccccc;
}

.result-excerpt {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.result-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.result-type,
.result-intent {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.result-intent {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* ===== NO RESULTS ===== */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  background: #000000;
}

.no-results-content h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.no-results-content p {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.suggestions {
  margin-top: 3rem;
  padding: 2rem;
  background: #1a1a1a;
  border-radius: 12px;
  border: 1px solid #333;
}

.suggestions h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.suggestions ul {
  list-style: none;
  padding: 0;
}

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

.suggestions a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.125rem;
}

.suggestions a:hover {
  color: #cccccc;
  text-decoration: underline;
}

/* ===== 404 ERROR PAGE ===== */
.error-404 {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 20px;
  background: #000000;
}

.error-content {
  text-align: center;
  max-width: 800px;
}

.error-number {
  font-size: 12rem;
  font-weight: 900;
  color: #00ff88;
  text-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
  line-height: 1;
  margin-bottom: 2rem;
  animation: glow 3s ease-in-out infinite alternate;
}

.error-404 h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.error-404 p {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.popular-questions {
  margin-top: 3rem;
}

.popular-questions h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.questions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.question-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.question-card:hover {
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.question-number {
  background: #ffffff;
  color: #000000;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.question-text {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
}

/* ===== PAGINATION ===== */
.navigation.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.navigation.pagination .page-numbers {
  display: inline-block;
  padding: 0.75rem 1rem;
  background: #1a1a1a;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.navigation.pagination .page-numbers:hover,
.navigation.pagination .page-numbers.current {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.navigation.pagination .prev,
.navigation.pagination .next {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: #ffffff;
}

.navigation.pagination .prev:hover,
.navigation.pagination .next:hover {
  background: #ffffff;
  color: #000000;
}

/* ===== ANSWER PAGES ===== */
.answer {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 20px;
  background: #000000;
  position: relative;
  min-height: 100vh;
}

/* ===== AFFILIATE LINKS ===== */
.affiliate-link {
  color: #00ff88 !important;
  text-decoration: none;
  border-bottom: 1px solid #00ff88;
  background: rgba(0, 255, 136, 0.1);
  padding: 2px 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.affiliate-link:hover {
  background: rgba(0, 255, 136, 0.2);
  color: #ffffff !important;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
}

.affiliate-link::before {
  content: "💰";
  margin-right: 4px;
  font-size: 0.8em;
  opacity: 0.8;
}

/* ===== BACKGROUND IMAGE STYLING ===== */
.answer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  z-index: -1;
  filter: blur(25px) brightness(0.2) saturate(0.8);
  transition: opacity 2s ease-in-out;
  animation: backgroundFadeIn 3s ease-out;
}

@keyframes backgroundFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.12;
  }
}

.answer-content {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.85);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(15px);
  animation: fadeInUp 0.8s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.answer h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.25rem;
  color: #00ff88;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: rgba(0, 255, 136, 0.1);
  border-left: 4px solid #00ff88;
  border-radius: 0 8px 8px 0;
}

.eight-label {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: left;
}

.eight {
  list-style: none;
  counter-reset: eight-counter;
  margin-bottom: 3rem;
  padding: 0;
}

.eight li {
  counter-increment: eight-counter;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(26, 26, 26, 0.8);
  border-radius: 8px;
  position: relative;
  padding-left: 4rem;
  opacity: 0;
  transform: translateY(30px);
  backdrop-filter: blur(5px);
  list-style: none;
}

.eight li.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.eight li::before {
  content: counter(eight-counter);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: #00ff88;
  color: #000000;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.eight li p {
  margin: 0;
  color: #ffffff;
  line-height: 1.6;
}

.next {
  margin-bottom: 3rem;
}

.next h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.next ul {
  list-style: none;
  padding: 0;
}

.next li {
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  background: #1a1a1a;
  border-radius: 6px;
  border-left: 3px solid #00ff88;
  opacity: 0;
  transform: translateY(30px);
}

.next li.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.next li p {
  margin: 0;
  color: #ffffff;
}

.disclosure {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 1rem;
  color: #ffc107;
  font-size: 0.875rem;
  text-align: center;
  margin-top: 2rem;
  backdrop-filter: blur(5px);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #000000;
  border-top: 1px solid #333;
  margin-top: auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .giant-eight,
  .error-number {
    font-size: 10rem;
  }
  
  .search-input {
    font-size: 1rem;
    padding: 1.25rem 3.5rem 1.25rem 1.5rem;
  }
  
  .search-button {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .results-grid,
  .questions-grid {
    grid-template-columns: 1fr;
  }
  
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .header-search {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .search-results-content h1,
  .error-404 h1 {
    font-size: 2rem;
  }
  
  .no-results-content h1 {
    font-size: 2rem;
  }
  
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .giant-eight,
  .error-number {
    font-size: 8rem;
  }
  
  .answer h1,
  .search-results-content h1,
  .error-404 h1 {
    font-size: 2rem;
  }
  
  .eight li {
    padding-left: 3rem;
  }
  
  .eight li::before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
  }
  
  .result-card {
    padding: 1.5rem;
  }
  
  .result-card h2 a,
  .result-card h3 a {
    font-size: 1.25rem;
  }
  
  .question-card {
    padding: 1rem;
  }
  
  .question-text {
    font-size: 1rem;
  }
}

/* ===== ACCESSIBILITY ===== */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ===== FOCUS STATES ===== */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  .site-header,
  .site-footer,
  .search-form {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .giant-eight,
  .error-number {
    color: black;
    text-shadow: none;
  }
}

/* ===== GENIUS LOADING ANIMATION ===== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.loading-content {
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading-eight {
  font-size: 15rem;
  font-weight: 900;
  font-family: 'Impact', 'Arial Black', 'Helvetica Bold', sans-serif;
  color: #ffffff;
  margin-bottom: 2rem;
  animation: geniusSpin 2s ease-in-out infinite;
  text-shadow: 0 0 50px rgba(255, 255, 255, 0.8);
  letter-spacing: -0.05em;
}

@keyframes geniusSpin {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 1;
  }
  25% {
    transform: rotate(90deg) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: rotate(180deg) scale(0.8);
    opacity: 1;
  }
  75% {
    transform: rotate(270deg) scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 1;
  }
}

.loading-text {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: pulse 1.5s ease-in-out infinite;
}

.loading-subtext {
  font-size: 1rem;
  color: #cccccc;
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.loading-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.loading-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffffff;
  border-radius: 50%;
  animation: particleFloat 3s ease-in-out infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* ===== SEARCH BUTTON LOADING STATES ===== */
.search-button.loading,
.header-search-button.loading {
  pointer-events: none;
}

.search-button.loading svg,
.header-search-button.loading svg {
  animation: buttonSpin 1s linear infinite;
}

@keyframes buttonSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===== RESPONSIVE ANSWER PAGES ===== */
@media (max-width: 768px) {
  .answer {
    padding: 1rem 15px;
  }
  
  .answer-content {
    padding: 1.5rem;
  }
  
  .answer h1 {
    font-size: 2rem;
  }
  
  .eight li {
    padding-left: 3rem;
  }
  
  .eight li::before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.75rem;
  }
}

/* ===== SOCIAL SHARING ===== */
.social-sharing {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-sharing h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.social-sharing p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #ffffff;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn.copy-link {
  background: #6c757d;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
