html, body {
  min-height: 100%;
  height: 100%;
  background: #262626;
  color: #E5E7EB;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1.6;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body.luna-story-body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #262626 80%, rgba(167,139,250,0.04) 100%);
  min-height: 100vh;
}

:root {
  --accent: #A78BFA;
  --bg: #262626;
  --card-bg: rgba(38,38,38,0.96);
  --card-gradient: linear-gradient(120deg, rgba(167,139,250,0.05) 0%, rgba(38,38,38,0.98) 100%);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow-lg: 0 8px 32px 0 rgba(40,30,60,0.20), 0 1.5px 4px 0 rgba(167,139,250,0.05);
  --shadow-md: 0 2px 12px 0 rgba(40,30,60,0.13);
  --shadow-sm: 0 1px 5px 0 rgba(40,30,60,0.07);
  --border: 1px solid rgba(167,139,250,0.14);
  --transition: 0.23s cubic-bezier(.6,.1,.3,1);
  --max-width: 1240px;
}

.luna-story-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover, a:focus {
  color: #fff;
}

.luna-story-header {
  background: linear-gradient(90deg, #262626 90%, rgba(167,139,250,0.07) 100%);
  box-shadow: var(--shadow-md);
  border-bottom: var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.luna-story-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px 12px 24px;
}

.luna-story-logo__img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px 0 rgba(167,139,250,0.09);
  background: var(--card-bg);
}

