/*! AllwinBets - Unified Styles */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* ========================================================================
   NORMALIZE
   ======================================================================== */

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

/* ========================================================================
   CSS VARIABLES - NEW COLOR SCHEME (Gold/Amber Accent)
   ======================================================================== */

:root {
    /* Background colors */
    --aw-bg-header: #0a0d14;
    --aw-bg-page: #060810;
    --aw-bg-card: #0d1017;
    --aw-bg-elevated: #12151d;
    
    /* Accent colors - Gold/Amber theme */
    --aw-accent: #f59e0b;
    --aw-accent-hover: #fbbf24;
    --aw-accent-glow: rgba(245, 158, 11, 0.5);
    --aw-accent-secondary: #d97706;
    
    /* Text colors */
    --aw-text-main: #f8fafc;
    --aw-text-muted: #94a3b8;
    --aw-text-dim: #64748b;
    
    /* Button colors */
    --aw-btn-primary: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --aw-btn-primary-hover: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --aw-btn-outline-border: #334155;
    
    /* Effects */
    --aw-radius-sm: 8px;
    --aw-radius-md: 12px;
    --aw-radius-lg: 16px;
    --aw-radius-pill: 999px;
    --aw-transition-fast: 0.2s ease;
    --aw-transition-med: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --aw-header-height: 68px;
    
    /* Gradients */
    --aw-gradient-primary: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    --aw-gradient-dark: radial-gradient(ellipse at top, #141824 0%, #0a0d14 50%, #060810 100%);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Rajdhani", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--aw-bg-page);
    color: var(--aw-text-main);
    min-height: 100vh;
}

/* ========================================================================
   CONTAINER
   ======================================================================== */

.aw-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================================================
   STICKY CTA (Bottom Bar)
   ======================================================================== */

.aw-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(180deg, rgba(6, 8, 16, 0.95) 0%, rgba(10, 13, 20, 0.98) 100%);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(245, 158, 11, 0.15);
    z-index: 100;
}

.aw-sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 640px;
    margin: 0 auto;
}

.aw-sticky-cta__btn {
    position: relative;
    flex: 1;
    max-width: 280px;
    padding: 14px 24px;
    border-radius: var(--aw-radius-pill);
    font-family: "Orbitron", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--aw-transition-med);
    overflow: hidden;
}

.aw-sticky-cta__btn--register {
    background: var(--aw-gradient-primary);
    color: #0a0d14;
    box-shadow: 0 4px 24px var(--aw-accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: ctaPulse 2.5s infinite;
}

.aw-sticky-cta__btn--register:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px var(--aw-accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.aw-sticky-cta__btn-glow {
    position: absolute;
    inset: -50%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 4px 24px var(--aw-accent-glow);
    }
    50% {
        box-shadow: 0 6px 32px rgba(245, 158, 11, 0.7), 0 0 0 8px rgba(245, 158, 11, 0);
    }
}

.aw-sticky-cta__btn--download {
    background: rgba(255, 255, 255, 0.95);
    color: #0a0d14;
    border: none;
}

.aw-sticky-cta__btn--download:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* ========================================================================
   HEADER
   ======================================================================== */

.aw-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--aw-gradient-dark);
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.aw-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--aw-header-height);
}

.aw-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.aw-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.aw-nav {
    margin-left: 48px;
    flex: 1 1 auto;
}

.aw-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.aw-nav__link {
    position: relative;
    font-family: "Orbitron", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--aw-text-main);
    padding: 10px 18px;
    border-radius: var(--aw-radius-pill);
    transition: all var(--aw-transition-fast);
}

.aw-nav__link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--aw-radius-pill);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--aw-transition-fast);
}

.aw-nav__link:hover::before,
.aw-nav__link:focus::before {
    opacity: 1;
}

.aw-nav__link:hover,
.aw-nav__link:focus {
    color: var(--aw-accent);
}

.aw-header__buttons {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.aw-btn {
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--aw-radius-pill);
    padding: 10px 22px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--aw-transition-med);
}

.aw-btn--primary {
    background: var(--aw-btn-primary);
    color: #0a0d14;
    box-shadow: 0 4px 16px var(--aw-accent-glow);
}

.aw-btn--primary:hover {
    background: var(--aw-btn-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--aw-accent-glow);
}

