:root {
  /* Colors */
  --bg-primary: #0a192f;
  --bg-secondary: #112240;
  --bg-tertiary: #233554;
  --accent: #64ffda;
  --accent-tint: rgba(100, 255, 218, 0.1);
  --text-light: #ccd6f6;
  --text-dark: #8892b0;
  --white: #e6f1ff;

  /* Typography */
  --font-main: "Inter", sans-serif;
  --font-mono: "Fira Code", monospace;

  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(2, 12, 27, 0.7);
  --shadow-md: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
  --shadow-lg: 0 20px 30px -15px rgba(2, 12, 27, 0.7);

  /* Spacing system (8px scale) */
  --space-6: 48px; /* 6 * 8px */
  --space-7: 56px; /* 7 * 8px (chosen for balanced spacing) */
  --space-8: 64px; /* 8 * 8px */

  /* Hero & sidebar spacing (use the 8px system above) */
  --side-spacing: var(
    --space-7
  ); /* distance from viewport edge to social/email */
  --hero-horizontal: var(
    --space-7
  ); /* horizontal padding for hero to balance content */
}

/* Base & Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--text-dark) var(--bg-primary);
}

body {
  background-color: var(--bg-primary);
  color: var(--text-dark);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--text-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-light);
  font-weight: 600;
  line-height: 1.1;
}
a {
  text-decoration: none;
  color: var(--accent);
  transition: var(--transition);
}
ul {
  list-style: none;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  counter-reset: section;
}

section {
  padding: 100px 0;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
}

.section-heading {
  display: flex;
  align-items: center;
  position: relative;
  margin: 10px 0 40px;
  width: 100%;
  font-size: clamp(26px, 5vw, 32px);
  white-space: nowrap;
  color: var(--text-light);
  font-weight: 700;
}
.section-heading::before {
  content: "0" counter(section) ". ";
  counter-increment: section;
  font-family: var(--font-mono);
  font-size: clamp(16px, 3vw, 20px);
  color: var(--accent);
  margin-right: 10px;
  font-weight: 400;
}
.section-heading::after {
  content: "";
  display: block;
  height: 1px;
  width: 300px;
  background-color: var(--bg-tertiary);
  margin-left: 20px;
}

/* Buttons */
.btn {
  color: var(--accent);
  background-color: transparent;
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 1rem 1.75rem;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-tint);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: -1;
}
.btn:hover::before {
  transform: translateY(0);
}
.btn:hover {
  color: var(--bg-primary);
  background-color: var(--accent);
  border-color: rgba(100, 255, 218, 0.8);
  box-shadow:
    0 0 0 1px rgba(100, 255, 218, 0.25),
    0 8px 24px rgba(100, 255, 218, 0.28);
  transform: translateY(-2px);
}
.btn-fill {
  background-color: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 0 10px rgba(100, 255, 218, 0.2);
}
.btn-fill:hover {
  background-color: transparent;
  color: var(--accent);
  border-color: rgba(100, 255, 218, 0.8);
  box-shadow:
    0 0 0 1px rgba(100, 255, 218, 0.25),
    0 8px 24px rgba(100, 255, 218, 0.28);
  transform: translateY(-2px);
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 25, 47, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  height: 80px;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2px;
}
.logo-bracket,
.logo-slash {
  color: var(--accent);
}
.logo-text {
  color: var(--text-light);
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links li {
  counter-increment: nav-item;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.nav-links a span {
  color: var(--accent);
  margin-bottom: 5px;
  font-size: 12px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 75vw;
    background-color: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    transition: 0.3s ease-in-out;
    box-shadow: -10px 0 30px -15px rgba(2, 12, 27, 0.7);
  }
  .nav-links.nav-active {
    right: 0;
  }
  .hamburger {
    display: block;
    z-index: 1001;
  }
}

/* Social Sidebars */
.social-left,
.email-right {
  position: fixed;
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.social-left {
  /* Move social icons slightly farther from the left edge using 8px scale */
  left: var(--side-spacing);
}
.email-right {
  /* Move vertical email slightly farther from the right edge using 8px scale */
  right: var(--side-spacing);
}
.social-left ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.social-left a,
.email-right a {
  padding: 10px;
  color: var(--text-light);
  font-size: 20px;
  transition: var(--transition);
}
.email-right a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  transform: translateY(-20px);
}
.social-left a:hover,
.email-right a:hover {
  color: var(--accent);
  transform: translateY(-5px);
}
.email-right a:hover {
  transform: translateY(-25px);
}
.social-left::after,
.email-right::after {
  content: "";
  display: block;
  width: 1px;
  height: 90px;
  background-color: var(--text-dark);
  margin: 20px auto 0;
}
@media (max-width: 1024px) {
  .social-left,
  .email-right {
    display: none;
  }
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /* Add symmetric horizontal padding so hero content is balanced
     between left social links and right email. Uses 8px spacing variable. */
  padding: 0 var(--hero-horizontal);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.hero-content {
  flex: 1;
  /* Internal horizontal padding for the text column (3 * 8px = 24px)
     helps text breathe without changing layout structure. */
  padding: 0 24px;
}
.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}

/* Simple Hero Image */
.hero-image-simple {
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 8px 40px rgba(2, 12, 27, 0.6),
    0 0 0 1px rgba(100, 255, 218, 0.12);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.hero-image-simple:hover {
  box-shadow:
    0 12px 50px rgba(2, 12, 27, 0.7),
    0 0 0 1px rgba(100, 255, 218, 0.25);
  transform: translateY(-4px);
}
.hero-img-clean {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.05);
  transition:
    filter 0.3s ease,
    transform 0.4s ease;
}
.hero-image-simple:hover .hero-img-clean {
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.03);
}