.luna-story-nav__list {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.luna-story-nav__item {}

.luna-story-nav__link {
  color: #E5E7EB;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.luna-story-nav__link:hover, .luna-story-nav__link:focus {
  background: rgba(167,139,250,0.13);
  color: var(--accent);
}

.luna-story-hero {
  background: linear-gradient(120deg, #262626 85%, rgba(167,139,250,0.07) 100%);
  padding: 48px 0 32px 0;
  box-shadow: var(--shadow-md);
}

.luna-story-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.luna-story-hero__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.luna-story-hero__col--left {
  gap: 18px;
}

.luna-story-hero__title {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 10px 0;
  color: #fff;
  text-shadow: 0 2px 12px rgba(167,139,250,0.08);
}

.luna-story-hero__tagline {
  font-size: 1.1rem;
  color: var(--accent);
  margin: 0 0 12px 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.luna-story-hero__desc {
  font-size: 1rem;
  color: #d1d5db;
  margin-bottom: 24px;
  max-width: 520px;
}

.luna-story-hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.luna-story-button {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: #262626;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  outline: none;
  position: relative;
  z-index: 1;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.luna-story-button--primary {
  background: linear-gradient(100deg, var(--accent) 85%, #fff 100%);
  color: #262626;
}
.luna-story-button--primary:hover, .luna-story-button--primary:focus {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 2px 16px 0 rgba(167,139,250,0.18);
}

.luna-story-button--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}
.luna-story-button--ghost:hover, .luna-story-button--ghost:focus {
  background: rgba(167,139,250,0.07);
  color: #fff;
}

.luna-story-hero__anchors {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.97rem;
}
.luna-story-hero__anchors li {
  position: relative;
  padding-left: 0;
}
.luna-story-hero__anchors li a {
  color: #c4b5fd;
  text-decoration: underline;
  transition: color var(--transition);
}
.luna-story-hero__anchors li a:hover, .luna-story-hero__anchors li a:focus {
  color: #fff;
}

.luna-story-hero__col--right {
  align-items: flex-end;
  justify-content: center;
}

.luna-story-hero__card {
  background: var(--card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  max-width: 340px;
  margin-left: auto;
  margin-right: 0;
  gap: 18px;
}

.luna-story-hero__image {
  width: 100%;
  max-width: 250px;
  max-height: 180px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 2px 16px 0 rgba(167,139,250,0.10);
  margin-bottom: 8px;
}

.luna-story-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #bdb7e6;
  font-size: 0.97rem;
  text-align: center;
}

.luna-story-main section {
  margin: 48px 0 0 0;
  padding: 0;
}

.luna-story-world {
  background: linear-gradient(115deg, #262626 90%, rgba(167,139,250,0.05) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px 0 32px 0;
}

.luna-story-world__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.luna-story-world__lead {
  color: #c7c9e4;
  margin-bottom: 30px;
  max-width: 600px;
}

.luna-story-world__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.luna-story-world__item {
  background: var(--card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.luna-story-world__item h3 {
  margin: 0 0 8px 0;
  font-size: 1.08rem;
  color: var(--accent);
  font-weight: 600;
}

.luna-story-world__item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.luna-story-world__item ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}
.luna-story-world__item ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.8;
}

.luna-story-world__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.luna-story-world__media img {
  width: 100%;
  max-width: 220px;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px 0 rgba(167,139,250,0.13);
}

.luna-story-howto {
  padding: 40px 0 32px 0;
}

.luna-story-howto__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.luna-story-howto__cols {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.luna-story-howto__col {
  background: var(--card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 22px 18px 18px 18px;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.luna-story-howto__col h3 {
  margin: 0 0 8px 0;
  font-size: 1.08rem;
  color: var(--accent);
  font-weight: 600;
}

.luna-story-howto__col ul,
.luna-story-howto__col ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.luna-story-howto__col ul li,
.luna-story-howto__col ol li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.luna-story-howto__col ul li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.8;
}

.luna-story-howto__col ol {
  counter-reset: howto;
}
.luna-story-howto__col ol li::before {
  counter-increment: howto;
  content: counter(howto) '.';
  color: var(--accent);
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.98em;
  background: none;
}

.luna-story-rhythm {
  background: linear-gradient(120deg, #262626 90%, rgba(167,139,250,0.05) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px 0 32px 0;
}

.luna-story-rhythm__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.luna-story-rhythm__list {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}
.luna-story-rhythm__list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
}
.luna-story-rhythm__list li::before {
  counter-increment: rhythm;
  content: counter(rhythm) '.';
  color: var(--accent);
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.98em;
}
.luna-story-rhythm__list {
  counter-reset: rhythm;
}

.luna-story-rhythm ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.luna-story-rhythm ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}
.luna-story-rhythm ul li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.8;
}

.luna-story-features {
  padding: 40px 0 32px 0;
}

.luna-story-features__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.luna-story-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.luna-story-features__item {
  background: var(--card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 20px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.luna-story-features__item h3 {
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 7px 0;
}

.luna-story-features__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  grid-column: span 1;
  grid-row: span 2;
  align-self: stretch;
}
.luna-story-features__media img {
  width: 100%;
  max-width: 180px;
  max-height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px 0 rgba(167,139,250,0.13);
}

.luna-story-content {
  background: linear-gradient(120deg, #262626 90%, rgba(167,139,250,0.04) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px 0 32px 0;
}

.luna-story-content__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.luna-story-content__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  margin: 0 0 28px 0;
  padding: 0;
  list-style: none;
}
.luna-story-content__list li {
  background: var(--card-gradient);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 12px 14px;
  color: #e5e7eb;
  position: relative;
  padding-left: 22px;
  margin: 0;
}
.luna-story-content__list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 8px;
  top: 16px;
  opacity: 0.7;
}

.luna-story-stats {
  display: flex;
  gap: 24px;
  color: #bcb7e4;
  font-size: 0.98rem;
  margin-top: 10px;
  flex-wrap: wrap;
}

.luna-story-screenshots {
  padding: 40px 0 32px 0;
}

.luna-story-screenshots__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.luna-story-screenshots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.luna-story-screenshot {
  background: var(--card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px 10px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.luna-story-screenshot img {
  width: 100%;
  max-width: 180px;
  max-height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px 0 rgba(167,139,250,0.09);
  margin-bottom: 8px;
  transition: transform var(--transition);
}
.luna-story-screenshot:hover img {
  transform: scale(1.03);
}
.luna-story-screenshot figcaption {
  color: #bcb7e4;
  font-size: 0.97rem;
  text-align: center;
  margin-top: 2px;
}

.luna-story-impressions {
  background: linear-gradient(120deg, #262626 90%, rgba(167,139,250,0.04) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px 0 32px 0;
}

.luna-story-impressions__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.luna-story-impressions__lead {
  color: #c7c9e4;
  margin-bottom: 18px;
  max-width: 700px;
}

.luna-story-impressions ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.luna-story-impressions ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}
.luna-story-impressions ul li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
  opacity: 0.8;
}

.luna-story-faq {
  padding: 40px 0 32px 0;
}

.luna-story-faq__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.luna-story-faq__item {
  background: var(--card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 18px 16px 12px 16px;
  margin-bottom: 18px;
}

.luna-story-faq__item h3 {
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 7px 0;
}

.luna-story-faq__item p {
  margin: 0;
  color: #e5e7eb;
}

.luna-story-reviews {
  background: linear-gradient(120deg, #262626 90%, rgba(167,139,250,0.04) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px 0 32px 0;
}

.luna-story-reviews__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.luna-story-reviews__list {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.luna-story-review {
  background: var(--card-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 16px 14px 10px 14px;
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 0;
  font-style: italic;
  color: #c7c9e4;
  position: relative;
}

.luna-story-review__who {
  display: block;
  font-size: 0.92em;
  color: var(--accent);
  font-style: normal;
  margin-top: 8px;
  font-weight: 500;
}

.luna-story-reviews__note {
  color: #bcb7e4;
  font-size: 0.98rem;
}

.luna-story-conclusion {
  padding: 40px 0 32px 0;
}

.luna-story-conclusion__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.luna-story-conclusion__text {
  color: #c7c9e4;
  margin-bottom: 18px;
  max-width: 700px;
}

.luna-story-conclusion__cta {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.luna-story-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition);
  font-size: 1rem;
}
.luna-story-link:hover, .luna-story-link:focus {
  color: #fff;
}

.luna-story-credit {
  color: #bcb7e4;
  font-size: 0.97rem;
}

.luna-story-footer {
  background: linear-gradient(90deg, #262626 90%, rgba(167,139,250,0.06) 100%);
  border-top: var(--border);
  box-shadow: 0 -2px 12px 0 rgba(167,139,250,0.06);
  margin-top: 48px;
  padding: 0;
}

.luna-story-footer__cols {
  display: flex;
  gap: 56px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 36px 0 18px 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.luna-story-footer__col {
  min-width: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.luna-story-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
  text-decoration: none;
}
.luna-story-footer__brand img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: var(--card-bg);
}

.luna-story-footer__desc {
  color: #bcb7e4;
  font-size: 0.97rem;
  margin: 0;
}

.luna-story-footer__col h4 {
  font-size: 1.02rem;
  color: var(--accent);
  margin: 0 0 6px 0;
  font-weight: 600;
}

.luna-story-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.luna-story-footer__col ul li {
  margin-bottom: 6px;
}
.luna-story-footer__col ul li a {
  color: #bcb7e4;
  font-size: 0.97rem;
  transition: color var(--transition);
}
.luna-story-footer__col ul li a:hover, .luna-story-footer__col ul li a:focus {
  color: var(--accent);
}

.luna-story-footer__bottom {
  border-top: var(--border);
  margin-top: 24px;
  padding: 14px 0 12px 0;
  text-align: center;
  color: #bcb7e4;
  font-size: 0.95rem;
}

/* Cookie banner */
.luna-story-cookie {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 32px 18px 32px;
  z-index: 999;
  max-width: 96vw;
  min-width: 260px;
  display: none;
  animation: luna-cookie-fadein 0.6s;
}
@keyframes luna-cookie-fadein {
  from { opacity: 0; transform: translateX(-50%) translateY(24px);}
  to { opacity: 1; transform: translateX(-50%) translateY(0);}
}
.luna-story-cookie__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.luna-story-cookie__actions {
  display: flex;
  gap: 12px;
}

/* Responsive */
@media (max-width: 1100px) {
  .luna-story-hero__grid,
  .luna-story-features__grid,
  .luna-story-world__grid,
  .luna-story-screenshots__grid {
    grid-template-columns: 1fr 1fr;
  }
  .luna-story-footer__cols {
    gap: 26px;
  }
  .luna-story-content__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .luna-story-header__inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 12px 10px 12px;
  }
  .luna-story-nav__list {
    gap: 10px;
    flex-wrap: wrap;
  }
  .luna-story-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 12px;
  }
  .luna-story-hero__col--right {
    align-items: center;
  }
  .luna-story-hero__card {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 340px;
  }
  .luna-story-world__grid,
  .luna-story-features__grid,
  .luna-story-screenshots__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .luna-story-howto__cols {
    flex-direction: column;
    gap: 18px;
  }
  .luna-story-footer__cols {
    flex-direction: column;
    gap: 18px;
    padding: 24px 0 12px 0;
  }
  .luna-story-reviews__list {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .luna-story-container {
    padding: 0 8px;
  }
  .luna-story-header__inner {
    padding: 12px 4px 8px 4px;
  }
  .luna-story-hero {
    padding: 28px 0 18px 0;
  }
  .luna-story-hero__title {
    font-size: 1.3rem;
  }
  .luna-story-hero__desc {
    font-size: 0.98rem;
  }
  .luna-story-hero__actions {
    flex-direction: column;
    gap: 10px;
  }
  .luna-story-hero__card {
    padding: 14px 8px 10px 8px;
    max-width: 100%;
  }
  .luna-story-hero__image {
    max-width: 100%;
    max-height: 120px;
  }
  .luna-story-world,
  .luna-story-rhythm,
  .luna-story-content,
  .luna-story-impressions,
  .luna-story-reviews {
    padding: 18px 0 10px 0;
    border-radius: var(--radius-md);
  }
  .luna-story-world__item,
  .luna-story-howto__col,
  .luna-story-features__item,
  .luna-story-faq__item,
  .luna-story-review {
    padding: 12px 8px 8px 8px;
    border-radius: var(--radius-sm);
  }
  .luna-story-footer__cols {
    padding: 16px 0 6px 0;
  }
  .luna-story-footer__brand img {
    width: 24px;
    height: 24px;
  }
  .luna-story-cookie {
    padding: 12px 10px 10px 10px;
    border-radius: var(--radius-md);
    bottom: 12px;
  }
}

/* Hide scrollbars for a cleaner look */
body, html {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #232323;
}
body::-webkit-scrollbar {
  width: 7px;
  background: #232323;
}
body::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
  opacity: 0.5;
}

/* Selection color */
::selection {
  background: var(--accent);
  color: #232323;
}