@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Ultra-Premium Color Palette */
  --bg-primary: #05050a;      /* Deep obsidian black with slight violet tint */
  --bg-secondary: #090911;    /* Deep cosmic navy */
  --bg-card: rgba(13, 13, 25, 0.35); /* Translucent dark glass */
  
  --text-primary: #f8fafc;    /* Crisp off-white */
  --text-secondary: #cbd5e1;  /* Soft cool gray */
  --text-muted: #64748b;      /* Slate gray */
  
  /* Cyber Lights (Apple-like Neon details) */
  --accent-blue: #38bdf8;     /* Cyber Sky Blue */
  --accent-purple: #a855f7;   /* Space Purple */
  --accent-cyan: #22d3ee;     /* Electro Cyan */
  --accent-pink: #ec4899;     /* Hot Neon Pink */
  
  /* Borders and Blurs */
  --border-color: rgba(255, 255, 255, 0.04);
  --border-hover: rgba(56, 189, 248, 0.35);
  --glass-bg: rgba(5, 5, 10, 0.75);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: rgba(0, 0, 0, 0.7);

  /* Fonts */
  --font-sans: 'Inter', sans-serif;
  --font-title: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --max-width: 1100px;
  --header-height: 72px;
}

/* Base Settings */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Cosmic Space Tech Background Grid & Glowing Orbs */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(56, 189, 248, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.012) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center top;
  z-index: -3;
  pointer-events: none;
}

/* Atmospheric Glow Background Elements */
.ambient-glow-1 {
  position: fixed;
  top: -15%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  z-index: -2;
  pointer-events: none;
  filter: blur(80px);
}

.ambient-glow-2 {
  position: fixed;
  bottom: -10%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
  z-index: -2;
  pointer-events: none;
  filter: blur(80px);
}

