@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800&display=swap");

:root {
  --bg-body: #090c12;
  --bg-header: #0c1018;
  --bg-card: #131720;
  --bg-input: #0e1219;
  --accent: #F5A623;
  --btn-color: #2beead;
  --btn-hover: #5dffc6;
  --btn-glow: rgba(43, 238, 173, 0.3);
  --accent-hover: #ffbe4a;
  --accent-glow: rgba(245, 166, 35, 0.3);
  --accent-dim: #c4851c;
  --cyan: #F5A623;
  --blue: #F5A623;
  --red: #ef4444;
  --text: #eaedf3;
  --text-dim: #8692a6;
  --border: #1f2533;
  --border-light: #2a3245;
  --radius: 12px;
  --radius-pill: 999px;
  --fast: 0.18s ease;
  --header-h: 60px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Exo 2", system-ui, sans-serif; background: var(--bg-body); color: var(--text); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
.aw-container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.aw-header { position: sticky; top: 0; z-index: 100; background: var(--bg-header); border-bottom: 1px solid var(--border); }
.aw-header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.aw-logo { display: inline-flex; align-items: center; text-decoration: none; }
.aw-logo img { height: 69px; width: auto; display: block; }
.aw-nav { margin-left: 32px; flex: 1; }
.aw-nav__list { list-style: none; display: flex; align-items: center; gap: 6px; }
.aw-nav__list a { list-style: none; display: flex; align-items: center; gap: 6px; }
.nav-item { list-style: none; display: flex; align-items: center; gap: 6px; }
.aw-nav__link, .nav-link { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; color: var(--text-dim); padding: 6px 14px; border-radius: var(--radius-pill); transition: color var(--fast), background var(--fast); }
.aw-nav__link:hover, .nav-link:hover { color: #fff; background: rgba(245, 166, 35, 0.1); }
.aw-nav__link--active, .nav-link--active { color: #fff; background: var(--accent); }
.aw-header__actions { display: inline-flex; align-items: center; gap: 8px; }
.aw-header__actions a { text-decoration: none; }

/* BUTTONS */
.aw-btn { font-family: inherit; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border-radius: var(--radius-pill); padding: 8px 20px; border: none; cursor: pointer; white-space: nowrap; transition: background var(--fast), border-color var(--fast), transform var(--fast), box-shadow var(--fast); }
.aw-btn--primary { background: var(--btn-color); color: #041a12; box-shadow: 0 0 16px var(--btn-glow); }
.aw-btn--primary:hover { background: var(--btn-hover); transform: translateY(-1px); box-shadow: 0 0 24px var(--btn-glow); }
.aw-btn--outline { background: transparent; color: var(--text); border: 1px solid var(--border-light); }
.aw-btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.aw-btn--full { width: 100%; }

/* BURGER & MOBILE */
.aw-burger { display: none; position: relative; width: 34px; height: 34px; border-radius: var(--radius-pill); border: 1px solid var(--border-light); background: var(--bg-input); cursor: pointer; justify-content: center; align-items: center; transition: border-color var(--fast); }
.aw-burger span { position: absolute; display: block; width: 16px; height: 2px; border-radius: var(--radius-pill); background: #fff; transition: transform var(--fast), opacity var(--fast), top var(--fast), bottom var(--fast); }
.aw-burger span:nth-child(1) { top: 10px; }
.aw-burger span:nth-child(2) { top: 15px; }
.aw-burger span:nth-child(3) { bottom: 10px; }
.aw-burger--active span:nth-child(1) { top: 14px; transform: rotate(45deg); }
.aw-burger--active span:nth-child(2) { opacity: 0; }
.aw-burger--active span:nth-child(3) { bottom: 14px; transform: rotate(-45deg); }
.aw-mobile-menu { position: fixed; inset: var(--header-h) 0 0 0; background: var(--bg-header); transform: translateY(-100%); opacity: 0; pointer-events: none; transition: transform 0.25s ease, opacity 0.25s ease; z-index: 90; display: flex; flex-direction: column; padding: 16px 20px 200px; overflow-y: auto; }
.aw-mobile-menu--open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.aw-mobile-menu__nav ul { list-style: none; margin: 0 0 16px; }
.aw-mobile-menu__nav li + li { margin-top: 4px; }
.aw-mobile-menu__nav a { display: block; padding: 10px 0; font-size: 15px; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border); }
.aw-mobile-menu__nav a:hover { color: var(--accent); }
.aw-mobile-menu__actions { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.aw-mobile-menu__actions a { text-decoration: none; }
.aw-no-scroll { overflow: hidden; }

/* HERO / SLIDER */
.aw-hero { padding: 16px 0 8px; }
.aw-slider { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bg-card); }
.aw-slider__track { position: relative; width: 100%; height: min(320px, 28vw); min-height: 180px; aspect-ratio: 16/7; }
.aw-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity 0.5s ease; }
.aw-slide--active { opacity: 1; pointer-events: auto; }
.aw-slide__link { display: block; width: 100%; height: 100%; }
.aw-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aw-slider__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: rgba(14,17,24,0.8); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; transition: background var(--fast), border-color var(--fast); }
.aw-slider__arrow span { color: #fff; font-size: 18px; line-height: 1; }
.aw-slider__arrow--prev { left: 14px; }
.aw-slider__arrow--next { right: 14px; }
.aw-slider__arrow:hover { border-color: var(--accent); background: rgba(14,17,24,0.95); }
.aw-slider__dots { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); display: flex; gap: 6px; z-index: 5; }
.aw-slider__dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.35); background: rgba(14,17,24,0.6); cursor: pointer; transition: background var(--fast), border-color var(--fast); }
.aw-slider__dot--active { background: var(--accent); border-color: var(--accent); }

