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

body {
  font-family: 'Inter', sans-serif;
  background: #f0f4fc;
  color: #0a1a2e;
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #0a1a2e;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #c9922b;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
}

.navbar .logo span {
  color: #c9922b;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: #b7ccf0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #c9922b;
}

.nav-cta {
  background: #c9922b;
  color: white;
  border: none;
  padding: 8px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.25s;
}

.nav-cta:hover {
  background: #dba33a;
  transform: scale(1.03);
}

/* ===== SECTIONS ===== */
.section {
  padding: 60px 0;
}

.section-hero {
  padding: 80px 0 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1 1 50%;
}

.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0a1a2e;
}

.hero-text h1 span {
  color: #c9922b;
}

.hero-text p {
  font-size: 1.15rem;
  color: #2c405c;
  max-width: 500px;
  margin-top: 20px;
  margin-bottom: 32px;
}

.btn-primary {
  background: #0a1a2e;
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.25s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: #1a2f4a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 26, 46, 0.2);
}

.btn-primary.amber {
  background: #c9922b;
  box-shadow: 0 4px 20px rgba(201, 146, 43, 0.3);
}

.btn-primary.amber:hover {
  background: #dba33a;
  box-shadow: 0 8px 28px rgba(201, 146, 43, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #0a1a2e;
  color: #0a1a2e;
  padding: 12px 32px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.25s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: #0a1a2e;
  color: white;
}

.btn-secondary.amber-border {
  border-color: #c9922b;
  color: #c9922b;
}

.btn-secondary.amber-border:hover {
  background: #c9922b;
  color: white;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ===== FILTER & BENTO ===== */
.section-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #0a1a2e;
  margin-bottom: 24px;
}

.section-title span {
  color: #c9922b;
}

.filter-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #d0dcec;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a2f4a;
  cursor: pointer;
  transition: 0.25s ease;
}

.filter-btn.active {
  background: #0a1a2e;
  color: white;
  border-color: #c9922b;
  box-shadow: 0 4px 12px rgba(201, 146, 43, 0.2);
}

.filter-btn:hover {
  border-color: #c9922b;
  transform: translateY(-1px);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
  transition: gap 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  margin: 24px 0;
}

.bento-grid.active {
  gap: 24px;
}

.bento-item {
  background: white;
  border-radius: 24px;
  padding: 28px 20px;
  box-shadow: 0 4px 16px rgba(10, 26, 46, 0.04);
  border: 1px solid #e8edf5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 140px;
}

.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 26, 46, 0.08);
  border-color: #c9922b;
}

.bento-item:nth-child(1) { grid-column: span 2; }
.bento-item:nth-child(2) { grid-column: span 1; }
.bento-item:nth-child(3) { grid-column: span 1; }
.bento-item:nth-child(4) { grid-column: span 1; }
.bento-item:nth-child(5) { grid-column: span 1; }
.bento-item:nth-child(6) { grid-column: span 2; }

.bento-item h3 {
  font-weight: 600;
  font-size: 1.1rem;
  color: #0a1a2e;
  margin-bottom: 6px;
}

.bento-item p {
  color: #4a6080;
  font-size: 0.95rem;
}

.bento-item .badge {
  display: inline-block;
  background: rgba(201, 146, 43, 0.12);
  color: #c9922b;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 40px;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ===== SPLIT BLUEPRINT ===== */
.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 20px 0;
}

