@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes glow { 0%, 100% { box-shadow: 0 0 8px rgba(161,130,84,0.3); } 50% { box-shadow: 0 0 20px rgba(161,130,84,0.6); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes borderGlow { 0%, 100% { border-color: rgba(161,130,84,0.3); } 50% { border-color: rgba(161,130,84,0.8); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulseScale { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.anim-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.anim-fadeInLeft { animation: fadeInLeft 0.6s ease forwards; }
.anim-fadeInRight { animation: fadeInRight 0.6s ease forwards; }
.anim-glow { animation: glow 2.5s ease-in-out infinite; }
.anim-float { animation: floatY 3s ease-in-out infinite; }
.anim-pulse { animation: pulseScale 2s ease-in-out infinite; }

.hero-content { animation: fadeInLeft 0.75s ease 0.2s both; }
.hero-badge { animation: fadeInUp 0.5s ease 0.1s both; }
.hero h1 { animation: fadeInUp 0.6s ease 0.25s both; }
.hero-desc { animation: fadeInUp 0.6s ease 0.4s both; }
.hero-actions { animation: fadeInUp 0.6s ease 0.55s both; }
.hero-meta { animation: fadeInUp 0.6s ease 0.7s both; }

.advantage-card { transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease; }
.advantage-card:hover .advantage-icon svg { animation: floatY 1.2s ease-in-out infinite; }

.bonus-card.featured { animation: borderGlow 3s ease-in-out infinite; }
.btn--primary { transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease; }
.btn--primary:active { transform: translateY(0) scale(0.97); }

.header { transition: box-shadow 0.22s ease; }
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.5); }

.skeleton { background: linear-gradient(90deg, #1C2028 25%, #252a35 50%, #1C2028 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 6px; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0D1016; }
::-webkit-scrollbar-thumb { background: #2A2E38; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #A18254; }

::selection { background: rgba(161,130,84,0.3); color: #fff; }

.toc-item { position: relative; overflow: hidden; }
.toc-item::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--clr-primary); transition: width 0.28s ease; }
.toc-item:hover::after { width: 100%; }

.game-card .game-thumb img { transition: transform 0.35s ease; }
.game-card:hover .game-thumb img { transform: scale(1.06); }

.faq-item .faq-question h3 { transition: color 0.2s ease; }
.faq-item.open .faq-question h3 { color: var(--clr-primary); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
