:root {
    --bg-deep: #be5151;
    --bg-mid: #c55555;
    --bg-accent: #cb5d5d;
    --bg-glow: #efcaca;
    --bg-glow-soft: #f5e4e4;
    --glass-fill: rgba(197, 85, 85, 0.2);
    --glass-fill-strong: rgba(197, 85, 85, 0.33);
    --glass-border: rgba(255, 247, 247, 0.34);
    --glass-border-soft: rgba(255, 232, 232, 0.18);
    --glass-shadow: 0 28px 70px rgba(84, 26, 26, 0.22);
    --glass-shadow-soft: 0 18px 46px rgba(58, 18, 18, 0.22);
    --text: #5d2323;
    --text-soft: rgba(99, 41, 41, 0.88);
    --text-muted: rgba(125, 63, 63, 0.74);
    --ink: #742d2d;
    --hero-text: #fff7f7;
    --hero-text-soft: rgba(255, 242, 242, 0.88);
    --surface-highlight: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 232, 232, 0.14) 24%, rgba(255, 255, 255, 0.04) 54%, rgba(255, 223, 223, 0.11) 100%);
    --surface-glow: radial-gradient(circle at top, rgba(255, 220, 220, 0.12), transparent 70%);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--hero-text);
    background:
        radial-gradient(circle at 14% 14%, rgba(255, 228, 228, 0.36), transparent 20%),
        radial-gradient(circle at 84% 12%, rgba(236, 180, 180, 0.24), transparent 24%),
        radial-gradient(circle at 76% 76%, rgba(220, 132, 132, 0.22), transparent 26%),
        linear-gradient(145deg, var(--bg-deep) 0%, var(--bg-mid) 42%, var(--bg-accent) 100%);
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: -14%;
    pointer-events: none;
}

body::before {
    background:
        radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.1), transparent 18%),
        radial-gradient(circle at 78% 26%, rgba(232, 176, 176, 0.16), transparent 22%),
        radial-gradient(circle at 50% 80%, rgba(255, 236, 236, 0.08), transparent 24%);
    opacity: 0.9;
    z-index: -4;
    animation: ambientDrift 18s ease-in-out infinite;
}

body::after {
    background: linear-gradient(120deg, rgba(255, 247, 247, 0.05), transparent 42%, rgba(255, 236, 236, 0.03) 72%, transparent 100%);
    opacity: 0.52;
    z-index: -3;
}

.background-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(135deg, rgba(255, 242, 242, 0.024) 0, rgba(255, 242, 242, 0.024) 2px, rgba(244, 218, 218, 0.016) 2px, rgba(244, 218, 218, 0.016) 3px, transparent 3px, transparent 22px);
    z-index: -2;
}

.background-overlay::before,
.background-overlay::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.58;
    animation: blobFloat 14s ease-in-out infinite;
}

.background-overlay::before {
    top: 6%;
    left: -4%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 241, 241, 0.16), rgba(255, 255, 255, 0.03) 62%, transparent 75%);
}

.background-overlay::after {
    right: -6%;
    bottom: 8%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(225, 155, 155, 0.2), rgba(225, 155, 155, 0.04) 62%, transparent 74%);
    animation-delay: -6s;
}