.aw-btn--outline {
    background: transparent;
    color: var(--aw-text-main);
    border: 1px solid var(--aw-btn-outline-border);
}

.aw-btn--outline:hover {
    border-color: var(--aw-accent);
    color: var(--aw-accent);
}

/* Burger Menu */
.aw-burger {
    display: none;
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: var(--aw-radius-sm);
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.8);
    padding: 0;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    transition: all var(--aw-transition-fast);
}

.aw-burger span {
    position: absolute;
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--aw-accent);
    transition: all var(--aw-transition-fast);
}

.aw-burger span:nth-child(1) { top: 11px; }
.aw-burger span:nth-child(2) { top: 16px; }
.aw-burger span:nth-child(3) { bottom: 11px; }

.aw-burger--active span:nth-child(1) {
    top: 16px;
    transform: rotate(45deg);
}

.aw-burger--active span:nth-child(2) {
    opacity: 0;
}

.aw-burger--active span:nth-child(3) {
    bottom: 16px;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.aw-mobile-menu {
    position: fixed;
    inset: var(--aw-header-height) 0 0 0;
    background: var(--aw-gradient-dark);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 40;
    display: flex;
    flex-direction: column;
    padding: 20px 24px 240px;
    overflow-y: auto;
}

.aw-mobile-menu--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.aw-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.aw-mobile-nav li + li {
    margin-top: 4px;
}

.aw-mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--aw-text-main);
    text-decoration: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    transition: color var(--aw-transition-fast);
}

.aw-mobile-nav a:hover {
    color: var(--aw-accent);
}

.aw-mobile-menu__buttons {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aw-mobile-menu__buttons .aw-btn {
    width: 100%;
    text-align: center;
}

/* ========================================================================
   HERO / SLIDER
   ======================================================================== */

.aw-hero {
    padding: 16px 0 36px;
    background: var(--aw-bg-page);
}

.aw-slider {
    position: relative;
    border-radius: var(--aw-radius-lg);
    overflow: hidden;
    background: var(--aw-bg-card);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(245, 158, 11, 0.1);
}

.aw-slider__track {
    position: relative;
    width: 100%;
    height: min(360px, 34vw);
    background: var(--aw-bg-card);
}

.aw-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.aw-slider__slide--active {
    opacity: 1;
    pointer-events: auto;
}

.aw-slider__link {
    display: block;
    width: 100%;
    height: 100%;
}

.aw-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.aw-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: var(--aw-radius-sm);
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: rgba(10, 13, 20, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: all var(--aw-transition-fast);
    z-index: 5;
}

.aw-slider__arrow span {
    color: var(--aw-accent);
    font-size: 18px;
    font-weight: 700;
}

.aw-slider__arrow--prev { left: 16px; }
.aw-slider__arrow--next { right: 16px; }

.aw-slider__arrow:hover {
    border-color: var(--aw-accent);
    background: rgba(10, 13, 20, 0.95);
    transform: translateY(-50%) scale(1.08);
}

.aw-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.aw-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: var(--aw-radius-pill);
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.8);
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: all var(--aw-transition-fast);
}

.aw-slider__dot--active {
    background: var(--aw-accent);
    border-color: var(--aw-accent);
    transform: scale(1.2);
    box-shadow: 0 0 12px var(--aw-accent-glow);
}

/* ========================================================================
   FILTERS SECTION
   ======================================================================== */

.aw-filters-section {
    background: var(--aw-bg-elevated);
    border-top: 1px solid rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(15, 23, 42, 0.8);
}

.aw-filters-toggle {
    display: none;
    padding: 10px 0 0;
}

.aw-filters-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--aw-radius-md);
    border: 1px solid rgba(245, 158, 11, 0.2);
    background: linear-gradient(135deg, var(--aw-bg-card) 0%, var(--aw-bg-page) 100%);
    color: var(--aw-text-main);
    cursor: pointer;
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.aw-filters-btn__text::before {
    content: "⚙ ";
}

.aw-filters-btn__icon {
    width: 16px;
    height: 16px;
    position: relative;
}

.aw-filters-btn__icon::before,
.aw-filters-btn__icon::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--aw-accent);
    transition: all var(--aw-transition-fast);
}

.aw-filters-btn__icon::before { top: 5px; }
.aw-filters-btn__icon::after { bottom: 5px; }

.aw-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    overflow-x: auto;
    overflow-y: hidden;
}

