﻿@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600&family=Inter+Tight:wght@500;600;700&display=swap');
:root {
    --color-pastel-blue: #94b5e7;
    --color-seafoam: #afd7cf;
    --color-washed-navy: #354966;
    --color-milky-white: #f7f7f5;
    --color-faded-black: #1a1e2c;
    --color-ghostly-purple: #bbb1d7;
    --color-cosmic-teal: #6fe4e9;
    --color-accent-orange: #ff8360;
    --color-blush-rose: #f3a1c6;
    --color-dawn-pink: #f6d9e5;
    --color-soft-lilac: #cfd3f5;

    --bg-color: #141728;
    --bg-sheen: rgba(148, 181, 231, 0.20);
    --bg-haze: rgba(111, 228, 233, 0.16);
    --surface-color: rgba(42, 48, 70, 0.55);
    --surface-highlight: rgba(243, 161, 198, 0.16);
    --text: var(--color-milky-white);
    --muted: rgba(204, 210, 233, 0.86);
    --border-soft: rgba(148, 181, 231, 0.26);
    --max-width: 1080px;
    --font-base: 'Space Grotesk', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Inter Tight', 'Segoe UI', Roboto, Arial, sans-serif;
}

:root[data-theme="day"] {
    --color-pastel-blue: #d87f4a;
    --color-seafoam: #c26a3c;
    --color-washed-navy: #f4d5b2;
    --color-milky-white: #fff9f2;
    --color-faded-black: #3f2b1f;
    --color-ghostly-purple: #b17a58;
    --color-cosmic-teal: #f0a960;
    --color-accent-orange: #ffad66;
    --color-blush-rose: #f6c099;
    --color-dawn-pink: #ffe9d2;
    --color-soft-lilac: #f6d7bb;

    --bg-color: #fdf3e6;
    --bg-sheen: rgba(255, 224, 197, 0.32);
    --bg-haze: rgba(237, 196, 150, 0.26);
    --surface-color: rgba(255, 250, 242, 0.84);
    --surface-highlight: rgba(240, 185, 145, 0.28);
    --text: #3d2a1d;
    --muted: rgba(102, 78, 60, 0.78);
    --border-soft: rgba(207, 173, 146, 0.45);
}
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg-color);
    color: var(--text);
    font-family: var(--font-base);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 12%, rgba(248, 168, 201, 0.38), transparent 55%),
        radial-gradient(circle at 80% 6%, rgba(148, 181, 231, 0.32), transparent 60%),
        radial-gradient(circle at 50% 92%, rgba(175, 215, 207, 0.2), transparent 70%),
        linear-gradient(145deg, rgba(27, 25, 39, 0.85), rgba(54, 51, 72, 0.55));
    mix-blend-mode: screen;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: -200px;
    pointer-events: none;
    background:
        radial-gradient(circle, rgba(248, 168, 201, 0.14) 0%, rgba(248, 168, 201, 0) 60%);
    filter: blur(120px);
    opacity: 0.85;
    z-index: -3;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--color-cosmic-teal);
}


header {
    background: linear-gradient(135deg, rgba(248, 168, 201, 0.22), rgba(43, 45, 51, 0.82));
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 10;
}

nav {
    margin: 0 auto;
    max-width: var(--max-width);
    padding: 1.2rem 1.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
}

nav .brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-ghostly-purple);
    font-family: var(--font-heading);
}

.brand img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    padding-bottom: 0.4rem;
    color: inherit;
    transition: color 0.25s ease;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(148, 181, 231, 0.65), rgba(111, 228, 233, 0.9));
    transform: translateX(-105%);
    transition: transform 0.35s ease, opacity 0.3s ease;
    opacity: 0;
}

nav ul li a:hover,
nav ul li a:focus-visible {
    color: var(--color-pastel-blue);
}

nav ul li a:hover::after,
nav ul li a:focus-visible::after,
nav ul li a[aria-current="page"]::after {
    transform: translateX(0);
    opacity: 1;
}