/* (legacy image wrapper styles removed) */

@media (max-width: 992px) {
  #hero {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    /* Keep the top spacing but also add modest horizontal padding on small screens
       so content doesn't touch screen edges (3 * 8px = 24px). */
    padding: 100px 24px 0;
  }
  .hero-content {
    /* Restore internal horizontal padding for small screens for better breathing room */
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-desc {
    margin: 20px auto 40px;
  }
  .hero-right {
    align-items: center;
    margin-bottom: 50px;
  }
  .hero-image-simple {
    width: 260px;
    height: 260px;
  }
}

/* About Section */
.about-inner {
  display: block;
}
.about-text p {
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-dark);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.stat-item {
  background: rgba(17, 34, 64, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  box-shadow: 0 8px 32px 0 rgba(2, 12, 27, 0.37);
}
.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(100, 255, 218, 0.1);
}
.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-mono);
}
.stat-text {
  font-size: 14px;
  color: var(--text-light);
}

/* Experience Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--bg-tertiary);
}
.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 50px;
}
.timeline-icon {
  position: absolute;
  left: 6px;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  z-index: 1;
}
.timeline-content {
  background: rgba(17, 34, 64, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(2, 12, 27, 0.37);
  transition: var(--transition);
}
.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(100, 255, 218, 0.1);
  border-color: var(--accent-tint);
}
.timeline-date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.timeline-title {
  font-size: 20px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 5px;
}
.timeline-org {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-style: italic;
}
.timeline-desc {
  font-size: 14px;
}

/* Skills */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.skill-card {
  background: rgba(17, 34, 64, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 8px 32px 0 rgba(2, 12, 27, 0.37);
  position: relative;
  overflow: hidden;
}
.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(100, 255, 218, 0.1);
  border-color: rgba(100, 255, 218, 0.3);
}
.skill-card:hover::before {
  width: 100%;
}
.skill-icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 20px;
}
.skill-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
}
.skill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.skill-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-light);
  background: var(--bg-primary);
  padding: 5px 10px;
  border-radius: 4px;
}

/* Projects */
.projects-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 45px;
  background: rgba(17, 34, 64, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 8px;
}
.filter-btn {
  background: none;
  border: none;
  color: var(--text-dark);
  font-family: var(--font-mono);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  padding: 8px 20px;
  border-radius: 8px;
  letter-spacing: 0.02em;
}
.filter-btn:hover {
  color: var(--text-light);
  background: rgba(100, 255, 218, 0.05);
}
.filter-btn.active {
  color: var(--bg-primary);
  background: var(--accent);
  font-weight: 600;
  box-shadow: 0 0 15px rgba(100, 255, 218, 0.3);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.project {
  background: rgba(17, 34, 64, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(2, 12, 27, 0.37);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.project:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(100, 255, 218, 0.1);
  border-color: rgba(100, 255, 218, 0.3);
}
.project-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-tertiary);
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%);
  transition: filter 0.5s;
}
.project-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(100, 255, 218, 0.06);
  z-index: 1;
  transition: 0.5s;
  pointer-events: none;
}
.project:hover .project-img img {
  filter: grayscale(0%);
}
.project:hover .project-img::after {
  background: transparent;
}

