/* =========================================
   PIN-UP CASINO AZ — Main Styles
   ========================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Nunito:wght@400;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --color-bg:        #0d0010;
  --color-bg2:       #160820;
  --color-surface:   #1e0f2e;
  --color-surface2:  #251540;
  --color-red:       #ff2d55;
  --color-red-dark:  #cc1e3f;
  --color-orange:    #ff6b35;
  --color-gold:      #ffd700;
  --color-gold-dark: #b8860b;
  --color-white:     #ffffff;
  --color-text:      #e8d8f0;
  --color-muted:     #a090b8;
  --color-border:    rgba(255,45,85,0.25);
  --font-display:    'Playfair Display', Georgia, serif;
  --font-body:       'Nunito', sans-serif;
  --radius:          12px;
  --radius-lg:       20px;
  --shadow-red:      0 0 30px rgba(255,45,85,0.35);
  --shadow-gold:     0 0 20px rgba(255,215,0,0.3);
  --transition:      0.3s cubic-bezier(0.4,0,0.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,45,85,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(100,0,200,0.1) 0%, transparent 70%);
  min-height: 100vh;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--color-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold); }
ul { list-style: none; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--color-white);
  position: relative;
  display: inline-block;
  margin-bottom: 0.3em;
}
.section-title span { color: var(--color-red); }

.section-subtitle {
  color: var(--color-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.text-gold { color: var(--color-gold); }
.text-red  { color: var(--color-red);  }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg2); }
::-webkit-scrollbar-thumb { background: var(--color-red-dark); border-radius: 3px; }

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 50px;
  padding: 12px 28px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-transform: uppercase;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,0.1); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-orange) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,45,85,0.4);
}
.btn-primary:hover {
  box-shadow: var(--shadow-red), 0 8px 32px rgba(255,45,85,0.5);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #1a0a00;
  font-weight: 900;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255,215,0,0.5);
  color: #1a0a00;
}

.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* =========================================
   HEADER
   ========================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 0, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(13, 0, 16, 0.98);
  box-shadow: 0 2px 30px rgba(255,45,85,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img { height: 48px; width: auto; }

/* Nav */
.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-item {}
.nav-link {
  display: block;
  padding: 8px 14px;
  color: var(--color-text);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--color-white);
  background: rgba(255,45,85,0.15);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Mobile burger */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.burger-btn:hover { background: rgba(255,45,85,0.15); }
.burger-line {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.burger-btn.open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open .burger-line:nth-child(2) { opacity: 0; }
.burger-btn.open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13,0,16,0.97);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  padding: 24px 20px;
  gap: 8px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity var(--transition), transform var(--transition);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav-link {
  display: block;
  padding: 14px 20px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  border-radius: var(--radius);
  border-bottom: 1px solid rgba(255,45,85,0.1);
  transition: all var(--transition);
}
.mobile-nav-link:hover {
  color: var(--color-white);
  background: rgba(255,45,85,0.12);
  padding-left: 28px;
}
.mobile-menu-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu-actions .btn { width: 100%; justify-content: center; }

/* =========================================
   HERO SECTION
   ========================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(255,45,85,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 90% 50%, rgba(150,0,255,0.1) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,45,85,0.12);
  border: 1px solid rgba(255,45,85,0.3);
  color: var(--color-red);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,45,85,0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(255,45,85,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-title .highlight {
  color: var(--color-red);
  display: block;
}

.hero-desc {
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-gold);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 340px;
  height: 340px;
}

.hero-chip {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.hero-chip:nth-child(1) {
  width: 120px; height: 120px;
  background: radial-gradient(circle, #ff2d55 0%, #cc1e3f 60%, #8b0020 100%);
  border: 8px solid rgba(255,255,255,0.15);
  top: 20px; left: 50px;
  animation-delay: 0s;
  box-shadow: 0 0 40px rgba(255,45,85,0.5);
}
.hero-chip:nth-child(2) {
  width: 90px; height: 90px;
  background: radial-gradient(circle, #FFD700 0%, #FFA500 60%, #cc8800 100%);
  border: 6px solid rgba(255,255,255,0.2);
  top: 100px; right: 30px;
  animation-delay: 1s;
  box-shadow: 0 0 30px rgba(255,215,0,0.5);
}
.hero-chip:nth-child(3) {
  width: 70px; height: 70px;
  background: radial-gradient(circle, #2d1f8a 0%, #1a1255 100%);
  border: 5px solid rgba(255,215,0,0.4);
  bottom: 60px; left: 30px;
  animation-delay: 2s;
  box-shadow: 0 0 20px rgba(45,31,138,0.5);
}
.hero-chip:nth-child(4) {
  width: 100px; height: 100px;
  background: radial-gradient(circle, #1a5c1a 0%, #0d3d0d 100%);
  border: 7px solid rgba(255,255,255,0.15);
  bottom: 30px; right: 60px;
  animation-delay: 3s;
  box-shadow: 0 0 25px rgba(26,92,26,0.5);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-15px) rotate(5deg); }
}

/* =========================================
   SECTION COMMON
   ========================================= */

