/* ========================================
   Atom Casino Playing - Unique Design
   Neon-Azure-Purple Palette
   Fonts: Roboto Condensed + Raleway
   ======================================== */

/* CSS Variables - Уникальная цветовая схема */
:root {
    /* Colors - Neon Space Theme (сдвиг цветов на 18 градусов) */
    --atm-bg-cosmos: #090d19;
    --atm-bg-midnight: #0f1528;
    --atm-bg-surface: #141b2e;
    --atm-bg-surface-hover: #1c2540;
    --atm-bg-raised: #212d45;
    
    /* Primary Palette - Neon Aurora (измененные цвета) */
    --atm-azure: #00d4ff;
    --atm-aqua: #00c9b8;
    --atm-purple: #b794ff;
    --atm-magenta: #ff6fdc;
    --atm-mint: #2ee3a2;
    
    /* Gradients - Уникальные градиенты */
    --atm-gradient-neon: linear-gradient(145deg, #00d4ff 0%, #00c9b8 45%, #b794ff 100%);
    --atm-gradient-space: linear-gradient(140deg, #0099c7 0%, #8b4aff 100%);
    --atm-gradient-radiance: radial-gradient(circle, rgba(0, 212, 255, 0.18) 0%, transparent 75%);
    --atm-gradient-surface: linear-gradient(150deg, #141b2e 0%, #0f1528 100%);
    
    /* Text Colors */
    --atm-text-primary: #fafbfd;
    --atm-text-secondary: #e5eaf1;
    --atm-text-subtle: #98a5ba;
    --atm-text-muted: #6b7a92;
    
    /* Borders & Effects */
    --atm-border-dim: rgba(0, 212, 255, 0.12);
    --atm-border-bright: rgba(0, 212, 255, 0.45);
    --atm-glow-azure: 0 0 35px rgba(0, 212, 255, 0.35);
    --atm-glow-purple: 0 0 35px rgba(183, 148, 255, 0.35);
    
    /* Typography */
    --atm-font-title: 'Roboto Condensed', sans-serif;
    --atm-font-text: 'Raleway', sans-serif;
    
    /* Spacing & Sizes - измененные значения */
    --atm-container-width: 1280px;
    --atm-section-spacing: 135px;
    --atm-radius-xs: 5px;
    --atm-radius-sm: 10px;
    --atm-radius-md: 18px;
    --atm-radius-lg: 26px;
    
    /* Transitions */
    --atm-ease: cubic-bezier(0.19, 1, 0.32, 1);
    --atm-speed-quick: 0.25s;
    --atm-speed-medium: 0.4s;
}

/* Global Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 17px;
}

body {
    font-family: var(--atm-font-text);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--atm-text-secondary);
    background: var(--atm-bg-cosmos);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Cosmic Background Effect */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse 55% 35% at 15% 25%, rgba(0, 212, 255, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 45% 45% at 85% 75%, rgba(183, 148, 255, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 65% 55% at 50% 50%, rgba(0, 201, 184, 0.05) 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
}

/* Stars Background */
.atm-stars {
    position: fixed;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 25px 35px, rgba(255,255,255,0.35), transparent),
        radial-gradient(2px 2px at 50px 80px, rgba(255,255,255,0.25), transparent),
        radial-gradient(1px 1px at 95px 50px, rgba(255,255,255,0.45), transparent),
        radial-gradient(2px 2px at 140px 90px, rgba(255,255,255,0.25), transparent),
        radial-gradient(1px 1px at 170px 130px, rgba(255,255,255,0.35), transparent);
    background-repeat: repeat;
    background-size: 220px 220px;
    animation: atm-shimmer 9s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
    opacity: 0.55;
}

@keyframes atm-shimmer {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 0.85; }
}

/* Container */
.atm-container {
    max-width: var(--atm-container-width);
    margin: 0 auto;
    padding: 0 28px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--atm-font-title);
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--atm-text-primary);
}

