@charset "UTF-8";
:root {
  --bg: #fff9fb;
  --bg-soft: #f6f7ff;
  --surface: rgba(255,255,255,0.88);
  --surface-strong: #ffffff;
  --text: #31285d;
  --muted: #675d8d;
  --line: rgba(78, 66, 136, 0.12);
  --brand: #6e4ff6;
  --brand-2: #ff6fa9;
  --brand-3: #ffbf59;
  --mint: #68dfcf;
  --shadow: 0 24px 60px rgba(61, 42, 120, 0.14);
  --shadow-soft: 0 16px 34px rgba(58, 39, 117, 0.08);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  font: 16px/1.65 "Exo", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 111, 169, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(104, 223, 207, 0.24), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 191, 89, 0.18), transparent 30%),
    linear-gradient(180deg, #fff8f3 0%, #f9fbff 48%, #fff9fb 100%);
  overflow-x: clip;
}
body.menu_open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { opacity: .92; }
section { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.main_header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(108,86,181,0.08);
}
.main_header section { display:flex; align-items:center; justify-content:space-between; gap:18px; }
.logo { flex: 0 0 auto; }
.logo a {
  display:inline-flex; align-items:center; gap:10px;
  padding: 11px 16px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,191,89,.35), rgba(255,111,169,.28) 45%, rgba(104,223,207,.32));
  box-shadow: inset 0 0 0 1px rgba(110,79,246,.1), var(--shadow-soft);
  font-weight: 800; font-size: 28px; line-height:1; color: var(--text);
}
.logo a::before {
  content:""; width:18px; height:18px; border-radius:50%;
  background: linear-gradient(135deg, var(--brand-3), var(--brand-2));
  box-shadow: 20px 0 0 rgba(255,111,169,.72), 40px 0 0 rgba(104,223,207,.86);
  margin-right: 52px;
}
.logo span, .logo strong { display:block; letter-spacing: .04em; text-transform: uppercase; }
.logo span { font-size: 15px; color: var(--brand); }
.logo strong { font-size: 19px; color: #2287a7; margin-top: 2px; }

.main_nav ul, .footer_nav ul { margin:0; padding:0; list-style:none; }
.main_nav ul { display:flex; align-items:center; flex-wrap:wrap; gap:8px; }
.main_nav a {
  display:block; padding: 12px 16px; border-radius: 999px; font-size: 15px;
  color: var(--text); font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.main_nav a:hover, .main_nav a:focus { background: rgba(110,79,246,.09); color: var(--brand); }
.header_link a {
  display:inline-flex; align-items:center; gap:12px; padding: 14px 20px; border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-3), #ff9d48 48%, var(--brand-2));
  color:#fff; font-weight: 700; box-shadow: var(--shadow-soft);
}
.header_link a::after { content:"↗"; font-size: 18px; }
.toggler { display:none; width:54px; height:54px; border-radius: 18px; background:#fff; box-shadow: var(--shadow-soft); }
.toggler span { display:flex; flex-direction:column; justify-content:center; gap:6px; width:100%; height:100%; padding: 0 14px; }
.toggler em { display:block; height:3px; border-radius:3px; background: var(--text); }

.index_first, .inner_first { position: relative; padding: 42px 0 28px; }
.index_first section, .inner_first section {
  position:relative; display:grid; grid-template-columns: 1.06fr .94fr; gap: 34px; align-items:center;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.82));
  border: 1px solid rgba(115, 92, 196, 0.12); border-radius: 38px; box-shadow: var(--shadow);
  padding: 44px;
}
.index_first .bg, .inner_first::before {
  content:""; position:absolute; inset: 0 auto auto 50%; width: 220px; height: 220px;
  transform: translate(-20%, -12%); border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(255,191,89,.48), rgba(255,191,89,0));
}
.index_first .image, .inner_first .image { position:relative; z-index:1; }
.index_first .image img {
  width:100%; max-width: 520px; margin-left:auto;
  filter: drop-shadow(0 18px 36px rgba(82,56,171,.16));
}
.index_first .inner, .inner_first section > * { position:relative; z-index:1; }
.index_first h1, .inner_first h1 {
  margin:0 0 18px; font-size: clamp(38px, 6vw, 72px); line-height: .98;
  letter-spacing: -.03em; text-transform: uppercase;
}
.index_first p { margin:0 0 26px; color: var(--muted); font-size: 18px; max-width: 560px; }
.link a, .form_item button {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  min-width: 170px; padding: 16px 24px; border: 0; border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #8c66ff 50%, var(--brand-2));
  color:#fff; font: inherit; font-weight: 700; box-shadow: var(--shadow-soft); cursor:pointer;
}
.link a::after { content:"→"; }
.inner_first section { grid-template-columns: 1fr; padding: 34px 40px; }
.inner_first h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 8px; }
.inner_first ul { display:flex; gap:10px; flex-wrap:wrap; padding:0; margin:0; list-style:none; }
.inner_first li, .inner_first a { color: var(--muted); font-weight: 600; }
.inner_first li:not(:last-child)::after { content:"/"; margin-left: 10px; }