.aw-filters::-webkit-scrollbar {
    height: 6px;
}

.aw-filters::-webkit-scrollbar-track {
    background: var(--aw-bg-page);
}

.aw-filters::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: var(--aw-radius-pill);
}

.aw-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--aw-radius-pill);
    border: 1px solid #1e293b;
    background: var(--aw-bg-card);
    color: var(--aw-text-muted);
    font-family: "Rajdhani", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--aw-transition-fast);
    text-decoration: none;
}

.aw-filter__icon {
    width: 18px;
    height: 18px;
    border-radius: var(--aw-radius-pill);
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.aw-filter__icon::before { content: ""; }
.aw-filter--search .aw-filter__icon::before { content: "🔍"; }
.aw-filter--collections .aw-filter__icon::before { content: "◆"; }
.aw-filter--providers .aw-filter__icon::before { content: "≡"; }
.aw-filter--all .aw-filter__icon::before { content: "🎮"; }
.aw-filter--favorites .aw-filter__icon::before { content: "❤"; }
.aw-filter--recommended .aw-filter__icon::before { content: "👍"; }
.aw-filter--top .aw-filter__icon::before { content: "★"; }
.aw-filter--new .aw-filter__icon::before { content: "NEW"; font-size: 8px; font-weight: 700; }
.aw-filter--slots .aw-filter__icon::before { content: "7"; }
.aw-filter--wager .aw-filter__icon::before { content: "%"; }
.aw-filter--bonus .aw-filter__icon::before { content: "🎁"; }
.aw-filter--drops .aw-filter__icon::before { content: "☘"; }
.aw-filter--jackpots .aw-filter__icon::before { content: "💰"; }
.aw-filter--instant .aw-filter__icon::before { content: "⚡"; }

.aw-filter:hover {
    background: var(--aw-bg-elevated);
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--aw-text-main);
    transform: translateY(-2px);
}

.aw-filter--active {
    background: var(--aw-gradient-primary);
    border-color: var(--aw-accent);
    color: #0a0d14;
    box-shadow: 0 4px 16px var(--aw-accent-glow);
}

/* ========================================================================
   GAMES SECTION
   ======================================================================== */

.aw-games {
    padding: 28px 0 48px;
    background: var(--aw-bg-page);
}

.aw-games__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.aw-games__title {
    font-family: "Orbitron", sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #fff 0%, var(--aw-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aw-games__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--aw-text-muted);
    text-decoration: none;
    cursor: pointer;
    transition: color var(--aw-transition-fast);
}

.aw-games__link-arrow {
    font-size: 16px;
    transition: transform var(--aw-transition-fast);
}

.aw-games__link:hover {
    color: var(--aw-accent);
}

.aw-games__link:hover .aw-games__link-arrow {
    transform: translateX(4px);
}

.aw-games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

/* Game Card - NEW EFFECTS */
.aw-game-card {
    position: relative;
    display: block;
    border-radius: var(--aw-radius-md);
    overflow: hidden;
    background: var(--aw-bg-card);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--aw-transition-med);
}

.aw-game-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--aw-radius-md);
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--aw-accent), var(--aw-accent-secondary)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--aw-transition-med);
    z-index: 3;
}

.aw-game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 32px var(--aw-accent-glow);
}

.aw-game-card:hover::before {
    opacity: 1;
}

.aw-game-card__image {
    width: 100%;
    aspect-ratio: 1;
}

.aw-game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.aw-game-card:hover .aw-game-card__img {
    transform: scale(1.1);
}

.aw-game-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: var(--aw-radius-pill);
    background: var(--aw-gradient-primary);
    font-family: "Orbitron", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0a0d14;
    z-index: 4;
    box-shadow: 0 4px 12px var(--aw-accent-glow);
}

.aw-game-card__fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: var(--aw-radius-pill);
    background: rgba(10, 13, 20, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 4;
    transition: all var(--aw-transition-fast);
}

.aw-game-card__fav::before {
    content: "♡";
    color: var(--aw-text-muted);
    transition: color var(--aw-transition-fast);
}

.aw-game-card:hover .aw-game-card__fav {
    border-color: var(--aw-accent);
}

.aw-game-card:hover .aw-game-card__fav::before {
    color: var(--aw-accent);
}