h1 { font-size: clamp(2.6rem, 6.2vw, 4.2rem); }
h2 { font-size: clamp(2.1rem, 4.7vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 3.2vw, 1.6rem); }

p { color: var(--atm-text-subtle); }

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--atm-speed-quick) var(--atm-ease);
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Button Styles */
.atm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: var(--atm-font-title);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--atm-radius-xs);
    cursor: pointer;
    transition: all var(--atm-speed-medium) var(--atm-ease);
    position: relative;
    overflow: hidden;
}

.atm-btn-primary {
    background: var(--atm-gradient-neon);
    color: var(--atm-bg-cosmos);
    border: none;
}

.atm-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
    transform: translateX(-110%);
    transition: transform 0.65s ease;
}

.atm-btn-primary:hover::before {
    transform: translateX(110%);
}

.atm-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--atm-glow-azure);
}

.atm-btn-outline {
    background: transparent;
    color: var(--atm-azure);
    border-color: var(--atm-azure);
}

.atm-btn-outline:hover {
    background: rgba(0, 212, 255, 0.12);
    box-shadow: var(--atm-glow-azure);
}

.atm-btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--atm-text-secondary);
    border-color: var(--atm-border-dim);
}

.atm-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--atm-border-bright);
}

.atm-btn-large {
    padding: 20px 46px;
    font-size: 1.05rem;
}

/* Section Styles */
section {
    padding: var(--atm-section-spacing) 0;
    position: relative;
}

.atm-section-header {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 80px;
}

.atm-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(0, 212, 255, 0.09);
    border: 1px solid var(--atm-border-dim);
    border-radius: var(--atm-radius-xs);
    font-family: var(--atm-font-title);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--atm-azure);
    margin-bottom: 24px;
}

.atm-section-header h2 {
    margin-bottom: 24px;
}

.atm-section-header p {
    font-size: 1.15rem;
}

/* ========================================
   Header Navigation
   ======================================== */
.atm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(9, 13, 25, 0.88);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--atm-border-dim);
    transition: all var(--atm-speed-medium) var(--atm-ease);
}

.atm-header.atm-scrolled {
    padding: 14px 0;
    background: rgba(9, 13, 25, 0.96);
}

.atm-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.atm-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.atm-logo-symbol {
    width: 48px;
    height: 48px;
    position: relative;
}

.atm-logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--atm-gradient-neon);
    border-radius: 50%;
    box-shadow: var(--atm-glow-azure);
}

.atm-logo-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid var(--atm-azure);
    border-radius: 50%;
    opacity: 0.65;
}

.atm-logo-orbit:nth-child(2) {
    width: 28px;
    height: 28px;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: atm-orbit-rotate 7s linear infinite;
}

.atm-logo-orbit:nth-child(3) {
    width: 38px;
    height: 38px;
    transform: translate(-50%, -50%) rotate(60deg);
    animation: atm-orbit-rotate 9s linear infinite reverse;
}

.atm-logo-orbit:nth-child(4) {
    width: 48px;
    height: 48px;
    transform: translate(-50%, -50%) rotate(120deg);
    animation: atm-orbit-rotate 11s linear infinite;
}

@keyframes atm-orbit-rotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.atm-logo-text {
    font-family: var(--atm-font-title);
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.atm-logo-text .atm-accent {
    background: var(--atm-gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Menu */
.atm-nav-menu {
    display: flex;
    gap: 40px;
}

.atm-nav-menu a {
    font-family: var(--atm-font-title);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--atm-text-subtle);
    position: relative;
    padding: 6px 0;
}

.atm-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--atm-gradient-neon);
    transition: width var(--atm-speed-medium) var(--atm-ease);
}

.atm-nav-menu a:hover {
    color: var(--atm-text-primary);
}

.atm-nav-menu a:hover::after {
    width: 100%;
}

.atm-nav-actions {
    display: flex;
    gap: 14px;
}