.index_welcome, .highlights_wrapper, .index_games, .games_wrapper, .about_wrapper, .team_wrapper, .simple_wrapper,
.video_wrapper, .testimonials_wrapper, .bloqs_wrapper, .disclamer_wrapper, .contact_wrapper, .contacts_wrapper, .game_shell {
  padding: 22px 0 0;
}
.index_welcome section > h2, .index_games header h2, .testimonials_wrapper h2, .bloqs_wrapper h2,
.disclamer_wrapper h2, .about_sides .inner h2, .team_wrapper h2, .games_wrapper h1, .simple_text h3 {
  margin:0 0 12px; font-size: clamp(28px, 4vw, 46px); line-height:1.06; letter-spacing:-.03em;
}
.index_welcome section > h2, .index_games header, .bloqs_wrapper header, .team_wrapper header,
.testimonials_wrapper header, .disclamer_wrapper header {
  text-align:left;
}
.index_games header h4, .bloqs_wrapper header h4, .team_wrapper header h4, .disclamer_wrapper header h4, .about_sides .inner p,
.simple_text p, .contacts_grid p, .contact_block h2, .contact_block p, .testimonial_block blockquote, .game_intro_card p {
  color: var(--muted);
}
.welcome_grid, .games_grid, .bloq_grid, .team_grid, .contacts_grid, .highlights_wrapper section, .footer_first section {
  display:grid; gap: 22px;
}
.welcome_grid { grid-template-columns: repeat(3, 1fr); margin-top:24px; }
.welcome_grid article, .games_grid article, .bloq_grid article, .team_grid figure, .contacts_grid article,
.highlights_wrapper article, .contact_block, .game_intro_card, .game_embed_card, .simple_text, .about_sides,
.video_block, .testimonial_block, .disclamer_wrapper section {
  background: var(--surface); border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow-soft);
}
.welcome_grid article { padding: 26px; }
.welcome_grid .image {
  width: 78px; height: 78px; border-radius: 24px; display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(110,79,246,.12), rgba(255,111,169,.14)); margin-bottom: 18px;
}
.welcome_grid h3, .highlights_wrapper h3, .games_grid h3, .bloq_grid h3, .team_grid h3, .contacts_grid h3,
.disclamer h3, .main_footer h3, .game_intro_card h1 { margin:0 0 8px; line-height:1.15; }
.welcome_grid p, .games_grid p, .bloq_grid p, .team_grid p { margin:0; color: var(--muted); }