/* Overlay with buttons - NEW SLIDE UP EFFECT */
.aw-game-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 13, 20, 0.6) 30%, rgba(10, 13, 20, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 20px 14px 18px;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--aw-transition-med);
    z-index: 2;
}

.aw-game-card:hover .aw-game-card__overlay {
    opacity: 1;
    transform: translateY(0);
}

.aw-game-card__btn {
    width: 100%;
    max-width: 140px;
    border-radius: var(--aw-radius-pill);
    border: none;
    padding: 10px 18px;
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--aw-transition-fast);
}

.aw-game-card__btn--play {
    background: var(--aw-gradient-primary);
    color: #0a0d14;
    box-shadow: 0 4px 16px var(--aw-accent-glow);
    animation: btnGlow 2s infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 16px var(--aw-accent-glow); }
    50% { box-shadow: 0 4px 24px rgba(245, 158, 11, 0.8); }
}

.aw-game-card__btn--play:hover {
    transform: translateY(-2px) scale(1.05);
}

.aw-game-card__btn--demo {
    background: transparent;
    color: var(--aw-text-main);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.aw-game-card__btn--demo:hover {
    border-color: var(--aw-accent);
    color: var(--aw-accent);
}

/* ========================================================================
   CONTENT SECTION
   ======================================================================== */

.aw-content {
    max-width: 1100px;
    margin: 0 auto 48px;
    padding: 24px 24px 32px;
    background: var(--aw-gradient-dark);
    border-radius: var(--aw-radius-lg);
    border: 1px solid rgba(245, 158, 11, 0.1);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
}

.aw-content h1,
.aw-content h2,
.aw-content h3 {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--aw-text-main);
    margin: 0 0 16px;
}

.aw-content h1 {
    font-size: 26px;
    margin-top: 8px;
    background: linear-gradient(135deg, #fff 0%, var(--aw-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aw-content h2 {
    font-size: 20px;
    margin-top: 32px;
    color: var(--aw-accent);
}

.aw-content h3 {
    font-size: 16px;
    margin-top: 24px;
}

.aw-content p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--aw-text-muted);
}

.aw-content strong {
    font-weight: 700;
    color: var(--aw-accent);
}

.aw-content ul,
.aw-content ol {
    margin: 0 0 16px 24px;
    padding: 0;
}

.aw-content li {
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--aw-text-muted);
}

/* ========================================================================
   FOOTER
   ======================================================================== */

.aw-footer {
    background: linear-gradient(180deg, var(--aw-bg-elevated) 0%, var(--aw-bg-page) 100%);
    border-top: 1px solid rgba(245, 158, 11, 0.1);
    padding: 40px 0 24px;
    color: var(--aw-text-muted);
    position: relative;
}

.aw-footer__top-btn {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: var(--aw-radius-sm);
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: var(--aw-gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    transition: all var(--aw-transition-fast);
    z-index: 2;
}

.aw-footer__top-icon {
    color: var(--aw-accent);
    font-size: 20px;
}

.aw-footer__top-btn:hover {
    transform: translateX(-50%) translateY(-4px);
    border-color: var(--aw-accent);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.8);
}

.aw-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr 2fr;
    gap: 28px;
    padding-top: 20px;
    padding-bottom: 24px;
}

.aw-footer__title {
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--aw-accent);
    margin: 0 0 14px;
}

.aw-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.aw-footer__list li + li {
    margin-top: 6px;
}

.aw-footer__list a {
    font-size: 14px;
    color: var(--aw-text-muted);
    text-decoration: none;
    transition: color var(--aw-transition-fast);
}

.aw-footer__list a:hover {
    color: var(--aw-text-main);
}

/* Payment Methods */
.aw-footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.aw-footer__payment {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: var(--aw-radius-sm);
    background: var(--aw-bg-card);
    border: 1px solid #1e293b;
    transition: all var(--aw-transition-fast);
}

.aw-footer__payment img {
    height: 20px;
    width: auto;
    opacity: 0.8;
    transition: opacity var(--aw-transition-fast);
}

.aw-footer__payment:hover {
    border-color: var(--aw-accent);
}

.aw-footer__payment:hover img {
    opacity: 1;
}

