/* Import Tailwind-like utilities */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
    "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Utility Classes */
.min-h-screen {
  min-height: 100vh;
}
.bg-black {
  background-color: #000;
}
.bg-white {
  background-color: #fff;
}
.text-white {
  color: #fff;
}
.text-gray-300 {
  color: #d1d5db;
}
.text-gray-600 {
  color: #6b7280;
}
.text-gray-700 {
  color: #374151;
}
.text-gray-900 {
  color: #111827;
}
.text-blue-600 {
  color: #2563eb;
}
.text-green-500 {
  color: #10b981;
}
.text-red-600 {
  color: #dc2626;
}

.bg-blue-100 {
  background-color: #dbeafe;
}
.bg-blue-600 {
  background-color: #2563eb;
}
.bg-blue-700 {
  background-color: #1d4ed8;
}
.bg-red-50 {
  background-color: #fef2f2;
}
.bg-gray-50 {
  background-color: #f9fafb;
}
.bg-transparent {
  background-color: transparent;
}

.border {
  border-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-gray-200 {
  border-color: #e5e7eb;
}
.border-gray-300 {
  border-color: #d1d5db;
}
.border-gray-800 {
  border-color: #1f2937;
}
.border-red-200 {
  border-color: #fecaca;
}

.rounded {
  border-radius: 0.25rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-full {
  border-radius: 9999px;
}

.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.m-4 {
  margin: 1rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-6 {
  margin-top: 1.5rem;
}

.w-3 {
  width: 0.75rem;
}
.w-4 {
  width: 1rem;
}
.w-6 {
  width: 1.5rem;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-full {
  width: 100%;
}
.h-3 {
  height: 0.75rem;
}
.h-4 {
  height: 1rem;
}
.h-6 {
  height: 1.5rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}

.max-w-md {
  max-width: 28rem;
}
.max-w-2xl {
  max-width: 42rem;
}

.flex {
  display: flex;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}

.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.auto-rows-fr {
  grid-auto-rows: 1fr;
}

.space-x-2 > * + * {
  margin-left: 0.5rem;
}
.space-y-2 > * + * {
  margin-top: 0.5rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}
.block {
  display: block;
}
.inline {
  display: inline;
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
.top-0 {
  top: 0;
}
.left-3 {
  left: 0.75rem;
}
.right-3 {
  right: 0.75rem;
}
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}

.overflow-hidden {
  overflow: hidden;
}
.pointer-events-none {
  pointer-events: none;
}

.transform {
  transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0))
    skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300 {
  transition-duration: 300ms;
}

.hover\:bg-blue-700:hover {
  background-color: #1d4ed8;
}
.hover\:bg-gray-50:hover {
  background-color: #f9fafb;
}
.hover\:text-gray-300:hover {
  color: #d1d5db;
}
.hover\:text-gray-600:hover {
  color: #6b7280;
}
.hover\:text-blue-600:hover {
  color: #2563eb;
}
.hover\:border-blue-500:hover {
  border-color: #3b82f6;
}
.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
}
.hover\:shadow-2xl:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-2:focus {
  box-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
}
.focus\:ring-blue-500:focus {
  --tw-ring-color: #3b82f6;
}
.focus\:border-blue-500:focus {
  border-color: #3b82f6;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Custom Styles */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.bg-white\/95 {
  background-color: rgba(255, 255, 255, 0.95);
}

.bg-black\/50 {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Cool UFO Loading Animation */
.ufo-loader {
  position: relative;
  width: 80px;
  height: 40px;
  animation: ufo-hover 2s ease-in-out infinite alternate;
}

.ufo-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  background: linear-gradient(ellipse, #888 0%, #bbb 50%, #888 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 0 20px rgba(187, 187, 187, 0.5);
}

.ufo-dome {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 20px;
  background: linear-gradient(ellipse, #aaa 0%, #ddd 50%, #aaa 100%);
  border-radius: 50%;
  animation: ufo-glow 1.5s ease-in-out infinite alternate;
}

.ufo-beam {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 30px solid rgba(0, 255, 255, 0.3);
  animation: ufo-beam-pulse 1s ease-in-out infinite alternate;
}

.ufo-particles {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 30px;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00ffff;
  border-radius: 50%;
  animation: particle-float 2s ease-in-out infinite;
}

.particle:nth-child(1) {
  left: 10px;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 25px;
  animation-delay: 0.4s;
}

.particle:nth-child(3) {
  left: 40px;
  animation-delay: 0.8s;
}

.particle:nth-child(4) {
  left: 55px;
  animation-delay: 1.2s;
}

.particle:nth-child(5) {
  left: 70px;
  animation-delay: 1.6s;
}

@keyframes ufo-hover {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes ufo-glow {
  0% {
    box-shadow: 0 0 10px rgba(221, 221, 221, 0.5);
  }
  100% {
    box-shadow: 0 0 20px rgba(221, 221, 221, 0.8), 0 0 30px rgba(0, 255, 255, 0.3);
  }
}

@keyframes ufo-beam-pulse {
  0% {
    opacity: 0.3;
    transform: translateX(-50%) scaleX(0.8);
  }
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scaleX(1.2);
  }
}

@keyframes particle-float {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  50% {
    transform: translateY(-15px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-30px);
    opacity: 0;
  }
}

/* Smooth animations for new posts */
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

.animate-fade-in {
  animation: fade-in 0.8s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

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

@keyframes bounce {
  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* Line clamp utilities */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Stars Animation - Reduced by 45% */
.stars,
.stars2,
.stars3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.stars {
  background-image: radial-gradient(1.65px 1.65px at 20px 30px, #fff, transparent),
    radial-gradient(2.2px 2.2px at 40px 70px, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1.1px 1.1px at 90px 40px, #fff, transparent),
    radial-gradient(1.65px 1.65px at 130px 80px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(2.2px 2.2px at 160px 30px, #eee, transparent),
    radial-gradient(1.1px 1.1px at 200px 90px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.65px 1.65px at 50px 120px, #fff, transparent),
    radial-gradient(1.1px 1.1px at 180px 10px, rgba(255, 255, 255, 0.9), transparent);
  background-repeat: repeat;
  background-size: 250px 150px;
  animation: zoom 25s infinite;
  opacity: 0.8;
}

.stars2 {
  background-image: radial-gradient(1.1px 1.1px at 40px 60px, #fff, transparent),
    radial-gradient(1.65px 1.65px at 120px 10px, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1.1px 1.1px at 170px 50px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.65px 1.65px at 60px 90px, #eee, transparent),
    radial-gradient(1.1px 1.1px at 10px 20px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(2.2px 2.2px at 100px 30px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1.1px 1.1px at 30px 140px, #fff, transparent),
    radial-gradient(1.65px 1.65px at 190px 80px, rgba(255, 255, 255, 0.8), transparent);
  background-repeat: repeat;
  background-size: 220px 130px;
  animation: zoom 15s infinite;
  opacity: 0.7;
}

.stars3 {
  background-image: radial-gradient(1.1px 1.1px at 10px 10px, #fff, transparent),
    radial-gradient(1.65px 1.65px at 150px 60px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.1px 1.1px at 80px 80px, #ddd, transparent),
    radial-gradient(2.2px 2.2px at 190px 20px, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1.65px 1.65px at 70px 110px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1.1px 1.1px at 140px 100px, #fff, transparent),
    radial-gradient(1.65px 1.65px at 25px 70px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1.1px 1.1px at 200px 140px, rgba(255, 255, 255, 0.7), transparent);
  background-repeat: repeat;
  background-size: 280px 160px;
  animation: zoom 20s infinite;
  opacity: 0.6;
}

@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  25% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.8;
    transform: scale(1);
  }
  75% {
    opacity: 0.6;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

/* Add twinkling effect */
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.stars::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(1.1px 1.1px at 30px 50px, #fff, transparent),
    radial-gradient(1.65px 1.65px at 80px 20px, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1.1px 1.1px at 150px 90px, #fff, transparent),
    radial-gradient(1.65px 1.65px at 200px 40px, rgba(255, 255, 255, 0.9), transparent);
  background-repeat: repeat;
  background-size: 300px 200px;
  animation: twinkle 3s infinite;
}

.stars2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(1.1px 1.1px at 60px 80px, #fff, transparent),
    radial-gradient(1.65px 1.65px at 110px 30px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.1px 1.1px at 170px 120px, #fff, transparent),
    radial-gradient(1.65px 1.65px at 20px 100px, rgba(255, 255, 255, 0.8), transparent);
  background-repeat: repeat;
  background-size: 280px 180px;
  animation: twinkle 4s infinite;
}

.stars3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(1.1px 1.1px at 90px 60px, #fff, transparent),
    radial-gradient(1.65px 1.65px at 140px 10px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1.1px 1.1px at 40px 130px, #fff, transparent),
    radial-gradient(2.2px 2.2px at 180px 70px, rgba(255, 255, 255, 0.9), transparent);
  background-repeat: repeat;
  background-size: 320px 220px;
  animation: twinkle 5s infinite;
}

/* Constellation Lines */
.constellation-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.3;
}

.constellation-lines::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Constellation 1 - Big Dipper pattern */
  background-image: linear-gradient(
      45deg,
      transparent 0%,
      transparent 48%,
      rgba(255, 255, 255, 0.2) 49%,
      rgba(255, 255, 255, 0.2) 51%,
      transparent 52%,
      transparent 100%
    ),
    linear-gradient(
      135deg,
      transparent 0%,
      transparent 48%,
      rgba(255, 255, 255, 0.2) 49%,
      rgba(255, 255, 255, 0.2) 51%,
      transparent 52%,
      transparent 100%
    ),
    linear-gradient(
      90deg,
      transparent 0%,
      transparent 48%,
      rgba(255, 255, 255, 0.2) 49%,
      rgba(255, 255, 255, 0.2) 51%,
      transparent 52%,
      transparent 100%
    );
  background-size: 200px 150px, 180px 120px, 220px 160px;
  background-position: 50px 80px, 300px 200px, 600px 120px;
  background-repeat: no-repeat;
  animation: constellation-twinkle 8s ease-in-out infinite;
}

.constellation-lines::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Constellation 2 - Triangle patterns */
  background-image: linear-gradient(
      60deg,
      transparent 0%,
      transparent 48%,
      rgba(255, 255, 255, 0.15) 49%,
      rgba(255, 255, 255, 0.15) 51%,
      transparent 52%,
      transparent 100%
    ),
    linear-gradient(
      120deg,
      transparent 0%,
      transparent 48%,
      rgba(255, 255, 255, 0.15) 49%,
      rgba(255, 255, 255, 0.15) 51%,
      transparent 52%,
      transparent 100%
    ),
    linear-gradient(
      30deg,
      transparent 0%,
      transparent 48%,
      rgba(255, 255, 255, 0.15) 49%,
      rgba(255, 255, 255, 0.15) 51%,
      transparent 52%,
      transparent 100%
    );
  background-size: 150px 100px, 160px 110px, 140px 90px;
  background-position: 400px 50px, 100px 300px, 700px 250px;
  background-repeat: no-repeat;
  animation: constellation-twinkle 12s ease-in-out infinite reverse;
}

/* Additional constellation layer for more patterns */
.constellation-patterns {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.2;
  /* Cross pattern */
  background-image: linear-gradient(
      0deg,
      transparent 0%,
      transparent 48%,
      rgba(255, 255, 255, 0.1) 49%,
      rgba(255, 255, 255, 0.1) 51%,
      transparent 52%,
      transparent 100%
    ),
    linear-gradient(
      90deg,
      transparent 0%,
      transparent 48%,
      rgba(255, 255, 255, 0.1) 49%,
      rgba(255, 255, 255, 0.1) 51%,
      transparent 52%,
      transparent 100%
    ), /* Diagonal lines */
    linear-gradient(
      45deg,
      transparent 0%,
      transparent 48%,
      rgba(255, 255, 255, 0.1) 49%,
      rgba(255, 255, 255, 0.1) 51%,
      transparent 52%,
      transparent 100%
    ),
    linear-gradient(
      135deg,
      transparent 0%,
      transparent 48%,
      rgba(255, 255, 255, 0.1) 49%,
      rgba(255, 255, 255, 0.1) 51%,
      transparent 52%,
      transparent 100%
    );
  background-size: 300px 200px, 280px 180px, 250px 170px, 270px 190px;
  background-position: 200px 150px, 500px 100px, 50px 250px, 650px 180px;
  background-repeat: no-repeat;
  animation: constellation-drift 20s linear infinite;
}

@keyframes constellation-twinkle {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes constellation-drift {
  0% {
    transform: translateX(0px) translateY(0px);
  }
  25% {
    transform: translateX(10px) translateY(-5px);
  }
  50% {
    transform: translateX(-5px) translateY(10px);
  }
  75% {
    transform: translateX(5px) translateY(-8px);
  }
  100% {
    transform: translateX(0px) translateY(0px);
  }
}

/* UFO Animation */
.ufo {
  position: absolute;
  width: 30px;
  height: 15px;
  background: linear-gradient(ellipse, #666 0%, #999 50%, #666 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: ufoFly 30s linear infinite;
  opacity: 0.7;
  z-index: 1;
}

.ufo::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 8px;
  background: linear-gradient(ellipse, #888 0%, #bbb 50%, #888 100%);
  border-radius: 50%;
}

.ufo::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: radial-gradient(ellipse, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: ufoBeam 2s ease-in-out infinite alternate;
}

@keyframes ufoFly {
  0% {
    transform: translateX(-50px) translateY(20vh);
  }
  25% {
    transform: translateX(25vw) translateY(15vh);
  }
  50% {
    transform: translateX(50vw) translateY(25vh);
  }
  75% {
    transform: translateX(75vw) translateY(10vh);
  }
  100% {
    transform: translateX(calc(100vw + 50px)) translateY(20vh);
  }
}

@keyframes ufoBeam {
  0% {
    opacity: 0.2;
    transform: translateX(-50%) scaleX(0.8);
  }
  100% {
    opacity: 0.5;
    transform: translateX(-50%) scaleX(1.2);
  }
}

/* Blog Card Styles */
.blog-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
}

.blog-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-title {
  font-weight: 700 !important;
  color: #111827 !important;
  text-decoration: none !important;
  cursor: default !important;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}

.blog-title:hover,
.blog-title:focus,
.blog-title:active,
.blog-title:visited {
  color: #111827 !important;
  text-decoration: none !important;
  cursor: default !important;
  background: transparent !important;
}

/* Remove any hover effects from the title specifically */
.blog-card h3:hover,
.blog-card .blog-title:hover {
  color: #111827 !important;
  text-decoration: none !important;
  cursor: default !important;
  transform: none !important;
}

.blog-card p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-btn {
  width: 100%;
  background: transparent;
  border: 1px solid #d1d5db;
  color: #374151;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.blog-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.blog-card:hover .blog-btn {
  border-color: #3b82f6;
  color: #2563eb;
}

/* Loading Card Styles */
.loading-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.loading-placeholder {
  background: #d1d5db;
  border-radius: 0.25rem;
}

.loading-title {
  height: 1.5rem;
  margin-bottom: 0.5rem;
}

.loading-text {
  height: 1rem;
  margin-bottom: 0.5rem;
}

.loading-text.short {
  width: 75%;
}

.loading-meta {
  height: 0.75rem;
  width: 50%;
  margin-bottom: 1rem;
}

.loading-btn {
  height: 2.5rem;
}

/* Contact Info Styles */
.contact-info {
  display: flex;
  align-items: center;
}

.email-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.email-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(59, 130, 246, 0.2), 0 0 60px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.email-link::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.email-link:hover::before {
  opacity: 1;
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

/* Responsive adjustments for contact info */
@media (max-width: 768px) {
  .contact-info {
    display: none;
  }
}

@media (max-width: 1024px) {
  .email-link {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}