.video_block { position:relative; overflow:hidden; padding: 28px; min-height: 330px; }
.video_block img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:saturate(1.1) contrast(1.04); }
.video_block::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(42,23,74,.08), rgba(42,23,74,.56)); }
.video_block a, .video_block h3 { position:relative; z-index:2; }
.video_block a {
  width: 88px; height: 88px; border-radius: 50%; display:grid; place-items:center; margin: 78px auto 20px;
  background: rgba(255,255,255,.9); box-shadow: 0 12px 26px rgba(20,15,40,.24);
}
.video_block a span { width: 0; height: 0; border-left: 24px solid var(--brand); border-top: 14px solid transparent; border-bottom: 14px solid transparent; margin-left: 6px; }
.video_block h3 { color: #fff; text-align:center; font-size: clamp(22px, 3vw, 34px); max-width: 640px; margin: 0 auto; }

.highlights_wrapper section { grid-template-columns: repeat(4, 1fr); }
.highlights_wrapper article { padding: 24px; text-align:center; }
.highlights_wrapper h3 { font-size: clamp(28px,4vw,42px); color: var(--brand); }
.highlights_wrapper p { margin:0; font-weight:600; color: var(--muted); }

.index_games header, .bloqs_wrapper header, .team_wrapper header { margin-bottom: 24px; }
.games_grid { grid-template-columns: repeat(4, 1fr); }
.games_grid article { position:relative; overflow:hidden; padding: 18px; }
.games_grid .image { border-radius: 24px; overflow:hidden; position:relative; background: linear-gradient(135deg, #f6f1ff, #fff4f8); }
.games_grid .image img { width:100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .35s ease; }
.games_grid .image span {
  position:absolute; left:16px; right:16px; bottom:16px; padding: 12px 14px; border-radius: 16px;
  background: rgba(49,40,93,.78); color:#fff; font-weight:700; text-align:center; backdrop-filter: blur(8px);
}
.games_grid article:hover .image img { transform: scale(1.05); }
.games_grid h3 { font-size: 24px; margin: 18px 4px 4px; }
.games_grid article > a { position:absolute; inset:0; }

.testimonial_block { display:grid; grid-template-columns: 140px 1fr; gap: 26px; padding: 28px; align-items:center; }
.testimonial_block .avatar img { width: 140px; height: 140px; border-radius: 32px; object-fit: cover; }
.testimonial_block blockquote { margin:0 0 16px; font-size: 22px; line-height: 1.5; }
.testimonial_block h3 { margin:0 0 4px; }

.bloq_grid { grid-template-columns: repeat(4, 1fr); }
.bloq_grid article { position:relative; overflow:hidden; }
.bloq_grid .image img { width:100%; height: 220px; object-fit: cover; }
.bloq_grid .inner { padding: 22px; }
.bloq_grid .date { margin-bottom: 8px; color: var(--muted); font-weight:600; }
.bloq_grid h3 { font-size: 24px; }
.bloq_grid .link a { min-width: auto; padding: 12px 18px; }
.bloq_grid article > a { position:absolute; inset:0; }
.bloq_grid .inner > * { position:relative; z-index:2; }

.disclamer_wrapper section {
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 22px; padding: 28px; align-items:center;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(248,248,255,.92));
}
.disclamer_wrapper .image img { max-width: 420px; margin-left:auto; filter: drop-shadow(0 18px 36px rgba(90,58,171,.12)); }
.contact_block {
  display:flex; align-items:center; justify-content:space-between; gap: 24px; padding: 32px;
  background: linear-gradient(135deg, rgba(110,79,246,.95), rgba(255,111,169,.92)); color:#fff;
}
.contact_block h2 { color:#fff; font-size: clamp(30px, 4vw, 48px); line-height:1.05; margin:0; max-width: 720px; }
.contact_block .link a { background:#fff; color: var(--brand); }
.contact_block .link a::after { color: var(--brand); }

.about_sides {
  display:grid; grid-template-columns: .95fr 1.05fr; gap: 30px; padding: 28px; align-items:center;
}
.about_sides .image img { border-radius: 28px; width:100%; object-fit: cover; }
.about_sides .inner h4 { color: var(--brand); text-transform: uppercase; letter-spacing: .1em; margin:0 0 10px; }
.about_sides .link { margin-top: 18px; }
.team_grid { grid-template-columns: repeat(3, 1fr); }
.team_grid figure { padding: 20px; margin:0; text-align:center; }
.team_grid .image img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 24px; }
.team_grid figcaption { padding: 16px 10px 6px; }

.contacts_grid { grid-template-columns: repeat(3, 1fr); margin-bottom: 22px; }
.contacts_grid article { display:flex; gap: 16px; padding: 24px; align-items:flex-start; }
.contacts_grid .icon {
  flex: 0 0 62px; width:62px; height:62px; display:grid; place-items:center; border-radius: 18px;
  background: linear-gradient(135deg, rgba(110,79,246,.12), rgba(104,223,207,.18));
}
.contacts_grid .icon img { width: 30px; height: 30px; object-fit: contain; }
.form_side { padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow-soft); }
.form_grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form_item.full { grid-column: 1 / -1; }
.form_item input, .form_item textarea {
  width:100%; border:1px solid rgba(98, 78, 164, 0.14); border-radius: 18px; background:#fff;
  padding: 16px 18px; font: inherit; color: var(--text);
}
.form_item textarea { min-height: 180px; resize: vertical; }
.form_item input:focus, .form_item textarea:focus { border-color: rgba(110,79,246,.4); box-shadow: 0 0 0 4px rgba(110,79,246,.08); outline:none; }

.simple_text { padding: 30px; }
.simple_text p, .simple_text li, .simple_text dd { font-size: 17px; }
.simple_text ul { padding-left: 20px; }
.simple_text dl { display:grid; grid-template-columns: 220px 1fr; gap: 14px 18px; margin: 24px 0; padding: 24px; border-radius: 24px; background: rgba(110,79,246,.05); }
.simple_text dt { font-weight: 700; }
.simple_text h3 { font-size: 28px; margin-top: 10px; }

.game_shell section { display:grid; gap: 22px; }
.game_intro_card { padding: 28px; }
.game_intro_card h1 { font-size: clamp(34px, 4vw, 52px); }
.game_tags { display:flex; flex-wrap:wrap; gap: 10px; margin-top: 20px; }
.game_tags span {
  display:inline-flex; align-items:center; padding: 10px 16px; border-radius: 999px;
  background: rgba(110,79,246,.09); color: var(--brand); font-weight:700;
}
.game_embed_card { padding: 18px; }
.game_embed_frame {
  position: relative; width: 100%; overflow:hidden; border-radius: 26px; background: #110f26;
  min-height: 760px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.07);
}
.game_embed_frame iframe { width:100%; height: 760px; border:0; display:block; }

.main_footer { margin-top: 34px; background: linear-gradient(180deg, #34215f 0%, #28164b 100%); color: rgba(255,255,255,.9); }
.footer_first { padding: 36px 0 26px; }
.footer_first section { grid-template-columns: 1.2fr 1fr .8fr; align-items:start; }
.main_footer article { padding: 0; }
.footer_logo a { background: rgba(255,255,255,.1); box-shadow:none; color:#fff; }
.footer_logo span { color: #ffc864; }
.footer_logo strong { color: #9ae7f3; }
.footer_tagline { margin: 14px 0 18px; color: rgba(255,255,255,.72); max-width: 420px; }
.main_footer dl { display:grid; gap: 8px; margin:0; }
.main_footer dt { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.56); }
.main_footer dd { margin:0 0 6px; }
.main_footer a { color: #fff; }
.disclamer { position:relative; padding: 26px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); border-radius: 28px; }
.disclamer h3 { font-size: 28px; }
.disclamer p { margin: 0; color: rgba(255,255,255,.8); }
.plus_18 { margin-top: 20px; }
.plus_18 img { width: 82px; }
.footer_nav ul { display:grid; gap: 10px; }
.footer_nav a { color: rgba(255,255,255,.84); font-weight: 600; }
.footer_last { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0 20px; }
.copyright p { margin:0; text-align:center; color: rgba(255,255,255,.76); }

.players_grid, .social_links { display:none !important; }