/* Mobile Menu Toggle */
.atm-burger {
    display: none;
    flex-direction: column;
    gap: 7px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.atm-burger span {
    width: 28px;
    height: 2px;
    background: var(--atm-text-secondary);
    transition: all var(--atm-speed-medium) var(--atm-ease);
}

/* ========================================
   Hero Section
   ======================================== */
.atm-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 155px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.atm-hero.atm-hero-compact {
    min-height: auto;
    padding: 175px 0 90px;
}

.atm-hero.atm-hero-compact h1 {
    font-size: clamp(2.6rem, 6.2vw, 4.2rem);
}

.atm-hero.atm-hero-compact .atm-hero-description {
    max-width: 640px;
}

.atm-hero.atm-hero-compact .atm-hero-backdrop {
    width: 540px;
    height: 540px;
    opacity: 0.12;
}

/* Atomic Backdrop */
.atm-hero-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 760px;
    height: 760px;
    pointer-events: none;
    opacity: 0.16;
}

.atm-backdrop-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: var(--atm-gradient-neon);
    border-radius: 50%;
    filter: blur(35px);
    animation: atm-core-pulse 4.5s ease-in-out infinite;
}

@keyframes atm-core-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.35; }
    50% { transform: translate(-50%, -50%) scale(1.35); opacity: 0.55; }
}

.atm-backdrop-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 50%;
}

.atm-backdrop-ring:nth-child(2) {
    width: 330px;
    height: 330px;
    transform: translate(-50%, -50%) rotateX(72deg);
    animation: atm-ring-spin 22s linear infinite;
}

.atm-backdrop-ring:nth-child(3) {
    width: 490px;
    height: 490px;
    transform: translate(-50%, -50%) rotateX(72deg) rotateZ(65deg);
    animation: atm-ring-spin 28s linear infinite reverse;
}

.atm-backdrop-ring:nth-child(4) {
    width: 650px;
    height: 650px;
    transform: translate(-50%, -50%) rotateX(72deg) rotateZ(125deg);
    animation: atm-ring-spin 34s linear infinite;
}

@keyframes atm-ring-spin {
    to { transform: translate(-50%, -50%) rotateX(72deg) rotateZ(360deg); }
}

/* Hero Content */
.atm-hero-content {
    position: relative;
    z-index: 1;
    max-width: 960px;
}

.atm-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: rgba(0, 212, 255, 0.11);
    border: 1px solid var(--atm-border-bright);
    border-radius: var(--atm-radius-xs);
    font-size: 0.95rem;
    color: var(--atm-azure);
    margin-bottom: 32px;
}

.atm-hero h1 {
    margin-bottom: 28px;
    line-height: 1.15;
}

.atm-hero h1 span {
    display: block;
    background: var(--atm-gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.atm-hero-description {
    font-size: 1.25rem;
    color: var(--atm-text-subtle);
    max-width: 690px;
    margin: 0 auto 40px;
}

.atm-hero-metrics {
    display: flex;
    justify-content: center;
    gap: 54px;
    margin-bottom: 50px;
}

.atm-hero-metric {
    text-align: center;
}

.atm-hero-metric-value {
    display: block;
    font-family: var(--atm-font-title);
    font-size: 2.7rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    background: var(--atm-gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.atm-hero-metric-label {
    font-size: 0.9rem;
    color: var(--atm-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.atm-hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ========================================
   About Section
   ======================================== */
.atm-about {
    background: linear-gradient(180deg, var(--atm-bg-cosmos) 0%, var(--atm-bg-midnight) 100%);
}

.atm-about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.atm-about-item {
    padding: 40px 32px;
    background: var(--atm-gradient-surface);
    border: 1px solid var(--atm-border-dim);
    border-radius: var(--atm-radius-sm);
    text-align: center;
    transition: all var(--atm-speed-medium) var(--atm-ease);
}

.atm-about-item:hover {
    transform: translateY(-10px);
    border-color: var(--atm-border-bright);
    box-shadow: var(--atm-glow-azure);
}

.atm-about-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.11) 0%, rgba(183, 148, 255, 0.11) 100%);
    border: 1px solid var(--atm-border-dim);
    border-radius: var(--atm-radius-sm);
    transition: all var(--atm-speed-medium) var(--atm-ease);
}

.atm-about-item:hover .atm-about-icon {
    background: var(--atm-gradient-neon);
    border-color: transparent;
}

.atm-about-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--atm-azure);
    transition: stroke var(--atm-speed-medium) var(--atm-ease);
}

.atm-about-item:hover .atm-about-icon svg {
    stroke: var(--atm-bg-cosmos);
}

.atm-about-item h3 {
    margin-bottom: 14px;
    font-size: 1.15rem;
}

.atm-about-item p {
    font-size: 1rem;
}

/* ========================================
   Games Section
   ======================================== */
.atm-games {
    background: var(--atm-bg-midnight);
}

.atm-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

.atm-game-item {
    background: var(--atm-bg-surface);
    border: 1px solid var(--atm-border-dim);
    border-radius: var(--atm-radius-sm);
    overflow: hidden;
    transition: all var(--atm-speed-medium) var(--atm-ease);
}

.atm-game-item:hover {
    transform: translateY(-10px);
    border-color: var(--atm-azure);
    box-shadow: var(--atm-glow-azure);
}

.atm-game-visual {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.atm-game-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--atm-speed-medium) var(--atm-ease);
}

