@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-bg: #110E1B;
  --clr-header: #2B2444;
  --clr-btn-primary: #4DF2C1;
  --clr-btn-secondary: #574C7B;
  --clr-text: #E8E2F7;
  --clr-text-muted: #9D93BE;
  --clr-border: rgba(87,76,123,0.35);
  --clr-card: #1C1730;
  --clr-card2: #221D38;
  --clr-accent: #4DF2C1;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --font: 'Sora', ui-sans-serif, system-ui, sans-serif;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; background: var(--clr-bg); }
body { font-family: var(--font); background: var(--clr-bg); color: var(--clr-text); line-height: 1.65; font-size: 15px; overflow-x: hidden; }
a { color: var(--clr-btn-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 18px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font); font-weight: 600; font-size: 14px;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  padding: 10px 22px; transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap; text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(77,242,193,0.18); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--clr-btn-primary); color: #0D0B16; }
.btn--secondary { background: var(--clr-btn-secondary); color: #fff; }
.btn--outline { background: transparent; border: 1.5px solid var(--clr-btn-primary); color: var(--clr-btn-primary); }
.btn--sm { padding: 7px 16px; font-size: 13px; }
.btn--lg { padding: 14px 36px; font-size: 16px; }

.site-header { background: var(--clr-header); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 18px; height: 68px; max-width: 1200px; margin: 0 auto; }
.header-logo { flex-shrink: 0; }
.header-logo img { height: 44px; width: auto; border-radius: 8px; }
.header-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.header-nav a { display: flex; align-items: center; gap: 5px; color: var(--clr-text); font-size: 13.5px; font-weight: 500; padding: 7px 11px; border-radius: var(--radius-sm); transition: background var(--transition), color var(--transition); }
.header-nav a:hover { background: rgba(77,242,193,0.1); color: var(--clr-accent); text-decoration: none; }
.header-nav a svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.75; }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-online { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--clr-text-muted); white-space: nowrap; }
.header-online .dot { width: 7px; height: 7px; border-radius: 50%; background: #4DF2C1; box-shadow: 0 0 8px #4DF2C1; animation: pulse-dot 1.8s infinite; flex-shrink: 0; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 23px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; background: var(--clr-header); padding: 12px 18px 18px; gap: 4px; border-top: 1px solid var(--clr-border); }
.mobile-menu a { display: flex; align-items: center; gap: 8px; color: var(--clr-text); padding: 10px 8px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; transition: background var(--transition); }
.mobile-menu a:hover { background: rgba(77,242,193,0.08); text-decoration: none; }
.mobile-menu a svg { width: 16px; height: 16px; opacity: 0.8; }
.mobile-menu.is-open { display: flex; }

.hero { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('/win-spirit-casino-hero.webp') center/cover no-repeat; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,14,27,0.88) 0%, rgba(17,14,27,0.65) 60%, rgba(17,14,27,0.3) 100%); }
.hero-content { position: relative; z-index: 2; padding: 60px 18px; max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.hero-text { max-width: 520px; }
.hero-label { display: inline-block; background: rgba(77,242,193,0.15); border: 1px solid rgba(77,242,193,0.35); color: var(--clr-accent); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 99px; margin-bottom: 14px; letter-spacing: 0.05em; text-transform: uppercase; }
.hero-text h1 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; line-height: 1.18; color: #fff; margin-bottom: 14px; }
.hero-text h1 span { color: var(--clr-accent); }
.hero-text p { font-size: 16px; color: var(--clr-text-muted); margin-bottom: 28px; line-height: 1.6; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-tile { background: linear-gradient(135deg, #2B2444 60%, #1C1730); border: 1.5px solid rgba(77,242,193,0.3); border-radius: var(--radius-lg); padding: 28px 32px; min-width: 240px; text-align: center; box-shadow: 0 8px 40px rgba(0,0,0,0.5); flex-shrink: 0; }
.hero-tile .bonus-label { font-size: 12px; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.hero-tile .bonus-amount { font-size: 38px; font-weight: 800; color: var(--clr-accent); line-height: 1; margin-bottom: 4px; }
.hero-tile .bonus-sub { font-size: 13px; color: var(--clr-text-muted); margin-bottom: 18px; }
.hero-tile .bonus-fs { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }

.breadcrumbs { padding: 12px 0; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--clr-text-muted); }
.breadcrumbs li a { color: var(--clr-text-muted); transition: color var(--transition); }
.breadcrumbs li a:hover { color: var(--clr-accent); text-decoration: none; }
.breadcrumbs li::after { content: '/'; opacity: 0.4; }
.breadcrumbs li:last-child::after { display: none; }
.breadcrumbs li:last-child { color: var(--clr-text); }

.section { padding: 48px 0; }
.section-title { font-size: clamp(20px, 2.8vw, 28px); font-weight: 700; margin-bottom: 8px; color: #fff; }
.section-title span { color: var(--clr-accent); }
.section-desc { font-size: 14px; color: var(--clr-text-muted); margin-bottom: 28px; }

.card { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 24px; }
.card2 { background: var(--clr-card2); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 28px; }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-md); border: 1px solid var(--clr-border); }
table { width: 100%; border-collapse: collapse; min-width: 600px; }
thead { background: var(--clr-header); }
thead th { padding: 13px 16px; text-align: left; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--clr-text-muted); white-space: nowrap; }
tbody tr { border-top: 1px solid var(--clr-border); transition: background var(--transition); }
tbody tr:hover { background: rgba(77,242,193,0.04); }
tbody td { padding: 13px 16px; font-size: 13.5px; color: var(--clr-text); vertical-align: middle; }
.pm-logo { display: flex; align-items: center; gap: 9px; }
.pm-logo-img { width: 36px; height: 22px; border-radius: 4px; background: #fff; object-fit: contain; padding: 2px 4px; }
.pm-name { font-weight: 600; color: #fff; }
.badge { display: inline-block; padding: 3px 9px; border-radius: 99px; font-size: 11px; font-weight: 600; }
.badge--green { background: rgba(77,242,193,0.15); color: var(--clr-accent); }
.badge--purple { background: rgba(87,76,123,0.3); color: #B8AEDE; }

.mirror-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.mirror-time { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--clr-text-muted); }
.mirror-time svg { width: 14px; height: 14px; color: var(--clr-accent); }
#liveDateTime { color: var(--clr-accent); font-weight: 600; }
.mirror-link { color: var(--clr-accent); font-weight: 600; font-size: 13.5px; }
.mirror-link:hover { text-decoration: underline; }
.status-active { display: flex; align-items: center; gap: 5px; font-size: 12px; color: #4DF2C1; font-weight: 600; }
.status-active::before { content: ''; display: block; width: 7px; height: 7px; border-radius: 50%; background: #4DF2C1; box-shadow: 0 0 6px #4DF2C1; }

.screenshots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.screenshot-item { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--clr-border); aspect-ratio: 16/10; background: var(--clr-card); }
.screenshot-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.screenshot-item:hover img { transform: scale(1.04); }

.slider-wrap { position: relative; overflow: hidden; border-radius: var(--radius-md); }
.slider-track { display: flex; transition: transform 0.38s cubic-bezier(.4,0,.2,1); }
.slider-track .screenshot-item { min-width: 85vw; flex-shrink: 0; aspect-ratio: 16/10; }
.slider-nav { display: none; justify-content: center; gap: 8px; margin-top: 12px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clr-border); cursor: pointer; transition: background var(--transition), transform var(--transition); border: none; padding: 0; }
.slider-dot.is-active { background: var(--clr-accent); transform: scale(1.3); }

.slot-game { background: linear-gradient(135deg, #1C1730, #2B2444); border: 2px solid rgba(77,242,193,0.2); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; max-width: 480px; margin: 0 auto; box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
.slot-game h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.slot-game p { font-size: 13px; color: var(--clr-text-muted); margin-bottom: 24px; }
.reels { display: flex; justify-content: center; gap: 10px; margin-bottom: 24px; }
.reel { width: 72px; height: 80px; background: #110E1B; border: 2px solid var(--clr-border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 38px; overflow: hidden; position: relative; box-shadow: inset 0 2px 8px rgba(0,0,0,0.5); }
.reel.spinning { animation: reel-spin 0.18s linear infinite; }
@keyframes reel-spin { 0%{transform:translateY(0)} 50%{transform:translateY(-10px)} 100%{transform:translateY(0)} }
.slot-result { min-height: 52px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; margin-bottom: 18px; }
.slot-result .win-msg { font-size: 17px; font-weight: 700; color: var(--clr-accent); animation: fadeIn 0.4s ease; }
.slot-result .lose-msg { font-size: 15px; color: var(--clr-text-muted); }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

.content-block { font-size: 15.5px; line-height: 1.8; color: var(--clr-text); }
.content-block h2 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; color: #fff; margin: 28px 0 10px; }
.content-block h3 { font-size: clamp(16px, 2vw, 20px); font-weight: 600; color: var(--clr-accent); margin: 22px 0 8px; }
.content-block h4 { font-size: 16px; font-weight: 600; color: #fff; margin: 18px 0 6px; }
.content-block p { margin-bottom: 14px; }
.content-block ul, .content-block ol { margin: 12px 0 12px 22px; }
.content-block ul { list-style: disc; }
.content-block ol { list-style: decimal; }
.content-block li { margin-bottom: 6px; }
.content-block a { color: var(--clr-accent); }
.content-block table { min-width: 100%; margin: 16px 0; border-collapse: collapse; }
.content-block table th { background: var(--clr-header); padding: 10px 14px; text-align: left; font-size: 13px; color: var(--clr-text-muted); border: 1px solid var(--clr-border); }
.content-block table td { padding: 10px 14px; border: 1px solid var(--clr-border); font-size: 14px; }
.content-block strong { color: #fff; font-weight: 600; }
.content-block blockquote { border-left: 3px solid var(--clr-accent); padding: 12px 18px; background: var(--clr-card); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 16px 0; color: var(--clr-text-muted); font-style: italic; }
.content__table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:16px 0;border-radius:8px;}
.content table{width:100%;min-width:500px;border-collapse:collapse;margin:0;font-size:.9rem;}
.author-box { display: flex; gap: 18px; align-items: flex-start; background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 22px; margin-top: 32px; }
.author-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: var(--clr-card2); border: 2px solid var(--clr-btn-secondary); }
.author-info { flex: 1; }
.author-name { font-weight: 700; color: #fff; font-size: 15px; margin-bottom: 4px; }
.author-bio { font-size: 13px; color: var(--clr-text-muted); line-height: 1.55; margin-bottom: 8px; }
.author-link { font-size: 12.5px; color: var(--clr-accent); display: inline-flex; align-items: center; gap: 5px; }
.author-link:hover { text-decoration: underline; }

.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 17px 20px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font); font-size: 15px; font-weight: 600; color: #fff; gap: 12px; transition: background var(--transition); }
.faq-q:hover { background: rgba(77,242,193,0.05); }
.faq-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(87,76,123,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform var(--transition), background var(--transition); }
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--clr-accent); }
.faq-icon svg { width: 10px; height: 10px; fill: var(--clr-text-muted); }
.faq-item.is-open .faq-icon svg { fill: #0D0B16; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.36s ease, padding var(--transition); }
.faq-a-inner { padding: 0 20px 18px; font-size: 14px; color: var(--clr-text-muted); line-height: 1.7; }
.faq-item.is-open .faq-a { max-height: 500px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.review-card { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-md); padding: 20px; display: flex; flex-direction: column; gap: 10px; transition: border-color var(--transition), box-shadow var(--transition); }
.review-card:hover { border-color: rgba(77,242,193,0.3); box-shadow: 0 4px 20px rgba(77,242,193,0.07); }
.review-head { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: var(--clr-card2); border: 1.5px solid var(--clr-btn-secondary); }
.review-name { font-weight: 600; color: #fff; font-size: 14px; }
.review-date { font-size: 11.5px; color: var(--clr-text-muted); }
.stars { display: flex; gap: 3px; }
.stars svg { width: 15px; height: 15px; fill: #F5C347; }
.review-text { font-size: 13.5px; color: var(--clr-text-muted); line-height: 1.65; }

.review-form { background: var(--clr-card2); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 32px; max-width: 520px; }
.review-form h3 { font-size: 18px; font-weight: 700; margin-bottom: 22px; color: #fff; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 13px; font-weight: 500; color: var(--clr-text-muted); }
.form-field input, .form-field textarea {
  background: #110E1B; border: 1.5px solid var(--clr-border); border-radius: var(--radius-sm);
  color: var(--clr-text); font-family: var(--font); font-size: 14px;
  padding: 11px 14px; transition: border-color var(--transition); outline: none; resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--clr-btn-primary); }
.form-field textarea { min-height: 90px; }
.form-notice { font-size: 12.5px; color: var(--clr-text-muted); margin-top: 10px; }
.form-success { display: none; background: rgba(77,242,193,0.1); border: 1px solid rgba(77,242,193,0.3); border-radius: var(--radius-sm); padding: 14px 18px; color: var(--clr-accent); font-size: 14px; margin-top: 14px; }

.site-footer { background: var(--clr-header); padding: 52px 0 24px; margin-top: auto; }
.footer-top { display: grid; grid-template-columns: 220px 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-logo-wrap { display: flex; flex-direction: column; gap: 14px; }
.footer-logo-wrap a{ display: block; width: fit-content; }
.footer-logo-wrap img { height: 42px; width: auto; border-radius: 8px; }
.footer-tagline { font-size: 13px; color: var(--clr-text-muted); line-height: 1.55; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.07); transition: background var(--transition); }
.footer-social a:hover { background: rgba(77,242,193,0.2); }
.footer-social svg { width: 16px; height: 16px; fill: var(--clr-text-muted); }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clr-text-muted); margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: var(--clr-text); font-size: 13.5px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--clr-accent); text-decoration: none; }
.footer-divider { border: none; border-top: 1px solid var(--clr-border); margin: 28px 0 24px; }
.footer-logos { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 24px; }
.footer-logos .fl-label { font-size: 11px; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.08em; width: 100%; }
.footer-logo-pill { display: flex; align-items: center; justify-content: center; height: 32px; padding: 4px 12px; background: rgba(255,255,255,0.07); border-radius: var(--radius-sm); font-size: 11.5px; font-weight: 600; color: var(--clr-text-muted); border: 1px solid var(--clr-border); white-space: nowrap; }
.footer-country { display: flex; align-items: center; gap: 7px; margin-bottom: 10px; }
.footer-flag { font-size: 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: var(--clr-text-muted); line-height: 1.6; }
.footer-copy a { color: var(--clr-text-muted); }
.footer-copy a:hover { color: var(--clr-accent); }
.age-badge { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,80,80,0.15); border: 1.5px solid rgba(255,80,80,0.35); font-size: 11px; font-weight: 700; color: #FF6B6B; flex-shrink: 0; }
.footer-legal { display: flex; align-items: center; gap: 12px; }

.sticky-widget { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: linear-gradient(90deg, #1C1730 0%, #2B2444 100%); border-top: 2px solid var(--clr-accent); padding: 12px 18px; display: flex; align-items: center; justify-content: center; gap: 14px; box-shadow: 0 -4px 24px rgba(0,0,0,0.4); }
.widget-text { font-size: 13px; color: var(--clr-text); }
.widget-text strong { color: var(--clr-accent); }
.widget-close { background: none; border: none; cursor: pointer; color: var(--clr-text-muted); padding: 4px; font-size: 18px; line-height: 1; margin-left: 8px; transition: color var(--transition); }
.widget-close:hover { color: var(--clr-text); }
.promo-code { display: inline-flex; align-items: center; gap: 7px; background: rgba(77,242,193,0.1); border: 1px dashed rgba(77,242,193,0.4); border-radius: var(--radius-sm); padding: 5px 12px; font-family: monospace; font-size: 14px; font-weight: 700; color: var(--clr-accent); cursor: pointer; transition: background var(--transition); user-select: all; }
.promo-code:hover { background: rgba(77,242,193,0.18); }

.section-gap { margin-bottom: 32px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-0 { margin-bottom: 0; }

.online-count { font-weight: 600; color: var(--clr-accent); }

body { padding-bottom: 60px; }

@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-logo-wrap { grid-column: 1 / -1; }
  .screenshots-grid { grid-template-columns: repeat(2, 1fr); }
  .header-nav a {padding: 5px 9px;}

}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .hero-content { flex-direction: column; align-items: flex-start; }
  .hero-tile { width: 100%; max-width: 340px; }
  .slider-wrap { display: block; }
  .slider-nav { display: flex; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .sticky-widget { flex-wrap: wrap; justify-content: center; gap: 10px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 24px; }
  .hero-tile { padding: 20px 18px; }
  .hero-tile .bonus-amount { font-size: 30px; }
  .slot-game { padding: 24px 16px; }
  .reel { width: 58px; height: 66px; font-size: 30px; }
  .review-form { padding: 22px 16px; }
  .card {padding: 20px;}
  .author-box{ flex-direction: column;}
}
@media (max-width: 420px) {
.header-actions .btn--secondary{display: none;}
.card {padding: 16px;}
}
.xp9f2a { display: none; }
.j7r3kq { visibility: hidden; position: absolute; width: 0; height: 0; overflow: hidden; }
.wp-block-paragraph { display: inline; }
.wp-caption { border: none; }
.entry-content > :first-child { margin-top: 0; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; }
.alignright { float: right; }
.size-full { max-width: 100%; }
.wp-block-group__inner-container { max-width: 100%; }
.elementor-section { position: relative; }
.e-con-inner { width: 100%; }
.elementor-widget-wrap { display: contents; }
.wc-block-components-payment-method-label { display: none; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; width: 1px; overflow: hidden; position: absolute; }

.fade-in { animation: fadeIn 0.5s ease both; }
@keyframes slideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.slide-up { animation: slideUp 0.5s ease both; }