.section {
  padding: 90px 0;
}

.section-header {
  margin-bottom: 3rem;
}

.divider-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red), var(--color-orange));
  border-radius: 2px;
  margin-top: 10px;
}

/* =========================================
   BRAND DESCRIPTION
   ========================================= */

.brand-section {
  background: var(--color-bg2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.brand-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 1.2rem;
}
.brand-text p {
  color: var(--color-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.brand-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 1.8rem;
}

.brand-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: all var(--transition);
}
.brand-feature:hover {
  border-color: var(--color-red);
  background: rgba(255,45,85,0.05);
  transform: translateX(4px);
}

.feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-content h4 {
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.feature-content p {
  color: var(--color-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* Brand Visual */
.brand-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
}
.stat-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.stat-card-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-gold);
  display: block;
}
.stat-card-label {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =========================================
   TABLE (Bonus Table)
   ========================================= */

.bonus-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.bonus-table thead tr {
  background: linear-gradient(135deg, rgba(255,45,85,0.25) 0%, rgba(255,107,53,0.15) 100%);
}

.bonus-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-gold);
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}

.bonus-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,45,85,0.08);
  color: var(--color-text);
  transition: background var(--transition);
}

.bonus-table tbody tr:hover td { background: rgba(255,45,85,0.05); }
.bonus-table tbody tr:last-child td { border-bottom: none; }

.bonus-table .badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-red    { background: rgba(255,45,85,0.15);  color: var(--color-red);  border: 1px solid rgba(255,45,85,0.3); }
.badge-gold   { background: rgba(255,215,0,0.12);  color: var(--color-gold); border: 1px solid rgba(255,215,0,0.3); }
.badge-green  { background: rgba(46,213,115,0.12); color: #2ed573;           border: 1px solid rgba(46,213,115,0.3); }

/* =========================================
   GAMES SLIDER
   ========================================= */

.games-section { background: var(--color-bg2); }

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  padding: 10px 0;
}

.game-card {
  flex: 0 0 calc(20% - 16px);
  min-width: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
  group: true;
}
.game-card:hover {
  border-color: var(--color-red);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255,45,85,0.3);
  z-index: 2;
}

.game-card-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-surface2);
}

.game-card-thumb img, .game-card-thumb svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.game-card:hover .game-card-thumb img,
.game-card:hover .game-card-thumb svg {
  transform: scale(1.08);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-play {
  width: 100%;
}

.game-card-info {
  padding: 12px 14px;
}

.game-card-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--color-white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-provider {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.game-card-hot {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--color-red), var(--color-orange));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 50px;
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.slider-btn:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  box-shadow: var(--shadow-red);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active {
  background: var(--color-red);
  border-color: var(--color-red);
  width: 24px;
  border-radius: 4px;
}

/* =========================================
   BANNER SECTION
   ========================================= */

.banner-section {
  padding: 60px 0;
}

.main-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  position: relative;
  transition: all var(--transition);
}
.main-banner:hover {
  border-color: var(--color-red);
  box-shadow: var(--shadow-red);
}
.main-banner img,
.main-banner svg {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {}
.footer-logo { margin-bottom: 16px; }
.footer-desc {
  color: var(--color-muted);
  font-size: 0.88rem;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--color-white);
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-red);
  border-radius: 2px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  color: var(--color-muted);
  font-size: 0.88rem;
  transition: all var(--transition);
}
.footer-link:hover {
  color: var(--color-white);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  color: var(--color-muted);
  font-size: 0.82rem;
}

.footer-age {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-muted);
  font-size: 0.82rem;
}
.age-badge {
  background: var(--color-red-dark);
  color: #fff;
  font-weight: 900;
  font-size: 0.78rem;
  padding: 4px 8px;
  border-radius: 6px;
}

/* Payment icons row */
.footer-payments {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.payment-icon {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

.animate-fade-up   { animation: fadeInUp   0.7s ease both; }
.animate-fade-left { animation: fadeInLeft 0.7s ease both; }
.animate-fade-right{ animation: fadeInRight 0.7s ease both; }
.animate-scale-in  { animation: scaleIn    0.6s ease both; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