.atm-game-item:hover .atm-game-visual img {
    transform: scale(1.1);
}

.atm-game-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(9, 13, 25, 0.92) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 28px;
    opacity: 0;
    transition: opacity var(--atm-speed-medium) var(--atm-ease);
}

.atm-game-item:hover .atm-game-layer {
    opacity: 1;
}

.atm-game-details {
    padding: 20px 24px;
}

.atm-game-details h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    text-transform: none;
    letter-spacing: 0;
}

.atm-game-provider {
    font-size: 0.85rem;
    color: var(--atm-text-muted);
}

.atm-games-cta {
    text-align: center;
}

/* ========================================
   Bonuses Section
   ======================================== */
.atm-bonuses {
    background: linear-gradient(180deg, var(--atm-bg-midnight) 0%, var(--atm-bg-cosmos) 100%);
}

.atm-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.atm-bonus-item {
    padding: 46px 36px;
    background: var(--atm-gradient-surface);
    border: 1px solid var(--atm-border-dim);
    border-radius: var(--atm-radius-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--atm-speed-medium) var(--atm-ease);
}

.atm-bonus-item:hover {
    border-color: var(--atm-border-bright);
}

.atm-bonus-item.atm-featured {
    background: linear-gradient(150deg, rgba(0, 212, 255, 0.09) 0%, var(--atm-bg-surface) 100%);
    border-color: var(--atm-azure);
}

.atm-bonus-item.atm-featured::before {
    content: 'ХИТ';
    position: absolute;
    top: 24px;
    right: -38px;
    padding: 7px 48px;
    background: var(--atm-gradient-neon);
    font-family: var(--atm-font-title);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    color: var(--atm-bg-cosmos);
    transform: rotate(45deg);
}

.atm-bonus-emoji {
    font-size: 3.8rem;
    margin-bottom: 18px;
    display: block;
}

.atm-bonus-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.atm-bonus-amount {
    font-family: var(--atm-font-title);
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    background: var(--atm-gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.atm-bonus-item p {
    font-size: 1rem;
    margin-bottom: 28px;
}

/* ========================================
   Stories Section
   ======================================== */
.atm-stories {
    background: var(--atm-bg-cosmos);
}

.atm-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.atm-story-item {
    padding: 36px;
    background: var(--atm-gradient-surface);
    border: 1px solid var(--atm-border-dim);
    border-radius: var(--atm-radius-sm);
    transition: border-color var(--atm-speed-medium) var(--atm-ease);
}

.atm-story-item:hover {
    border-color: var(--atm-border-bright);
}

.atm-story-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.atm-story-avatar {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--atm-gradient-neon);
    border-radius: var(--atm-radius-xs);
    font-family: var(--atm-font-title);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--atm-bg-cosmos);
}