.ambient-glow-3 {
  position: fixed;
  top: 40%;
  left: 45%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.05) 0%, transparent 70%);
  z-index: -2;
  pointer-events: none;
  filter: blur(60px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

p {
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Premium Floating Header */
.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: var(--max-width);
  height: 56px;
  background: rgba(10, 10, 18, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  z-index: 100;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.header-container {
  width: 100%;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-img {
  height: 28px;
  width: 28px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-link:hover .logo-img {
  transform: rotate(-12deg) scale(1.1);
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-btn {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.15);
}

.nav-btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.nav-btn-primary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

/* Footer Section */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  background: rgba(5, 5, 10, 0.9);
  padding: 4rem 1.5rem 2rem;
  backdrop-filter: blur(12px);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-container .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.footer-container .pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.footer-container .pill:hover {
  color: var(--accent-blue);
  border-color: var(--accent-blue);
  background: rgba(56, 189, 248, 0.04);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.1);
  transform: translateY(-2px);
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Page Layout Wrappers */
.page-container {
  flex-grow: 1;
  padding-top: calc(var(--header-height) + 20px);
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Common Section Layouts */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  text-align: center;
  background: linear-gradient(to right, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  min-height: calc(100vh - 160px);
  padding: 2rem 0;
}

.hero-content {
  flex: 1.2;
}

.hero-subtitle {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-blue);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-subtitle::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 8px var(--accent-blue), 0 0 15px var(--accent-blue);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-blue) 75%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 580px;
  color: var(--text-secondary);
}

.hero-cta {
  display: flex;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
  color: #000000;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.hero-image-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0.8;
}

.hero-img-wrapper {
  position: relative;
  border-radius: 30px;
  width: 270px;
  height: 330px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.35), rgba(168, 85, 247, 0.35));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.hero-img-wrapper:hover {
  transform: rotate(0deg) scale(1.03);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  background-color: var(--bg-primary);
}

/* About Section */
.about-section {
  border-top: 1px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.about-sidebar {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.sidebar-title {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.tech-stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tech-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.tech-badge:hover {
  color: var(--accent-blue);
  border-color: var(--accent-blue);
  background: rgba(56, 189, 248, 0.02);
}

/* Grid & Cards (Blog List) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-blue);
  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.08);
}

.card-thumbnail-container {
  height: 180px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.05), rgba(168, 85, 247, 0.05));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.blog-card:hover .card-thumbnail-img {
  transform: scale(1.05);
  opacity: 0.95;
}

.card-thumbnail-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
  opacity: 0.25;
  filter: blur(15px);
  transition: transform 0.5s ease;
}

.blog-card:hover .card-thumbnail-glow {
  transform: scale(1.2);
}

.card-topic {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
  background: rgba(5, 5, 10, 0.85);
  border: 1px solid var(--border-color);
  color: var(--accent-blue);
  backdrop-filter: blur(4px);
}

.card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.card-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.card-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
}

.card-link i {
  transition: transform 0.2s ease;
}

.blog-card:hover .card-link i {
  transform: translateX(4px);
}

/* Individual Blog Page Styles */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 3rem;
  padding: 3rem 0;
}

.blog-post-content {
  max-width: 780px;
}

.post-header {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.post-category {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-blue);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.post-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  background: linear-gradient(to right, #ffffff 40%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.post-author {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.post-author-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--accent-blue);
}

.post-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.post-body p {
  margin-bottom: 1.5rem;
}

.post-body h2 {
  font-size: 1.6rem;
  color: #ffffff;
  margin: 2.5rem 0 1.25rem;
}

.post-body h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin: 1.75rem 0 0.85rem;
}

.post-body blockquote {
  border-left: 3px solid var(--accent-blue);
  background: rgba(56, 189, 248, 0.02);
  padding: 1.25rem 1.75rem;
  border-radius: 0 10px 10px 0;
  margin: 1.75rem 0;
  font-style: italic;
}

.post-body blockquote p {
  margin-bottom: 0;
}

.post-body code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
  color: var(--accent-blue);
}

.post-body pre {
  background: #06060c;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.75rem 0;
}

.post-body pre code {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: #e2e8f0;
}

/* Monetization Slots */
.ad-slot-sidebar {
  position: sticky;
  top: 96px;
  background: var(--bg-card);
  border: 1px dashed rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.ad-slot-sidebar:hover {
  border-color: rgba(56, 189, 248, 0.2);
}

.ad-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.ad-placeholder-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.ad-slot-inline {
  background: var(--bg-card);
  border: 1px dashed rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.25rem;
  margin: 2.5rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.ad-slot-inline:hover {
  border-color: rgba(56, 189, 248, 0.2);
}

/* Contact Page Form */
.contact-container {
  max-width: 540px;
  margin: 3rem auto;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

.contact-title {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  background: linear-gradient(to right, #ffffff 40%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  background: rgba(5, 5, 10, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.8rem 1.1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.12);
  background: rgba(5, 5, 10, 0.7);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  margin-top: 0.75rem;
}

.form-status {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  text-align: center;
  padding: 0.6rem;
  border-radius: 6px;
  display: none;
}

.form-status.success {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: #f87171;
}

/* Category Filter and Search */
.blog-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.search-wrapper {
  position: relative;
  max-width: 280px;
  width: 100%;
}

.search-input {
  width: 100%;
  padding-left: 2.5rem;
}

.search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.8rem;
}

.filter-pills {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.filter-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
}

.filter-pill.active {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.filter-pill:hover:not(.active) {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-section {
    gap: 2rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .blog-post-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ad-slot-sidebar {
    position: static;
    min-height: 120px;
    width: 100%;
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    padding-top: 4rem;
    gap: 2rem;
  }
  .hero-img-wrapper {
    width: 220px;
    height: 270px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-cta {
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .nav-menu {
    display: none; 
  }
  .blog-filters {
    flex-direction: column;
    align-items: stretch;
  }
  .search-wrapper {
    max-width: 100%;
  }
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-8px) rotate(2.5deg); }
  100% { transform: translateY(0px) rotate(2deg); }
}

.hero-img-wrapper {
  animation: float 5s ease-in-out infinite;
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

.slide-up {
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