nav ul li a[aria-current="page"] {
    color: var(--color-cosmic-teal);
}

main {
    animation: pageFadeIn 0.45s ease 0.05s both;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
}

.hero {
    display: grid;
    gap: 2rem;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.hero h1 {
    font-size: clamp(2.6rem, 4.2vw, 3.8rem);
    margin: 0 0 1rem 0;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-pastel-blue);
    text-shadow: 0 12px 28px rgba(20, 24, 33, 0.6), 0 0 20px rgba(148, 181, 231, 0.45);
}

.hero p {
    max-width: 560px;
    color: var(--muted);
}
.accent-badge {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.65) !important;
    box-shadow: none;
}

[data-theme="day"] .accent-badge {
    background: linear-gradient(135deg, rgba(222, 157, 102, 0.9), rgba(181, 108, 60, 0.9));
    border-color: rgba(194, 126, 79, 0.7) !important;
    color: #6f3b1e !important;
    box-shadow: 0 10px 24px rgba(176, 120, 80, 0.25);
}

.contact-hint {
    color: rgba(255, 255, 255, 0.6) !important;
}

[data-theme="day"] .contact-hint {
    color: rgba(120, 70, 42, 0.88) !important;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.8rem;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-pastel-blue);
    text-shadow: 0 10px 22px rgba(18, 20, 28, 0.55);
}

.card-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    position: relative;
    background: linear-gradient(165deg, rgba(53, 73, 102, 0.34), var(--surface-highlight));
    padding: 1.9rem;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 24px 48px rgba(13, 16, 24, 0.45);
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: -45% 25% 58% -25%;
    background: radial-gradient(circle, rgba(248, 168, 201, 0.3), transparent 65%);
    opacity: 0.75;
    transform: rotate(12deg);
    pointer-events: none;
}

.card h3 {
    position: relative;
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-seafoam);
    letter-spacing: 0.04em;
}

.card p {
    position: relative;
    color: var(--muted);
}

.video-embed {
    width: 100%;
    max-width: min(100%, 960px);
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    background: rgba(10, 12, 20, 0.65);
    box-shadow: 0 28px 60px rgba(9, 11, 19, 0.55);
    overflow: hidden;
    margin: 0 auto;
    align-self: center;
}

.video-embed iframe {
    display: block;
    width: 100%;
    min-height: clamp(240px, 56vw, 480px);
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
}

.button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.4rem;
    margin-top: 1.2rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(248, 168, 201, 0.92), rgba(111, 228, 233, 0.9));
    color: var(--color-faded-black);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 12px 28px rgba(248, 168, 201, 0.24);
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(248, 168, 201, 0.32);
    background: linear-gradient(135deg, rgba(248, 168, 201, 0.98), rgba(148, 181, 231, 0.95));
    color: var(--color-faded-black);
}