/* FILTERS */
.aw-filters { background: var(--bg-body); border-bottom: 1px solid var(--border); }
.aw-filters__header { display: none; padding: 8px 0 0; }
.aw-filters__toggle { width: 100%; display: inline-flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 14px; border-radius: 14px; border: 1px solid var(--border); background: var(--bg-input); color: var(--text); cursor: pointer; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.aw-filters__toggle-label { display: inline-flex; align-items: center; gap: 6px; }
.aw-filters__toggle-label::before { content: "\2699"; font-size: 14px; }
.aw-filters__toggle-icon { width: 16px; height: 16px; position: relative; }
.aw-filters__toggle-icon::before, .aw-filters__toggle-icon::after { content: ""; position: absolute; left: 0; right: 0; height: 2px; border-radius: var(--radius-pill); background: var(--text); transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease; }
.aw-filters__toggle-icon::before { top: 4px; }
.aw-filters__toggle-icon::after { bottom: 4px; }
.aw-filters--open .aw-filters__toggle-icon::before { top: 7px; transform: rotate(45deg); }
.aw-filters--open .aw-filters__toggle-icon::after { bottom: 7px; transform: rotate(-45deg); }
.aw-filters__scroll { display: flex; align-items: center; gap: 6px; padding: 10px 0; overflow-x: auto; overflow-y: hidden; scrollbar-width: thin; scrollbar-color: var(--accent) var(--border); }
.aw-filters__scroll::-webkit-scrollbar { height: 4px; }
.aw-filters__scroll::-webkit-scrollbar-track { background: var(--border); border-radius: 4px; }
.aw-filters__scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
.aw-filter { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: var(--radius-pill); border: 1px solid var(--border); background: transparent; color: var(--text-dim); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; white-space: nowrap; text-decoration: none; transition: background var(--fast), border-color var(--fast), color var(--fast); }
.aw-filter__icon { width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.aw-filter__icon::before { content: ""; }
.aw-filter--search .aw-filter__icon::before { content: "\1F50D"; }
.aw-filter--collections .aw-filter__icon::before { content: "\25C6"; }
.aw-filter--providers .aw-filter__icon::before { content: "\2261"; }
.aw-filter--all-games .aw-filter__icon::before { content: "\1F3AE"; }
.aw-filter--favourites .aw-filter__icon::before { content: "\2764"; }
.aw-filter--recommended .aw-filter__icon::before { content: "\1F44D"; }
.aw-filter--top .aw-filter__icon::before { content: "\2605"; }
.aw-filter--new .aw-filter__icon::before { content: "\2726"; font-size: 10px; }
.aw-filter--slots .aw-filter__icon::before { content: "\1F3B0"; }
.aw-filter--wager .aw-filter__icon::before { content: "%"; }
.aw-filter--bonus-buy .aw-filter__icon::before { content: "\1F381"; }
.aw-filter--drops .aw-filter__icon::before { content: "\2618"; }
.aw-filter--jackpots .aw-filter__icon::before { content: "\1F4B0"; }
.aw-filter--instant .aw-filter__icon::before { content: "\26A1"; }
.aw-filter:hover { border-color: var(--accent); color: var(--accent); background: rgba(245, 166, 35, 0.06); }
.aw-filter--active { background: var(--accent); border-color: var(--accent); color: #1a0e00; font-weight: 700; }

/* GAMES */
.aw-games { padding: 20px 0 36px; }
.aw-section-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.aw-section-title { font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.aw-section-link { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); text-decoration: none; padding: 6px 16px; border: 1px solid var(--accent); border-radius: var(--radius-pill); transition: background var(--fast), color var(--fast); }
.aw-section-link__icon { font-size: 14px; }
.aw-section-link:hover { background: var(--accent); color: #1a0e00; }
.aw-games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.aw-game-card { position: relative; display: block; border-radius: var(--radius); overflow: hidden; background: var(--bg-card); cursor: pointer; text-decoration: none; transition: transform var(--fast), box-shadow var(--fast); }
.aw-game-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,0,0,0.5); }
.aw-game-card__img-wrap { aspect-ratio: 1; overflow: hidden; }
.aw-game-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aw-game-card__badge { position: absolute; top: 8px; left: 8px; padding: 2px 8px; border-radius: var(--radius-pill); font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; z-index: 2; color: #fff; }
.aw-game-card__badge--hot { background: var(--red); }
.aw-game-card__badge--new { background: #22c55e; color: #fff; }
.aw-game-card__fav { position: absolute; top: 8px; right: 8px; width: 26px; height: 26px; border-radius: 50%; background: rgba(14,17,24,0.75); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 12px; z-index: 2; transition: border-color var(--fast); }
.aw-game-card:hover .aw-game-card__fav { border-color: var(--accent); }
.aw-game-card__fav::before { content: "\2661"; color: var(--text-dim); }
.aw-game-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(14,17,24,0.92) 70%); display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 6px; padding: 14px 10px; opacity: 0; pointer-events: none; transform: translateY(6px); transition: opacity var(--fast), transform var(--fast); }
.aw-game-card:hover .aw-game-card__overlay { opacity: 1; pointer-events: auto; transform: translateY(0); }
.aw-game-card__btn { width: 100%; max-width: 120px; border-radius: var(--radius-pill); border: none; padding: 6px 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background var(--fast), transform var(--fast); }
.aw-game-card__btn--play { background: var(--btn-color); color: #041a12; }
.aw-game-card__btn--play:hover { background: var(--btn-hover); }
.aw-game-card__btn--demo { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.aw-game-card__btn--demo:hover { border-color: #fff; }

/* HIGHLIGHTS */
.aw-highlights { padding: 0 0 32px; }
.aw-highlights__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.aw-highlight { border-radius: var(--radius); padding: 18px; background: var(--bg-card); border: 1px solid var(--border); transition: transform var(--fast), border-color var(--fast); }
.aw-highlight:hover { transform: translateY(-3px); border-color: var(--accent); }
.aw-highlight__icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 10px; }
.aw-highlight__icon--bonus { background: linear-gradient(135deg, #F5A623, #ffcf6f); }
.aw-highlight__icon--tournament { background: linear-gradient(135deg, #e08a1e, #f5c563); }
.aw-highlight__icon--cashback { background: linear-gradient(135deg, #c47a15, #e8a73d); }
.aw-highlight__title { font-size: 15px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; }
.aw-highlight__text { font-size: 13px; line-height: 1.5; color: var(--text-dim); margin-bottom: 10px; }
.aw-highlight__link { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; color: var(--accent); }
.aw-highlight__link::after { content: " \2192"; }
.aw-highlight__link:hover { color: var(--accent-hover); }

/* ARTICLE */
.article-content { max-width: 1260px; margin: 0 auto 40px; color: #c8d0e0; line-height: 1.65; padding: 28px 28px 32px; background: var(--bg-card); border-radius: 16px; border: 1px solid var(--border); }
.article-content h1, .article-content h2, .article-content h3 { font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; margin: 0 0 14px; }
.article-content h1 { font-size: 22px; margin-top: 4px; }
.article-content h2 { font-size: 18px; margin-top: 28px; }
.article-content h3 { font-size: 15px; margin-top: 20px; }
.article-content p { margin: 0 0 14px; font-size: 14px; }
.article-content strong { font-weight: 700; color: #fff; }
.article-content ul, .article-content ol { margin: 0 0 14px 20px; padding: 0; }
.article-content li { margin-bottom: 5px; font-size: 14px; }
.article-content blockquote { margin: 16px 0; padding: 14px 18px; border-left: 3px solid var(--accent); background: rgba(245, 166, 35, 0.06); border-radius: 0 var(--radius) var(--radius) 0; font-size: 13px; color: var(--text-dim); }
.article-content table { width: 100%; border-collapse: collapse; margin: 16px 0 20px; font-size: 13px; display: block; overflow-x: auto; }
.article-content thead { background: rgba(24,29,40,0.9); }
.article-content th, .article-content td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.article-content th { font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 11px; color: var(--accent); }
.article-content tbody tr:nth-child(even) { background: rgba(20,24,32,0.6); }
.article-content img { max-width: 100%; height: auto; border-radius: var(--radius); display: block; margin: 14px auto 18px; }

/* FOOTER */
.aw-footer { background: #070a10; border-top: 1px solid var(--border); padding: 32px 0 16px; color: var(--text); position: relative; }
.aw-footer__to-top { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-header); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform var(--fast), border-color var(--fast); z-index: 2; }
.aw-footer__to-top-icon { color: #fff; font-size: 16px; }
.aw-footer__to-top:hover { transform: translateX(-50%) translateY(-2px); border-color: var(--accent); }
.aw-footer__grid { display: grid; grid-template-columns: 2fr 1.4fr 1.4fr 2fr 2fr; gap: 24px; padding: 12px 0 20px; }
.aw-footer__title { margin: 0 0 10px; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.aw-footer__list { list-style: none; }
.aw-footer__list li + li { margin-top: 4px; }
.aw-footer__list a { font-size: 13px; color: var(--text-dim); text-decoration: none; }
.aw-footer__list a:hover { color: #fff; }
.aw-footer-payments { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.aw-footer-payment { display: flex; align-items: center; justify-content: center; padding: 7px 8px; border-radius: 8px; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; background: var(--bg-input); border: 1px solid var(--border); }
.aw-footer-contact__item { font-size: 13px; margin-bottom: 4px; }
.aw-footer-contact__item--accent { margin-top: 4px; font-weight: 700; color: var(--accent); }
.aw-footer-contact a { color: var(--text-dim); text-decoration: none; }
.aw-footer-contact a:hover { color: #fff; }
.aw-footer-contact-icons { display: flex; gap: 6px; margin-top: 8px; }
.aw-footer-contact-icon { width: 26px; height: 26px; border-radius: 8px; background: var(--bg-input); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; }
.aw-footer__legal { max-width: 960px; margin: 8px auto 10px; text-align: center; font-size: 11px; line-height: 1.6; color: var(--text-dim); }
.aw-footer__legal p { margin: 4px 0; }
.aw-footer__legal a { color: var(--accent); text-decoration: none; font-weight: 600; }
.aw-footer__legal a:hover { color: #fff; }
.aw-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--border); padding-top: 10px; font-size: 11px; color: var(--text-dim); }
.aw-footer__time::before { content: "\00A9 "; }
.aw-footer-18 { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--red); color: var(--red); font-size: 10px; font-weight: 800; margin-right: 6px; }
.aw-footer-aware { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }

/* LANG */
.aw-lang { display: inline-flex; align-items: center; border: 1px solid var(--border-light); background: var(--bg-input); border-radius: 10px; overflow: hidden; height: 34px; }
.aw-lang__link { display: inline-flex; align-items: center; justify-content: center; height: 34px; padding: 0 14px; min-width: 44px; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); text-decoration: none; transition: background var(--fast), color var(--fast); }
.aw-lang__link:hover { background: rgba(245, 166, 35, 0.12); color: #fff; }
.aw-lang__link.is-active { background: var(--accent); color: #1a0e00; }
.aw-lang--mobile { width: 100%; height: 44px; border: none; background: var(--bg-input); border-radius: 12px; overflow: hidden; position: relative; }
.aw-lang--mobile .aw-lang__link { flex: 1; height: 44px; font-size: 14px; font-weight: 800; letter-spacing: 0.1em; border-radius: 0; text-align: center; justify-content: center; }
.aw-lang--mobile .aw-lang__link.is-active { background: var(--accent); color: #1a0e00; border-radius: 10px; margin: 2px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }
.aw-lang--mobile .aw-lang__link:not(.is-active) { color: var(--text-dim); }
.aw-lang--mobile .aw-lang__link:not(.is-active):hover { color: #fff; background: rgba(245,166,35,0.08); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .aw-nav, .aw-header__actions { display: none; }
  .aw-burger { display: inline-flex; }
  .aw-logo img { height: 69px; }
  .aw-games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .aw-highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .aw-footer__grid { grid-template-columns: repeat(3, 1fr); row-gap: 20px; }
  .aw-footer__col--payments { grid-column: span 2; }
}
@media (max-width: 768px) {
  .aw-header__inner { height: 54px; }
  .aw-filters__header { display: flex; }
  .aw-filters__scroll { flex-wrap: wrap; row-gap: 6px; column-gap: 6px; max-height: 0; overflow: hidden; padding: 0; transition: max-height 0.25s ease, padding 0.25s ease; }
  .aw-filters--open .aw-filters__scroll { max-height: 260px; overflow-y: auto; padding: 14px 0; }
  .aw-filter { flex: 0 0 calc(50% - 3px); justify-content: flex-start; }
  .aw-slider__track { height: auto; min-height: 140px; aspect-ratio: 16/8; }
  .aw-slider__arrow { width: 30px; height: 30px; }
  .aw-slider__arrow--prev { left: 8px; }
  .aw-slider__arrow--next { right: 8px; }
  .aw-slider__arrow span { font-size: 14px; }
  .aw-games { padding: 16px 0 24px; }
  .aw-section-title { font-size: 16px; }
  .aw-games-grid { display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px; }
  .aw-games-grid::-webkit-scrollbar { display: none; }
  .aw-game-card { flex: 0 0 156px; scroll-snap-align: start; }
  .aw-game-card__img-wrap { width: 156px; height: 156px; }
  .aw-highlights { padding: 0 0 24px; }
  .aw-highlights__grid { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .aw-highlights__grid::-webkit-scrollbar { display: none; }
  .aw-highlight { flex: 0 0 250px; scroll-snap-align: start; }
  .aw-footer { padding-top: 36px; }
  .aw-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .aw-footer__col--payments, .aw-footer__col--contacts { grid-column: span 2; }
  .aw-footer__bottom { flex-direction: column; align-items: flex-start; }
  .aw-footer__legal { font-size: 10px; padding: 0 8px; }
  .article-content { padding: 20px 16px; border-radius: 12px; }
  .article-content h1 { font-size: 18px; }
  .article-content h2 { font-size: 16px; }
}
@media (max-width: 480px) {
  .aw-section-title { font-size: 15px; }
  .aw-section-link { font-size: 11px; padding: 5px 12px; }
  .aw-footer__grid { grid-template-columns: 1fr; }
  .aw-footer__col--payments, .aw-footer__col--contacts { grid-column: 1; }
  .aw-footer__bottom { align-items: center; text-align: center; }
  .aw-highlight { flex: 0 0 230px; }
  .aw-slider__track { aspect-ratio: 16/9; min-height: 120px; }
  .aw-slider__arrow { width: 26px; height: 26px; }
  .aw-slider__arrow span { font-size: 12px; }
  .aw-slider__dots { bottom: 8px; gap: 4px; }
  .aw-slider__dot { width: 6px; height: 6px; }
  .article-content h1 { font-size: 16px; }
}

/* --- Байлайн автора --- */
.aw-byline { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; padding: 12px 14px; background: rgba(245, 166, 35, 0.04); border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; }
.aw-byline__avatar { flex: 0 0 auto; }
.aw-byline__avatar img { display: block; width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border-light); }
.aw-byline__meta { min-width: 0; }
.aw-byline__line { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; font-size: 13px; }
.aw-byline__label { color: var(--text-dim); }
.aw-byline__name { font-weight: 700; color: #fff; }
.aw-byline__role { color: var(--text-dim); }
.aw-byline__role::before { content: "— "; }
.aw-byline__line--dates { margin-top: 3px; font-size: 12px; color: var(--text-dim); }
.aw-byline__sep { opacity: 0.5; }
a.aw-byline__name { text-decoration: none; border-bottom: 1px solid rgba(245, 166, 35, 0.4); transition: color var(--fast), border-color var(--fast); }
a.aw-byline__name:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* --- Страница автора --- */
.aw-author { display: flex; align-items: center; gap: 20px; margin: 0 0 24px; padding: 20px; background: var(--bg-input); border: 1px solid var(--border-light); border-radius: var(--radius); }
.aw-author__photo { flex: 0 0 auto; }
.aw-author__photo img { display: block; width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.aw-author__intro { min-width: 0; }
.aw-author__intro h1 { margin: 0 0 6px; }
.aw-author__role { margin: 0 0 12px; font-size: 13px; color: var(--accent); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.aw-author__facts { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.aw-author__facts li { position: relative; margin: 0; padding-left: 14px; font-size: 13px; color: var(--text-dim); }
.aw-author__facts li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.aw-author__articles { list-style: none; margin-left: 0; }
.aw-author__articles li { position: relative; padding-left: 16px; }
.aw-author__articles li::before { content: "›"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.aw-author__articles a { color: #c8d0e0; text-decoration: none; border-bottom: 1px solid var(--border-light); transition: color var(--fast), border-color var(--fast); }
.aw-author__articles a:hover { color: var(--accent); border-bottom-color: var(--accent); }

@media (max-width: 640px) {
  .aw-author { flex-direction: column; align-items: flex-start; gap: 14px; padding: 16px; }
  .aw-author__photo img { width: 84px; height: 84px; }
  .aw-author__facts { flex-direction: column; gap: 6px; }
}

/* --- Редакционная оценка --- */
.aw-rating { margin: 24px 0; padding: 18px 20px; background: var(--bg-input); border: 1px solid var(--border-light); border-radius: var(--radius); }
.aw-rating__head { display: flex; align-items: center; gap: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.aw-rating__score { flex: 0 0 auto; display: flex; align-items: baseline; gap: 3px; padding: 10px 16px; background: rgba(245, 166, 35, 0.08); border: 1px solid var(--accent); border-radius: var(--radius); }
.aw-rating__value { font-size: 30px; font-weight: 800; line-height: 1; color: var(--accent); }
.aw-rating__max { font-size: 13px; font-weight: 700; color: var(--text-dim); }
.aw-rating__summary { min-width: 0; }
.aw-rating__title { display: block; font-size: 15px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; margin-bottom: 5px; }
.aw-rating__note { margin: 0; font-size: 13px; line-height: 1.5; color: var(--text-dim); }

.aw-rating__criteria { list-style: none; margin: 14px 0 0; padding: 0; }
.aw-rating__criterion { display: grid; grid-template-columns: 190px 1fr 34px; align-items: center; gap: 12px; padding: 6px 0; font-size: 13px; }
.aw-rating__criterion-name { color: #c8d0e0; }
.aw-rating__bar { position: relative; height: 6px; background: var(--border); border-radius: var(--radius-pill); overflow: hidden; }
.aw-rating__bar-fill { position: absolute; inset: 0 auto 0 0; background: linear-gradient(90deg, var(--accent-dim), var(--accent)); border-radius: var(--radius-pill); }
.aw-rating__criterion-value { text-align: right; font-weight: 700; color: #fff; }

.aw-rating__method { margin: 14px 0 0; padding-top: 12px; border-top: 1px solid var(--border); font-size: 12px; line-height: 1.5; color: var(--text-dim); }
.aw-rating__method-author { color: #c8d0e0; font-weight: 600; }

@media (max-width: 640px) {
  .aw-rating { padding: 14px; }
  .aw-rating__head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .aw-rating__criterion { grid-template-columns: 1fr 34px; grid-template-areas: "name value" "bar bar"; gap: 4px 10px; }
  .aw-rating__criterion-name { grid-area: name; }
  .aw-rating__criterion-value { grid-area: value; }
  .aw-rating__bar { grid-area: bar; margin-top: 2px; }
}