.nav-content,
.download-panel,
.card,
.patch-note-bubble,
.community-links-bubble,
.patch-link,
.download-meta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--text);
    background: linear-gradient(180deg, var(--glass-fill-strong), rgba(82, 31, 24, 0.24));
    border: 1px solid var(--glass-border-soft);
    box-shadow: var(--glass-shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.nav-content::before,
.download-panel::before,
.card::before,
.patch-note-bubble::before,
.community-links-bubble::before,
.patch-link::before,
.download-meta::before,
.nav-content::after,
.download-panel::after,
.card::after,
.patch-note-bubble::after,
.community-links-bubble::after,
.patch-link::after,
.download-meta::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.nav-content::before,
.download-panel::before,
.card::before,
.patch-note-bubble::before,
.community-links-bubble::before,
.patch-link::before,
.download-meta::before {
    inset: 0;
    background: var(--surface-highlight);
    opacity: 0.42;
}

.nav-content::after,
.download-panel::after,
.card::after,
.patch-note-bubble::after,
.community-links-bubble::after,
.patch-link::after,
.download-meta::after {
    left: 10%;
    right: 10%;
    bottom: -42%;
    height: 68%;
    background: var(--surface-glow);
    opacity: 0.34;
}

.nav-content > *,
.download-panel > *,
.card > *,
.patch-note-bubble > *,
.community-links-bubble > *,
.patch-link > *,
.download-meta > * {
    position: relative;
    z-index: 1;
}

nav {
    padding: 28px 20px 0;
    display: flex;
    justify-content: center;
    animation: floatDown 0.9s ease both;
}

.nav-content {
    width: 100%;
    max-width: 1180px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 32px;
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.nav-content.is-scrolled {
    transform: translateY(4px) scale(0.988);
    background: linear-gradient(180deg, rgba(147, 64, 50, 0.34), rgba(81, 30, 24, 0.26));
    border-color: rgba(255, 240, 231, 0.18);
    box-shadow: 0 18px 42px rgba(76, 22, 16, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hero-text);
    animation: fadeUp 0.9s ease 0.1s both;
}

.links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.links a {
    position: relative;
    overflow: hidden;
    margin-left: 0;
    padding: 10px 18px;
    color: var(--hero-text);
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(180deg, #c55555 0%, #cb6564 100%);
    border: 1px solid rgba(255, 240, 231, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 0.7s ease both;
}

.links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.12) 38%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0.12) 62%, transparent 100%);
    opacity: 0;
    transform: translateX(-135%) skewX(-18deg);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
    will-change: transform, opacity;
}

.links a:nth-child(1) {
    animation-delay: 0.12s;
}

.links a:nth-child(2) {
    animation-delay: 0.18s;
}

.links a:nth-child(3) {
    animation-delay: 0.24s;
}

.links a:nth-child(4) {
    animation-delay: 0.3s;
}

.links a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 240, 231, 0.2);
    box-shadow: 0 10px 24px rgba(76, 22, 16, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.links a:hover::before {
    opacity: 0.92;
    transform: translateX(135%) skewX(-18deg);
}

header {
    text-align: center;
    padding: 46px 20px 20px;
}

.hero {
    position: relative;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: -28px;
    left: 50%;
    width: min(560px, 92vw);
    height: 240px;
    transform: translateX(-50%);
    background: radial-gradient(circle at center, rgba(255, 233, 233, 0.14), transparent 72%);
    opacity: 0.78;
    pointer-events: none;
    animation: breatheGlow 8s ease-in-out infinite;
}

.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    animation: popIn 0.9s ease 0.12s both;
}

.logo-container::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 231, 231, 0.16), rgba(255, 231, 231, 0.03) 70%, transparent 78%);
    opacity: 0.82;
    animation: pulseGlow 7s ease-in-out infinite;
}

.main-logo {
    position: relative;
    z-index: 1;
    width: 144px;
    height: 144px;
    border-radius: 42px;
    object-fit: cover;
    border: 2px solid rgba(255, 236, 226, 0.22);
    box-shadow: 0 28px 60px rgba(76, 22, 16, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.08);
    animation: float 5s ease-in-out infinite;
}

h1 {
    font-size: clamp(3.5rem, 9vw, 6rem);
    margin-bottom: 10px;
    letter-spacing: -0.08em;
    color: var(--hero-text);
    text-shadow: 0 14px 38px rgba(76, 22, 16, 0.18);
    animation: fadeUp 0.95s ease 0.2s both;
}

.subtitle {
    max-width: 620px;
    margin: 0 auto 34px;
    font-size: 1.14rem;
    line-height: 1.72;
    color: var(--hero-text-soft);
    animation: fadeUp 0.95s ease 0.32s both;
}

.download-panel {
    max-width: 860px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 38px;
    box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.42), inset 0 -1px 0 rgba(255, 255, 255, 0.06);
    animation: riseIn 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.42s both, panelBreathe 8s ease-in-out 1.3s infinite;
}

.download-panel-header {
    margin-bottom: 26px;
    animation: fadeUp 0.82s ease 0.5s both;
}

.download-panel-header h2 {
    font-size: 1.72rem;
    margin-bottom: 8px;
    letter-spacing: -0.04em;
}

.download-panel-header p {
    max-width: 560px;
    margin: 0 auto;
    color: var(--text-soft);
    line-height: 1.66;
}