.split-left {
  flex: 1 1 35%;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.split-left h2 {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0a1a2e;
}

.split-left h2 span {
  color: #c9922b;
}

.split-right {
  flex: 1 1 55%;
}

.value-pillar {
  padding: 28px 0;
  border-bottom: 1px solid #e0e8f2;
}

.value-pillar:last-child {
  border-bottom: none;
}

.value-pillar h3 {
  font-weight: 600;
  font-size: 1.4rem;
  color: #0a1a2e;
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-pillar h3 .icon {
  color: #c9922b;
  font-size: 1.8rem;
}

.value-pillar p {
  color: #4a6080;
  margin-top: 4px;
  font-size: 1rem;
}

/* ===== TIMELINE ===== */
.timeline {
  background: white;
  padding: 40px 32px;
  border-radius: 40px;
  box-shadow: 0 8px 32px rgba(10, 26, 46, 0.04);
  border: 1px solid #e8edf5;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #ecf1f8;
  cursor: pointer;
  transition: 0.2s;
}

.timeline-step:last-child {
  border-bottom: none;
}

.timeline-step:hover {
  padding-left: 8px;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 20px;
  background: #d0dcec;
  flex-shrink: 0;
  transition: 0.3s;
}

.timeline-step.active .timeline-dot {
  background: #c9922b;
  box-shadow: 0 0 0 6px rgba(201, 146, 43, 0.15);
}

.timeline-step.active strong {
  color: #c9922b;
}

.timeline-step strong {
  font-weight: 600;
  color: #0a1a2e;
}

.timeline-step div {
  font-size: 0.95rem;
  color: #4a6080;
}

/* ===== CTA + FOOTER ===== */
.cta-footer-wrapper {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  border-radius: 40px 40px 0 0;
  background: #0a1a2e;
  color: white;
}

.cta-block {
  padding: 80px 48px 64px;
  background: #0a1a2e;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: transform 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-block h2 {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto 16px;
  color: white;
}

.cta-block h2 span {
  color: #c9922b;
}

.cta-block p {
  font-size: 1.1rem;
  color: #b7ccf0;
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: #c9922b;
  color: white;
  border: none;
  padding: 14px 44px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 4px 20px rgba(201, 146, 43, 0.3);
}

.btn-cta-primary:hover {
  background: #dba33a;
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(201, 146, 43, 0.4);
}

.btn-cta-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #d0def5;
  padding: 14px 32px;
  border-radius: 60px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #c9922b;
  color: white;
}

.professional-footer {
  background: #0f2038;
  padding: 48px 40px 24px;
  position: relative;
  z-index: 1;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1.2fr 1.4fr;
  gap: 40px 28px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #c9922b;
  margin-bottom: 18px;
}

.footer-col p, .footer-col a {
  color: #b7ccf0;
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #c9922b;
  padding-left: 4px;
}

.brand-mission {
  margin: 12px 0 16px;
  font-size: 0.95rem;
  color: #b7ccf0;
  max-width: 260px;
}

.trust-tag {
  display: inline-block;
  background: rgba(201, 146, 43, 0.12);
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.75rem;
  color: #c9922b;
  border: 1px solid rgba(201, 146, 43, 0.15);
}

.footer-address {
  font-style: normal;
  line-height: 1.7;
  color: #b7ccf0;
}

.footer-address strong {
  color: white;
  font-weight: 500;
}

.footer-utility {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: #95aecf;
}

.footer-utility-links {
  display: flex;
  gap: 24px;
}

.footer-utility-links a {
  color: #95aecf;
  text-decoration: none;
  transition: 0.2s;
}

.footer-utility-links a:hover {
  color: #c9922b;
}

/* ===== MODAL / POPUP ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 46, 0.7);
  backdrop-filter: blur(6px);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: white;
  padding: 48px 40px;
  border-radius: 32px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: slideUp 0.3s ease;
}

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

.modal h3 {
  font-size: 1.8rem;
  color: #0a1a2e;
  margin-bottom: 8px;
}

.modal h3 span {
  color: #c9922b;
}

.modal p {
  color: #4a6080;
  margin-bottom: 24px;
}

.modal input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e8f2;
  border-radius: 12px;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: 0.2s;
  font-family: 'Inter', sans-serif;
}

.modal input:focus {
  outline: none;
  border-color: #c9922b;
}

.modal .btn-submit {
  width: 100%;
  background: #c9922b;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.25s;
}

.modal .btn-submit:hover {
  background: #dba33a;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #95aecf;
  transition: 0.2s;
  background: none;
  border: none;
}

.modal-close:hover {
  color: #0a1a2e;
}

/* ===== HERO LAUNCH STAGE ===== */
.hero-launch-stage {
  position: relative;
  width: 100%;
  height: 545px;
  max-width: 500px;
  margin: 0 auto;
  background: radial-gradient(circle at 50% 70%, #111827 0%, #070a12 90%);
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(7, 10, 18, 0.15), inset 0 1px 0px rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-launch-stage:hover {
  transform: scale(1.02);
  box-shadow: 0 40px 80px -15px rgba(7, 10, 18, 0.25);
}

.hero-launch-stage.launch-animation {
  animation: launchPulse 0.8s ease forwards;
}

@keyframes launchPulse {
  0% { transform: scale(1); }
  30% { transform: scale(1.08); box-shadow: 0 0 60px rgba(201, 146, 43, 0.4); }
  60% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

#spaceCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.rocket-assembly {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-40px);
  animation: spaceSuspension 3s ease-in-out infinite alternate, activeEngineTremor 0.05s linear infinite;
}

.rocket-chassis {
  width: 90px;
  height: 140px;
  filter: drop-shadow(0 0 25px rgba(217, 119, 6, 0.4));
}

.rocket-chassis .hull {
  fill: #ffffff;
  stroke: rgba(0, 0, 0, 0.15);
  stroke-width: 1;
}

.rocket-chassis .fins {
  fill: #1f2937;
}

.rocket-chassis .glass {
  fill: #38bdf8;
}

.growth-capsule {
  position: absolute;
  background: rgba(17, 24, 39, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #f3f4f6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
}

.growth-capsule span.val {
  color: #fbbf24;
  margin-left: 0.4rem;
}

.capsule-left {
  top: 18%;
  left: 8%;
  animation: floatWidgetX 4.5s ease-in-out infinite alternate;
  border-left: 3px solid #fbbf24;
  pointer-events: auto;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.capsule-left:hover {
  background: rgba(201, 146, 43, 0.3);
  transform: scale(1.05);
}

.capsule-right {
  bottom: 40%;
  right: 8%;
  animation: floatWidgetY 5s ease-in-out infinite alternate;
  border-left: 3px solid #10b981;
}

@keyframes spaceSuspension {
  0% { transform: translateY(-20px); }
  100% { transform: translateY(-40px); }
}

@keyframes activeEngineTremor {
  0% { transform: translateY(var(--tw-translate-y)) translate(0.3px, 0.3px); }
  100% { transform: translateY(var(--tw-translate-y)) translate(-0.3px, -0.3px); }
}

@keyframes floatWidgetX {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes floatWidgetY {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(18px) rotate(-1deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .cta-block h2 {
    font-size: 2.2rem;
  }
  .hero-text h1 {
    font-size: 2.6rem;
  }
  .navbar {
    padding: 12px 20px;
  }
  .nav-links {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cta-block {
    padding: 56px 24px 40px;
  }
  .cta-block h2 {
    font-size: 1.8rem;
  }
  .split-left {
    position: static;
  }
  .section-hero {
    padding: 40px 0 30px;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .navbar .logo {
    font-size: 1.2rem;
  }
  .nav-links {
    gap: 12px;
  }
  .nav-links a {
    font-size: 0.85rem;
  }
  .bento-grid {
    grid-template-columns: 1fr !important;
  }
  .bento-item:nth-child(1),
  .bento-item:nth-child(6) {
    grid-column: span 1;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .modal {
    padding: 32px 24px;
  }
  .hero-launch-stage {
    height: 420px;
  }
  .capsule-left {
    left: 4%;
    top: 10%;
  }
  .capsule-right {
    right: 4%;
    bottom: 25%;
  }
}

/* Add these new styles and update existing ones */

/* ===== ROCKET LAUNCH ANIMATION ===== */
.hero-launch-stage {
  position: relative;
  width: 100%;
  height: 545px;
  max-width: 500px;
  margin: 0 auto;
  background: radial-gradient(circle at 50% 70%, #111827 0%, #070a12 90%);
  border-radius: 24px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(7, 10, 18, 0.15), inset 0 1px 0px rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-launch-stage:hover {
  transform: scale(1.02);
  box-shadow: 0 40px 80px -15px rgba(7, 10, 18, 0.25);
}

/* Rocket shivering animation */
.rocket-assembly.shivering {
  animation: shiver 0.3s ease-in-out 3 !important;
}

@keyframes shiver {
  0% { transform: translateY(-40px) rotate(0deg) translateX(0); }
  25% { transform: translateY(-45px) rotate(-3deg) translateX(-5px); }
  50% { transform: translateY(-35px) rotate(3deg) translateX(5px); }
  75% { transform: translateY(-45px) rotate(-2deg) translateX(-3px); }
  100% { transform: translateY(-40px) rotate(0deg) translateX(0); }
}

/* Rocket launch upward animation */
.rocket-assembly.launching {
  animation: launchUp 0.8s ease-in forwards !important;
}

@keyframes launchUp {
  0% { 
    transform: translateY(-40px) scale(1);
    opacity: 1;
  }
  30% { 
    transform: translateY(-120px) scale(1.1);
    opacity: 1;
  }
  100% { 
    transform: translateY(-400px) scale(0.8);
    opacity: 0;
  }
}

/* Stage flash on launch */
.hero-launch-stage.launch-flash {
  animation: flashBang 0.5s ease forwards;
}

@keyframes flashBang {
  0% { 
    box-shadow: 0 0 0px rgba(201, 146, 43, 0);
  }
  30% { 
    box-shadow: 0 0 80px rgba(201, 146, 43, 0.8), 0 0 150px rgba(255, 200, 50, 0.4);
  }
  100% { 
    box-shadow: 0 0 0px rgba(201, 146, 43, 0);
  }
}

/* Smoke/particle burst effect */
.smoke-burst {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(200, 180, 150, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.smoke-burst.active {
  animation: smokeExpand 1s ease-out forwards;
}

@keyframes smokeExpand {
  0% { 
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
  }
  30% { 
    opacity: 0.8;
    transform: translateX(-50%) scale(1.5);
  }
  100% { 
    opacity: 0;
    transform: translateX(-50%) scale(3);
  }
}

/* Trail lines behind rocket */
.trail-line {
  position: absolute;
  width: 2px;
  background: linear-gradient(to top, rgba(255, 200, 50, 0.8), transparent);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

.trail-line.active {
  animation: trailRise 0.8s ease-out forwards;
}

@keyframes trailRise {
  0% { 
    opacity: 1;
    height: 20px;
    bottom: 30%;
  }
  100% { 
    opacity: 0;
    height: 200px;
    bottom: 70%;
  }
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 600px) {
  .hero-launch-stage {
    height: 420px;
  }
  .capsule-left {
    left: 4%;
    top: 10%;
  }
  .capsule-right {
    right: 4%;
    bottom: 25%;
  }
}

/* ===== KEEP ALL OTHER STYLES FROM BEFORE ===== */
/* (Include all the previous styles here - navbar, sections, bento, footer, modal, etc.) */




/* ===== CUSTOM NOTIFICATION (Toast) ===== */
.custom-notification {
  position: fixed;
  top: 30px;
  right: 30px;
  padding: 18px 28px;
  border-radius: 16px;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  z-index: 9999;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: slideInRight 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.custom-notification.success {
  background: linear-gradient(135deg, #0a1a2e 0%, #1a3a5a 100%);
  border-left: 5px solid #c9922b;
}

.custom-notification.error {
  background: linear-gradient(135deg, #2e0a0a 0%, #5a1a1a 100%);
  border-left: 5px solid #ef4444;
}

.custom-notification button {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 6px;
  border-radius: 8px;
  transition: 0.2s;
  margin-left: auto;
  line-height: 1;
}

.custom-notification button:hover {
  background: rgba(255, 255, 255, 0.2);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile responsive notification */
@media (max-width: 600px) {
  .custom-notification {
    top: 20px;
    right: 20px;
    left: 20px;
    max-width: none;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
}