.atm-story-author {
    font-family: var(--atm-font-title);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    color: var(--atm-text-primary);
    text-transform: none;
}

.atm-story-place {
    font-size: 0.9rem;
    color: var(--atm-text-muted);
}

.atm-story-prize {
    margin-bottom: 20px;
}

.atm-prize-label {
    font-size: 0.8rem;
    color: var(--atm-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.atm-prize-sum {
    font-family: var(--atm-font-title);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--atm-mint);
}

.atm-story-quote {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.85;
    margin-bottom: 20px;
}

.atm-story-slot {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(0, 212, 255, 0.09);
    border-radius: var(--atm-radius-xs);
    font-size: 0.9rem;
    color: var(--atm-text-subtle);
}

/* ========================================
   Guide Section
   ======================================== */
.atm-guide {
    background: var(--atm-bg-midnight);
}

.atm-guide-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.atm-guide-block {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 40px;
    padding: 46px;
    background: var(--atm-gradient-surface);
    border: 1px solid var(--atm-border-dim);
    border-radius: var(--atm-radius-sm);
    align-items: start;
    transition: border-color var(--atm-speed-medium) var(--atm-ease);
}

.atm-guide-block:hover {
    border-color: var(--atm-border-bright);
}

.atm-step-num {
    font-family: var(--atm-font-title);
    font-size: 5.5rem;
    font-weight: 600;
    line-height: 1;
    background: var(--atm-gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.atm-step-info h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.atm-step-info p {
    margin-bottom: 18px;
}

.atm-step-hint {
    padding: 18px 24px;
    background: rgba(0, 212, 255, 0.07);
    border-left: 3px solid var(--atm-azure);
    font-size: 0.95rem;
}

.atm-step-hint strong {
    color: var(--atm-azure);
}

/* ========================================
   Article Section
   ======================================== */
.atm-article {
    background: var(--atm-bg-cosmos);
}

.atm-article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 66px;
    background: var(--atm-gradient-surface);
    border: 1px solid var(--atm-border-dim);
    border-radius: var(--atm-radius-sm);
}

.atm-article-content h2 {
    font-size: 2.1rem;
    text-align: center;
    margin-bottom: 46px;
    background: var(--atm-gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.atm-article-content h3 {
    font-size: 1.35rem;
    margin: 50px 0 20px;
    color: var(--atm-text-primary);
}

.atm-article-content p {
    margin-bottom: 20px;
    line-height: 1.95;
}

.atm-article-content ul {
    margin: 24px 0;
    padding-left: 0;
}

.atm-article-content li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    color: var(--atm-text-subtle);
}

.atm-article-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 9px;
    height: 9px;
    background: var(--atm-gradient-neon);
    border-radius: 2px;
    transform: rotate(45deg);
}

.atm-article-content li strong {
    color: var(--atm-text-primary);
}

/* ========================================
   FAQ Section
   ======================================== */
.atm-faq {
    background: var(--atm-bg-midnight);
}

.atm-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.atm-faq-entry {
    margin-bottom: 18px;
    background: var(--atm-gradient-surface);
    border: 1px solid var(--atm-border-dim);
    border-radius: var(--atm-radius-sm);
    overflow: hidden;
    transition: border-color var(--atm-speed-medium) var(--atm-ease);
}

.atm-faq-entry[open] {
    border-color: var(--atm-azure);
}

.atm-faq-entry summary {
    padding: 28px 36px;
    font-family: var(--atm-font-title);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    text-transform: none;
}

.atm-faq-entry summary::-webkit-details-marker {
    display: none;
}

.atm-faq-entry summary::after {
    content: '+';
    font-family: var(--atm-font-text);
    font-size: 2rem;
    font-weight: 300;
    color: var(--atm-azure);
    transition: transform var(--atm-speed-medium) var(--atm-ease);
}

.atm-faq-entry[open] summary::after {
    transform: rotate(45deg);
}

.atm-faq-response {
    padding: 0 36px 28px;
}

.atm-faq-response p {
    font-size: 1rem;
    line-height: 1.85;
}

/* ========================================
   Content Section (Inner Pages)
   ======================================== */
.atm-content-section {
    padding: 90px 0;
}

.atm-content-section.atm-alt-bg {
    background: var(--atm-bg-midnight);
}

.atm-content-section .atm-section-header {
    margin-bottom: 54px;
}

.atm-content-section .atm-article-content {
    max-width: 960px;
    margin: 0 auto;
}

/* ========================================
   CTA Section
   ======================================== */
.atm-cta {
    background: var(--atm-bg-cosmos);
    padding: var(--atm-section-spacing) 0;
}

.atm-cta-box {
    text-align: center;
    padding: 90px 56px;
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.07) 0%, rgba(183, 148, 255, 0.07) 100%);
    border: 1px solid var(--atm-border-bright);
    border-radius: var(--atm-radius-md);
    position: relative;
    overflow: hidden;
}