.project-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.project-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.folder-icon {
  color: var(--accent);
  font-size: 24px;
}
.project-links {
  display: flex;
  gap: 15px;
}
.project-links a {
  color: var(--text-light);
  font-size: 20px;
}
.project-links a:hover {
  color: var(--accent);
}

.project-title {
  font-size: 20px;
  margin-bottom: 10px;
}
.project-desc {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}
.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dark);
}

.desc-full {
  display: none;
}
.project-content.expanded .desc-full {
  display: inline;
}
.show-more-btn {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  cursor: pointer;
  padding: 5px 0;
  margin-bottom: 15px;
  transition: var(--transition);
}
.show-more-btn:hover {
  opacity: 0.7;
}

/* Projects GitHub CTA */
.projects-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: rgba(17, 34, 64, 0.4);
  border: 1px solid rgba(100, 255, 218, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.projects-cta:hover {
  border-color: rgba(100, 255, 218, 0.25);
  box-shadow: 0 10px 40px rgba(100, 255, 218, 0.08);
}
.projects-cta p {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.projects-cta .btn {
  padding: 1rem 2rem;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Contact */
#contact {
  max-width: 700px;
  margin: 0 auto 100px;
  text-align: center;
}
.contact-title {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light);
}
.contact-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 50px;
}
.contact-form-wrapper {
  background: rgba(17, 34, 64, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(2, 12, 27, 0.37);
  position: relative;
  text-align: left;
  transition: var(--transition);
}
.contact-form-wrapper:hover {
  border-color: rgba(100, 255, 218, 0.2);
  box-shadow: 0 15px 40px rgba(100, 255, 218, 0.1);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.form-group {
  position: relative;
  width: 100%;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--bg-tertiary);
  color: var(--text-light);
  font-family: var(--font-main);
  font-size: 16px;
  outline: none;
  transition: var(--transition);
}
.form-group textarea {
  resize: none;
}
.form-group label {
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--text-dark);
  font-size: 16px;
  pointer-events: none;
  transition: var(--transition);
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -15px;
  font-size: 13px;
  color: var(--accent);
  font-family: var(--font-mono);
}
.input-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}
.form-group input:focus ~ .input-bar,
.form-group textarea:focus ~ .input-bar {
  width: 100%;
}
.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  gap: 20px;
}
.submit-btn {
  padding: 1rem 2rem;
  font-size: 15px;
  font-family: var(--font-mono);
  border-radius: 4px;
}
.email-fallback {
  font-size: 14px;
  color: var(--text-dark);
}
.email-link {
  color: var(--accent);
  border-bottom: 1px dotted var(--accent);
  padding-bottom: 2px;
}
.email-link:hover {
  border-bottom-style: solid;
}
.form-status {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 14px;
  text-align: center;
  min-height: 20px;
  opacity: 0;
  transition: var(--transition);
}
.form-status.success {
  color: var(--accent);
  opacity: 1;
}
.form-status.error {
  color: #ff5555;
  opacity: 1;
}

@media (max-width: 650px) {
  .form-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .email-fallback {
    margin-top: 10px;
  }
}
@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-dark);
}
footer a {
  color: var(--text-dark);
  padding: 10px;
  display: inline-block;
}
footer a:hover {
  color: var(--accent);
}
.footer-socials {
  display: none;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

/* Background Particle Effect Overlay */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  background: var(--bg-primary);
}
.gradient-blob {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(100, 255, 218, 0.1) 0%,
    rgba(10, 25, 47, 0) 70%
  );
  top: -200px;
  left: -200px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
  animation: blob-float 20s infinite alternate ease-in-out;
}
.gradient-blob.two {
  top: auto;
  bottom: -200px;
  left: auto;
  right: -200px;
  background: radial-gradient(
    circle,
    rgba(23, 42, 69, 0.7) 0%,
    rgba(10, 25, 47, 0) 70%
  );
  animation: blob-float-two 25s infinite alternate ease-in-out;
}
@keyframes blob-float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(150px, 100px) scale(1.1);
  }
}
@keyframes blob-float-two {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-100px, -150px) scale(1.2);
  }
}