/* Contact */
.aw-footer__contact-item {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

.aw-footer__contact-item a {
    color: var(--aw-text-muted);
    text-decoration: none;
}

.aw-footer__contact-item a:hover {
    color: var(--aw-accent);
}

.aw-footer__contact-item--support {
    margin-top: 8px;
    font-weight: 600;
    color: var(--aw-accent);
}

.aw-footer__socials {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.aw-footer__social {
    width: 32px;
    height: 32px;
    border-radius: var(--aw-radius-sm);
    background: var(--aw-bg-card);
    border: 1px solid #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all var(--aw-transition-fast);
    cursor: pointer;
}

.aw-footer__social:hover {
    border-color: var(--aw-accent);
    transform: translateY(-2px);
}

/* Responsible Gaming Section */
.aw-footer__responsible {
    border-top: 1px solid rgba(245, 158, 11, 0.1);
    padding-top: 24px;
    margin-bottom: 24px;
}

.aw-footer__responsible .aw-footer__title {
    text-align: center;
    margin-bottom: 16px;
}

.aw-footer__responsible-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.aw-footer__responsible-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: var(--aw-radius-sm);
    background: var(--aw-bg-card);
    border: 1px solid #1e293b;
    transition: all var(--aw-transition-fast);
}

.aw-footer__responsible-icon img {
    height: 28px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--aw-transition-fast);
}

.aw-footer__responsible-icon:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.aw-footer__responsible-icon:hover img {
    opacity: 1;
}

/* Footer Bottom */
.aw-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.8);
    padding-top: 16px;
    font-size: 12px;
    color: var(--aw-text-dim);
}

.aw-footer__datetime::before {
    content: "© ";
}

.aw-footer__badges {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aw-footer__age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--aw-radius-pill);
    border: 2px solid #ef4444;
    color: #ef4444;
    font-family: "Orbitron", sans-serif;
    font-weight: 800;
    font-size: 11px;
}

.aw-footer__gamble-badge {
    font-family: "Orbitron", sans-serif;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--aw-text-dim);
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */

@media (max-width: 1024px) {
    .aw-nav { display: none; }
    .aw-header__buttons { display: none; }
    .aw-burger { display: inline-flex; }
    
    .aw-logo img { height: 40px; }
    .aw-header__inner { height: 60px; }
    
    .aw-games__grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .aw-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 24px;
    }
    
    .aw-footer__col--payments {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .aw-header__inner { height: 56px; }
    :root { --aw-header-height: 56px; }
    
    .aw-filters-toggle { display: flex; }
    
    .aw-filters {
        flex-wrap: wrap;
        row-gap: 8px;
        column-gap: 8px;
        max-height: 0;
        overflow: hidden;
        padding-top: 0;
        padding-bottom: 0;
        transition: all 0.3s ease;
    }
    
    .aw-filters--open {
        max-height: 280px;
        overflow-y: auto;
        padding: 16px 0;
    }
    
    .aw-filter {
        flex: 0 0 calc(50% - 4px);
        justify-content: flex-start;
    }
    
    .aw-games {
        padding: 20px 0 36px;
    }
    
    .aw-games__title { font-size: 20px; }
    
    .aw-games__grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }
    
    .aw-games__grid::-webkit-scrollbar { height: 6px; }
    .aw-games__grid::-webkit-scrollbar-track { background: var(--aw-bg-page); }
    .aw-games__grid::-webkit-scrollbar-thumb { background: #1f2937; border-radius: var(--aw-radius-pill); }
    
    .aw-game-card {
        flex: 0 0 180px;
        scroll-snap-align: start;
    }
    
    .aw-footer { padding-top: 48px; }
    
    .aw-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .aw-footer__col--payments,
    .aw-footer__col--contact {
        grid-column: span 2;
    }
    
    .aw-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .aw-games__title { font-size: 18px; }
    .aw-games__link { font-size: 10px; }
    
    .aw-game-card { flex: 0 0 160px; }
    
    .aw-content { padding: 20px 16px 24px; }
    .aw-content h1 { font-size: 22px; }
    .aw-content h2 { font-size: 18px; }
    
    .aw-footer__grid {
        grid-template-columns: 1fr;
    }
    
    .aw-footer__col--payments,
    .aw-footer__col--contact {
        grid-column: span 1;
    }
    
    .aw-footer__bottom {
        align-items: center;
        text-align: center;
    }
}

/* ========================================================================
   NO SCROLL (for mobile menu)
   ======================================================================== */

.aw-no-scroll {
    overflow: hidden;
}