.split {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-card {
    background: linear-gradient(175deg, rgba(248, 168, 201, 0.16), rgba(148, 181, 231, 0.18));
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(248, 168, 201, 0.32);
    box-shadow: 0 22px 46px rgba(10, 14, 22, 0.42);
}

.contact-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-card li + li {
    margin-top: 1rem;
}

.contact-card span {
    display: block;
    font-size: 0.85rem;
    color: rgba(187, 177, 215, 0.7);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.placeholder {
    background: repeating-linear-gradient(
        135deg,
        rgba(248, 168, 201, 0.22),
        rgba(248, 168, 201, 0.22) 10px,
        rgba(148, 181, 231, 0.16) 10px,
        rgba(148, 181, 231, 0.16) 20px
    );
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    color: rgba(187, 177, 215, 0.6);
    box-shadow: inset 0 0 0 1px rgba(148, 181, 231, 0.12);
}

footer {
    margin: 5rem auto 0;
    padding: 2rem 1.5rem 3rem;
    max-width: var(--max-width);
    color: var(--muted);
    text-align: center;
    border-top: 1px solid var(--border-soft);
}

.footer-note {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: rgba(187, 177, 215, 0.55);
}

@media (max-width: 840px) {
    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .nav-controls {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-left: 0;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 0.75rem;
    }
}

@media (max-width: 640px) {
    main {
        padding-top: 2.5rem;
    }
}










.card {
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.card .button {
    align-self: stretch;
    margin-top: auto;
    width: 100%;
    justify-content: center;
    text-align: center;
}

@media (max-width: 640px) {
    .card {
        min-height: 280px;
    }
}

/* Glitch + hyperpop micro-accents */




  93% { text-shadow: -1px 0 var(--color-pastel-blue), 1px 0 var(--color-cosmic-teal); transform: skewX(0.2deg); }
  96% { text-shadow: 1px -1px var(--color-ghostly-purple), -1px 1px var(--color-blush-rose); transform: translateX(0.2px); }
  100% { text-shadow: 0 0 0 transparent; transform: none; }
}

/* Subtle scanlines on content area */


.section-title a, .hero h1 a { color: inherit; text-decoration: none; }
.section-title a:hover, .hero h1 a:hover {
  background: linear-gradient(90deg, var(--color-pastel-blue), var(--color-cosmic-teal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-decoration: underline; text-decoration-color: rgba(148,181,231,.5);
}

/* Focus visibility and reduced motion */
:focus-visible {
  outline: 2px solid rgba(148,181,231,.9);
  outline-offset: 2px;
}
.button:focus-visible {
  box-shadow: 0 0 0 3px rgba(148,181,231,.35);
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
/* Mobile menu backdrop */
.nav-backdrop { position: fixed; inset: 0; background: rgba(20,23,40,.55); backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity .2s ease; z-index: 9; }
.nav-backdrop.show { opacity: 1; pointer-events: auto; }



/* Video thumbnails row */
.video-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.thumb-card {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: rgba(10, 12, 20, 0.55);
  padding: 0; /* button reset */
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.thumb-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.thumb-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.35));
}

.thumb-label {
  position: absolute; left: 10px; bottom: 8px; right: 10px;
  z-index: 1;
  color: rgba(255,255,255,.92);
  font-size: .8rem; line-height: 1.1;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
}

.thumb-card:hover { outline: 2px solid rgba(148,181,231,.45); }
.thumb-card:focus-visible { outline: 3px solid rgba(148,181,231,.85); outline-offset: 2px; }
.thumb-card.is-active { outline: 2px solid var(--color-cosmic-teal); box-shadow: 0 6px 18px rgba(111, 228, 233, 0.18) inset; }

[data-animate-ready] [data-animate-state="pending"] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate-state="visible"] {
  opacity: 1;
  transform: none;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 181, 231, 0.18);
  background: rgba(20, 22, 35, 0.6);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(111, 228, 233, 0.5);
  background: rgba(34, 38, 56, 0.75);
  box-shadow: 0 12px 26px rgba(20, 24, 38, 0.35);
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(148, 181, 231, 0.6), rgba(111, 228, 233, 0.85));
  color: rgba(17, 21, 34, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.social-label {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.media-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.media-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(148, 181, 231, 0.22);
  background: linear-gradient(160deg, rgba(40, 45, 66, 0.6), rgba(148, 181, 231, 0.12));
  box-shadow: 0 22px 48px rgba(16, 20, 32, 0.45);
}

.media-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 14px;
  border: 1px solid rgba(148, 181, 231, 0.18);
  background: repeating-linear-gradient(135deg, rgba(111, 228, 233, 0.12) 0%, rgba(111, 228, 233, 0.12) 14px, rgba(148, 181, 231, 0.08) 14px, rgba(148, 181, 231, 0.08) 28px);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-align: center;
  padding: 1.5rem;
}

.media-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.media-tag {
  align-self: flex-start;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 181, 231, 0.35);
  background: rgba(148, 181, 231, 0.12);
  color: rgba(222, 229, 255, 0.9);
}