.atm-cta-box::before {
    content: '';
    position: absolute;
    top: -55%;
    left: -55%;
    width: 210%;
    height: 210%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 45%);
    animation: atm-cta-radiate 7s ease-in-out infinite;
}

@keyframes atm-cta-radiate {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

.atm-cta-box h2 {
    position: relative;
    margin-bottom: 18px;
}

.atm-cta-box p {
    position: relative;
    font-size: 1.2rem;
    max-width: 590px;
    margin: 0 auto 40px;
}

.atm-cta-box .atm-btn {
    position: relative;
}

/* ========================================
   Footer
   ======================================== */
.atm-footer {
    padding: 80px 0 35px;
    background: var(--atm-bg-cosmos);
    border-top: 1px solid var(--atm-border-dim);
}

.atm-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
}

.atm-footer-brand .atm-logo {
    margin-bottom: 20px;
}

.atm-footer-brand p {
    font-size: 0.95rem;
    max-width: 320px;
}

.atm-footer-links h4,
.atm-footer-contact h4 {
    font-size: 1.05rem;
    margin-bottom: 24px;
    color: var(--atm-text-primary);
}

.atm-footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.atm-footer-links a {
    font-size: 0.95rem;
    color: var(--atm-text-subtle);
}

.atm-footer-links a:hover {
    color: var(--atm-azure);
}

.atm-footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.atm-footer-bottom {
    padding-top: 35px;
    border-top: 1px solid var(--atm-border-dim);
    text-align: center;
}

.atm-footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.atm-disclaimer {
    font-size: 0.85rem !important;
    color: var(--atm-text-muted) !important;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1100px) {
    .atm-nav-menu,
    .atm-nav-actions {
        display: none;
    }
    
    .atm-burger {
        display: flex;
    }
    
    .atm-about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .atm-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .atm-bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .atm-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .atm-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    :root {
        --atm-section-spacing: 90px;
    }
    
    .atm-hero {
        padding: 135px 0 70px;
    }
    
    .atm-hero-backdrop {
        width: 440px;
        height: 440px;
    }
    
    .atm-hero-metrics {
        flex-wrap: wrap;
        gap: 28px;
    }
    
    .atm-about-grid {
        grid-template-columns: 1fr;
    }
    
    .atm-games-grid {
        grid-template-columns: 1fr;
    }
    
    .atm-guide-block {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .atm-step-num {
        font-size: 4.5rem;
    }
    
    .atm-article-content {
        padding: 46px 28px;
    }
    
    .atm-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .atm-footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 520px) {
    .atm-container {
        padding: 0 18px;
    }
    
    .atm-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .atm-hero-actions .atm-btn {
        width: 100%;
    }
    
    .atm-btn-large {
        padding: 18px 36px;
    }
    
    .atm-cta-box {
        padding: 56px 28px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