.download-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.field {
    position: relative;
    text-align: left;
    animation: fadeUp 0.78s ease both;
}

.download-controls .field:nth-child(1) {
    animation-delay: 0.56s;
}

.download-controls .field:nth-child(2) {
    animation-delay: 0.64s;
}

.field::after {
    content: '';
    position: absolute;
    right: 22px;
    bottom: 25px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 236, 226, 0.64);
    border-bottom: 2px solid rgba(255, 236, 226, 0.64);
    transform: rotate(45deg);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.field:hover::after {
    transform: rotate(45deg) translateY(2px);
}

.field span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

.field select {
    width: 100%;
    height: 58px;
    padding: 14px 18px;
    padding-right: 50px;
    border-radius: 999px;
    border: 1px solid rgba(255, 236, 226, 0.18);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: linear-gradient(180deg, rgba(235, 205, 205, 0.34), rgba(197, 85, 85, 0.24));
    color: var(--text);
    font-size: 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 14px 28px rgba(76, 22, 16, 0.14);
    cursor: pointer;
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.field select:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 236, 226, 0.24);
    background: linear-gradient(180deg, rgba(239, 214, 214, 0.38), rgba(204, 90, 90, 0.28));
}

.field select:focus {
    outline: none;
    border-color: rgba(255, 236, 226, 0.3);
    box-shadow: 0 0 0 4px rgba(255, 228, 217, 0.1), 0 14px 28px rgba(76, 22, 16, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.field select option {
    background: #c55555;
    color: var(--hero-text);
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 236, 226, 0.18);
    background: linear-gradient(180deg, #c55555 0%, #cb6564 100%);
    color: var(--ink);
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 18px 34px rgba(76, 22, 16, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.12) 38%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0.12) 62%, transparent 100%);
    opacity: 0;
    transform: translateX(-135%) skewX(-18deg);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
    will-change: transform, opacity;
}

.btn:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: rgba(255, 236, 226, 0.24);
    box-shadow: 0 24px 40px rgba(76, 22, 16, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn:hover::before {
    opacity: 0.92;
    transform: translateX(135%) skewX(-18deg);
}

.primary {
    color: var(--ink);
}

.cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.82s ease 0.72s both;
}

.download-meta {
    display: inline-flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--text-soft);
    font-size: 0.95rem;
    animation: fadeUp 0.9s ease 0.8s both, metaPulse 6s ease-in-out 1.4s infinite;
}

.features {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 84px 0 96px;
}

.features-heading {
    margin-bottom: 28px;
    animation: fadeUp 0.9s ease 0.18s both;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 248, 243, 0.2), rgba(255, 248, 243, 0.08));
    border: 1px solid rgba(255, 248, 243, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    animation: shimmer 9s linear infinite;
}

.features-heading h2 {
    max-width: 760px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    letter-spacing: -0.05em;
    line-height: 1.06;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.card {
    min-height: 230px;
    padding: 34px;
    border-radius: 34px;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    animation: cardGlowDrift 7.8s ease-in-out infinite;
}

.features-grid .card:nth-child(2) {
    animation-delay: 0.18s;
}

.features-grid .card:nth-child(3) {
    animation-delay: 0.36s;
}

.card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(255, 236, 226, 0.2);
    background: linear-gradient(180deg, rgba(197, 85, 85, 0.34), rgba(150, 63, 63, 0.26));
    box-shadow: 0 24px 54px rgba(76, 22, 16, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16), inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.card h3 {
    margin-bottom: 16px;
    font-size: 1.26rem;
    letter-spacing: -0.03em;
    animation: textDrift 5.4s ease-in-out infinite;
}

.card p {
    color: var(--text-soft);
    line-height: 1.72;
    animation: fadeUp 0.82s ease both;
}

.features-grid .card:nth-child(1) p {
    animation-delay: 0.08s;
}

.features-grid .card:nth-child(2) p {
    animation-delay: 0.16s;
}

.features-grid .card:nth-child(3) p {
    animation-delay: 0.24s;
}

.patch-section {
    max-width: 940px;
    margin-top: 38px;
    animation: fadeUp 0.86s ease 0.12s both;
}

.patch-section-header {
    margin-bottom: 18px;
    animation: fadeUp 0.86s ease both;
}

.patch-section-title {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    letter-spacing: -0.05em;
    margin-bottom: 8px;
}

.patch-section-subtitle {
    margin-bottom: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

.patch-note-box-value {
    display: block;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ink);
}

.patch-notes-card {
    margin-top: 14px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.patch-notes-card::before,
.patch-notes-card::after {
    content: none;
}

.patch-note-bubble {
    padding: 26px 28px;
    border-radius: 34px;
    animation: panelBreathe 9s ease-in-out infinite;
}

.patch-note-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.patch-note-list li {
    position: relative;
    padding-left: 22px;
    color: var(--text-soft);
    line-height: 1.7;
    animation: fadeUp 0.7s ease both;
}

.patch-note-list li:nth-child(1) {
    animation-delay: 0.04s;
}

.patch-note-list li:nth-child(2) {
    animation-delay: 0.1s;
}

.patch-note-list li:nth-child(3) {
    animation-delay: 0.16s;
}

.patch-note-list li:nth-child(4) {
    animation-delay: 0.22s;
}

.patch-note-list li:nth-child(5) {
    animation-delay: 0.28s;
}

.patch-note-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), var(--bg-glow));
    box-shadow: 0 0 18px rgba(255, 247, 240, 0.42);
    animation: pulseDot 3.5s ease-in-out infinite;
}