.media-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--color-seafoam);
}

.media-card p {
  margin: 0;
  color: var(--muted);
}

.social-feed-placeholder {
  border: 1px dashed rgba(148, 181, 231, 0.3);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  color: rgba(204, 210, 233, 0.8);
  background: rgba(31, 36, 55, 0.65);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate-state] {
    transition: none;
    opacity: 1 !important;
    transform: none !important;
  }
}

@keyframes pageFadeIn {
  from {`r`n    opacity: 0.2;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}




[data-theme="day"] body::before {
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 213, 170, 0.45), transparent 55%),
        radial-gradient(circle at 80% 6%, rgba(255, 201, 151, 0.38), transparent 60%),
        radial-gradient(circle at 50% 92%, rgba(255, 238, 205, 0.3), transparent 70%),
        linear-gradient(145deg, rgba(255, 244, 227, 0.95), rgba(244, 219, 190, 0.75));
    mix-blend-mode: normal;
}

[data-theme="day"] body::after {
    background:
        radial-gradient(circle, rgba(255, 220, 186, 0.32) 0%, rgba(255, 220, 186, 0) 62%);
    opacity: 0.55;
}
.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: rgba(20, 24, 38, 0.55);
}

.lang-toggle__option {
    border: 0;
    background: transparent;
    color: rgba(204, 210, 233, 0.82);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.lang-toggle__option[aria-pressed="true"] {
    background: rgba(148, 181, 231, 0.25);
    color: var(--text);
}

.theme-switch {
    position: relative;
    width: 56px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(148, 181, 231, 0.3);
    background: rgba(20, 24, 38, 0.55);
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.theme-switch::before {
    content: "\263D";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: #281f34;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.theme-switch[aria-pressed="true"]::before {
    content: "\2600";
    transform: translateX(24px);
    background: rgba(255, 214, 163, 0.95);
    color: #70431d;
}

.theme-switch:hover,
.theme-switch:focus-visible {
    border-color: rgba(148, 181, 231, 0.6);
    box-shadow: 0 12px 24px rgba(17, 22, 40, 0.35);
}

.sr-only,
.theme-switch__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

[data-theme="day"] .lang-toggle {
    background: rgba(255, 236, 214, 0.75);
    border-color: rgba(207, 173, 146, 0.55);
}

[data-theme="day"] .lang-toggle__option {
    color: rgba(92, 68, 52, 0.75);
}

[data-theme="day"] .lang-toggle__option[aria-pressed="true"] {
    background: rgba(255, 189, 128, 0.9);
    color: #4a2c1c;
}

[data-theme="day"] .theme-switch {
    border-color: rgba(207, 173, 146, 0.55);
    background: rgba(255, 244, 226, 0.9);
}

[data-theme="day"] .theme-switch:hover,
[data-theme="day"] .theme-switch:focus-visible {
    border-color: rgba(240, 169, 104, 0.65);
    box-shadow: 0 12px 24px rgba(188, 134, 90, 0.32);
}

[data-theme="day"] .theme-switch::before {
    background: rgba(255, 227, 188, 0.95);
    color: #70431d;
}

[data-theme="day"] header {
    background: linear-gradient(135deg, rgba(255, 236, 214, 0.8), rgba(255, 248, 239, 0.75));
    border-bottom: 1px solid var(--border-soft);
}

[data-theme="day"] nav {
    background: rgba(255, 247, 236, 0.85) !important;
    border-color: rgba(207, 173, 146, 0.6) !important;
    color: var(--text);
}

[data-theme="day"] nav .brand {
    color: var(--color-ghostly-purple);
}

[data-theme="day"] nav .brand span {
    color: rgba(99, 73, 55, 0.72);
}

[data-theme="day"] .brand img {
    background: linear-gradient(145deg, #c7834e, #864d28);
    border-color: rgba(201, 137, 88, 0.7);
    box-shadow: 0 10px 18px rgba(120, 88, 60, 0.25);
}

[data-theme="day"] nav ul li a {
    color: var(--text);
}

[data-theme="day"] nav ul li a:hover,
[data-theme="day"] nav ul li a:focus-visible {
    color: var(--color-pastel-blue);
}[data-theme="day"] nav ul li a::after {
    background: linear-gradient(90deg, rgba(240, 169, 104, 0.8), rgba(255, 190, 133, 0.9));
}

[data-theme="day"] .card {
    background: linear-gradient(160deg, rgba(255, 248, 238, 0.92), rgba(255, 221, 189, 0.55));
    border-color: rgba(210, 176, 150, 0.55);
    box-shadow: 0 18px 36px rgba(184, 143, 110, 0.28);
}

[data-theme="day"] .card::before {
    background: radial-gradient(circle, rgba(244, 203, 164, 0.25), transparent 68%);
}

[data-theme="day"] .video-embed {
    background: rgba(255, 248, 238, 0.92);
    border-color: rgba(210, 176, 150, 0.4);
    box-shadow: 0 20px 40px rgba(200, 150, 110, 0.25);
}

[data-theme="day"] .button {
    background: linear-gradient(135deg, rgba(255, 199, 149, 0.95), rgba(255, 178, 120, 0.9));
    color: #4a2c1c;
    box-shadow: 0 12px 26px rgba(255, 189, 140, 0.32);
}

[data-theme="day"] .button:hover,
[data-theme="day"] .button:focus-visible {
    background: linear-gradient(135deg, rgba(255, 206, 160, 0.98), rgba(255, 196, 143, 0.94));
    box-shadow: 0 16px 32px rgba(255, 186, 128, 0.38);
}

[data-theme="day"] .placeholder {
    background: repeating-linear-gradient(
        135deg,
        rgba(255, 205, 170, 0.22),
        rgba(255, 205, 170, 0.22) 10px,
        rgba(255, 235, 205, 0.18) 10px,
        rgba(255, 235, 205, 0.18) 20px
    );
    color: rgba(118, 92, 74, 0.7);
    box-shadow: inset 0 0 0 1px rgba(210, 176, 150, 0.32);
}

[data-theme="day"] footer {
    border-top: 1px solid rgba(207, 173, 146, 0.4);
    color: rgba(102, 78, 60, 0.75);
}

[data-theme="day"] .social-link {
    background: rgba(255, 247, 236, 0.85);
    border-color: rgba(207, 173, 146, 0.45);
}

[data-theme="day"] .social-link:hover,
[data-theme="day"] .social-link:focus-visible {
    border-color: rgba(240, 169, 104, 0.65);
    background: rgba(255, 235, 214, 0.95);
    box-shadow: 0 12px 24px rgba(180, 132, 95, 0.28);
}

[data-theme="day"] .social-icon {
    background: linear-gradient(135deg, rgba(255, 206, 150, 0.9), rgba(255, 189, 129, 0.85));
    color: #4a2c1c;
}

[data-theme="day"] .media-card {
    background: linear-gradient(160deg, rgba(255, 248, 239, 0.95), rgba(255, 226, 191, 0.55));
    border-color: rgba(210, 176, 150, 0.45);
    box-shadow: 0 18px 40px rgba(194, 149, 110, 0.22);
}

[data-theme="day"] .social-feed-placeholder {
    border-color: rgba(210, 176, 150, 0.4);
    background: rgba(255, 240, 218, 0.8);
    color: rgba(110, 82, 64, 0.7);
}

[data-theme="day"] [data-menu-toggle] {
    color: rgba(70, 50, 38, 0.75);
    background: rgba(255, 236, 214, 0.75);
    border-color: rgba(207, 173, 146, 0.55);
}

[data-theme="day"] [data-menu-toggle]:hover,
[data-theme="day"] [data-menu-toggle]:focus-visible {
    background: rgba(255, 224, 197, 0.85);
    border-color: rgba(240, 169, 104, 0.65);
    color: rgba(70, 50, 38, 0.9);
}