.community-links-bubble {
    margin-top: 22px;
    padding: 24px;
    border-radius: 34px;
    animation: panelBreathe 9s ease-in-out 0.8s infinite;
}

.patch-link-icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.patch-link {
    min-height: 142px;
    border-radius: 30px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 22px;
    text-decoration: none;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    animation: pulseCard 8s ease-in-out infinite;
}

.patch-link:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 248, 243, 0.3);
    background: linear-gradient(180deg, rgba(255, 248, 243, 0.3), rgba(255, 248, 243, 0.12));
    box-shadow: 0 24px 44px rgba(76, 22, 16, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.48), inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.patch-link img {
    max-width: 66px;
    max-height: 66px;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(76, 22, 16, 0.16));
    transition: transform 0.35s ease;
}

.patch-link:hover img {
    transform: translateY(-2px) scale(1.04);
}

.patch-link-label {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
}

.reveal-item {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    transition: opacity 0.82s ease var(--reveal-delay, 0ms), transform 0.82s ease var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 980px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    nav {
        padding: 18px 14px 0;
    }

    .nav-content {
        padding: 14px;
        flex-direction: column;
        gap: 14px;
    }

    .links {
        justify-content: center;
    }

    .download-controls,
    .features-grid,
    .patch-link-icons {
        grid-template-columns: 1fr;
    }

    .download-panel {
        padding: 24px;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn,
    .download-meta {
        width: 100%;
    }

    .download-meta {
        justify-content: center;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal-item,
    .reveal-item.is-visible {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes ambientDrift {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(1.5%, -1.2%, 0) scale(1.03);
    }
}

@keyframes blobFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(3%, -3%, 0);
    }
}

@keyframes floatDown {
    0% {
        opacity: 0;
        transform: translateY(-18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes riseIn {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.76;
    }

    50% {
        transform: scale(1.04);
        opacity: 0.92;
    }
}

@keyframes breatheGlow {
    0%,
    100% {
        opacity: 0.72;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.92;
        transform: translateX(-50%) scale(1.03);
    }
}

@keyframes pulseCard {
    0%,
    100% {
        box-shadow: var(--glass-shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.36), inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    }

    50% {
        box-shadow: 0 22px 40px rgba(76, 22, 16, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.38), inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    }
}

@keyframes pulseDot {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }
}

@keyframes shimmer {
    0%,
    100% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
    }

    50% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 0 18px rgba(255, 228, 212, 0.12);
    }
}

@keyframes panelBreathe {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 18px 36px rgba(76, 22, 16, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    }

    50% {
        transform: translateY(-3px);
        box-shadow: 0 26px 46px rgba(76, 22, 16, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    }
}

@keyframes metaPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes textDrift {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

@keyframes cardGlowDrift {
    0%,
    100% {
        box-shadow: 0 18px 32px rgba(76, 22, 16, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    }

    50% {
        box-shadow: 0 24px 42px rgba(76, 22, 16, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}