:root {
  --primary-bg: #eaf6fd;
  --primary-bg-gradient: linear-gradient(135deg, #eaf6fd 0%, #f2faff 100%);
  --accent: #2176ff;
  --accent-hover: #155cc0;
  --accent-light: #e3f0ff;
  --card-bg: #ffffffcc;
  --card-gradient: linear-gradient(120deg, #eaf6fd 0%, #f8fbff 100%);
  --shadow: 0 2px 16px 0 rgba(33, 118, 255, 0.08), 0 1.5px 8px 0 rgba(0,0,0,0.03);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --text-main: #222c3c;
  --text-light: #5d6c8a;
  --border: 1px solid #d3e6fa;
  --transition: 0.18s cubic-bezier(.5,.2,.2,1);
  --max-width: 1240px;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-size: 14px;
  --h1: 2.2rem;
  --h2: 1.5rem;
  --h3: 1.12rem;
  --h4: 1rem;
}

html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: var(--primary-bg-gradient);
  font-family: var(--font-main);
  font-size: var(--font-size);
  color: var(--text-main);
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body.BubbleShooter2026-body {
  margin: 0;
  padding: 0;
  background: var(--primary-bg-gradient);
  min-height: 100vh;
}

.BubbleShooter2026-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.BubbleShooter2026-section {
  padding: 56px 0 48px 0;
  position: relative;
  z-index: 1;
}

.BubbleShooter2026-header {
  background: var(--card-gradient);
  box-shadow: var(--shadow);
  border-bottom: var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.BubbleShooter2026-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 24px;
}

.BubbleShooter2026-logo-link {
  display: flex;
  align-items: center;
}

.BubbleShooter2026-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px 0 rgba(33, 118, 255, 0.07);
  background: #fff;
}

.BubbleShooter2026-nav {
  margin-left: 32px;
}

.BubbleShooter2026-menu {
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.BubbleShooter2026-menu-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.BubbleShooter2026-menu-link:hover,
.BubbleShooter2026-menu-link:focus {
  background: var(--accent-light);
  color: var(--accent-hover);
}

.BubbleShooter2026-hero {
  background: var(--primary-bg-gradient);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  margin: 40px auto 0 auto;
  max-width: var(--max-width);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.BubbleShooter2026-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 48px 32px 40px 32px;
}

.BubbleShooter2026-hero-media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-width: 0;
}

.BubbleShooter2026-hero-video {
  width: 100%;
  max-width: 320px;
  min-width: 180px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 16/9;
  background: #bfe6ff;
}

.BubbleShooter2026-hero-decor {
  position: absolute;
  left: -32px;
  bottom: -32px;
  width: 80px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.BubbleShooter2026-hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
}

.BubbleShooter2026-title {
  font-size: var(--h1);
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--accent-hover);
  letter-spacing: -1px;
  line-height: 1.1;
}

.BubbleShooter2026-tagline {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0 0 10px 0;
  font-weight: 500;
}

.BubbleShooter2026-hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.BubbleShooter2026-btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(33, 118, 255, 0.09);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  outline: none;
  position: relative;
}

.BubbleShooter2026-btn-primary {
  background: var(--accent);
  color: #fff;
}

.BubbleShooter2026-btn-primary:hover,
.BubbleShooter2026-btn-primary:focus {
  background: #fff;
  color: var(--accent-hover);
  box-shadow: 0 4px 16px 0 rgba(33, 118, 255, 0.13);
}

.BubbleShooter2026-btn-ghost {
  background: var(--accent-light);
  color: var(--accent-hover);
}

.BubbleShooter2026-btn-ghost:hover,
.BubbleShooter2026-btn-ghost:focus {
  background: var(--accent);
  color: #fff;
}

.BubbleShooter2026-quicklist {
  margin: 0;
  padding: 0 0 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--text-light);
  font-size: 0.97rem;
}

.BubbleShooter2026-quicklist li {
  position: relative;
  padding-left: 18px;
}

.BubbleShooter2026-quicklist li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.14;
}

.BubbleShooter2026-hero-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.BubbleShooter2026-side-img {
  width: 100%;
  max-width: 170px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 180px;
}

.BubbleShooter2026-mini-info {
  background: var(--card-gradient);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 0.96rem;
  color: var(--text-light);
  box-shadow: 0 1.5px 6px 0 rgba(33, 118, 255, 0.06);
}

.BubbleShooter2026-store-link {
  display: inline-block;
  margin-top: 4px;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: color var(--transition), border-color var(--transition);
}

.BubbleShooter2026-store-link:hover {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* WORLD SECTION */
.BubbleShooter2026-world-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 36px;
  align-items: stretch;
  margin-top: 32px;
}

.BubbleShooter2026-world-media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.BubbleShooter2026-world-img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 300px;
}

.BubbleShooter2026-world-content {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 32px 32px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.BubbleShooter2026-heading {
  font-size: var(--h2);
  font-weight: 700;
  margin: 0 0 16px 0;
  color: var(--accent-hover);
  letter-spacing: -0.5px;
}

.BubbleShooter2026-world-content h3 {
  font-size: var(--h3);
  margin: 18px 0 8px 0;
  color: var(--accent);
}

.BubbleShooter2026-world-content ul {
  margin: 0 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.BubbleShooter2026-world-content ul li {
  position: relative;
  padding-left: 18px;
  color: var(--text-light);
}

.BubbleShooter2026-world-content ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.13;
}

/* GAMEPLAY SECTION */
.BubbleShooter2026-gameplay-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 36px;
  margin-top: 32px;
}

.BubbleShooter2026-gameplay-actions,
.BubbleShooter2026-game-systems {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 28px 26px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.BubbleShooter2026-gameplay-actions h3,
.BubbleShooter2026-game-systems h3 {
  font-size: var(--h3);
  color: var(--accent);
  margin: 0 0 8px 0;
}

.BubbleShooter2026-gameplay-actions ul,
.BubbleShooter2026-game-systems ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.BubbleShooter2026-gameplay-actions ul li,
.BubbleShooter2026-game-systems ul li {
  position: relative;
  padding-left: 16px;
  color: var(--text-light);
}

.BubbleShooter2026-gameplay-actions ul li::before,
.BubbleShooter2026-game-systems ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.10;
}

.BubbleShooter2026-game-systems h4 {
  font-size: var(--h4);
  color: var(--accent-hover);
  margin: 12px 0 4px 0;
}

/* FEATURES SECTION */
.BubbleShooter2026-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.BubbleShooter2026-feature {
  background: var(--card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 180px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.BubbleShooter2026-feature:hover {
  box-shadow: 0 4px 24px 0 rgba(33, 118, 255, 0.16);
  transform: translateY(-3px) scale(1.012);
}

.BubbleShooter2026-feature-img {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-bottom: 12px;
  background: #eaf6fd;
  box-shadow: 0 1.5px 5px 0 rgba(33, 118, 255, 0.09);
}

.BubbleShooter2026-feature h3 {
  font-size: var(--h3);
  color: var(--accent-hover);
  margin: 0 0 8px 0;
}

.BubbleShooter2026-feature p {
  color: var(--text-light);
  margin: 0;
}

/* RHYTHM SECTION */
.BubbleShooter2026-steps {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 32px 24px 32px;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.BubbleShooter2026-steps h3 {
  font-size: var(--h3);
  color: var(--accent);
  margin: 0 0 8px 0;
}

.BubbleShooter2026-steps ol {
  margin: 0 0 12px 0;
  padding-left: 20px;
  color: var(--text-main);
}

.BubbleShooter2026-steps ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.BubbleShooter2026-steps ul li {
  position: relative;
  padding-left: 16px;
}

.BubbleShooter2026-steps ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.10;
}

/* CONTENT SECTION */
.BubbleShooter2026-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  margin-top: 32px;
}

.BubbleShooter2026-content-grid > div {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 28px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.BubbleShooter2026-content-grid h3 {
  font-size: var(--h3);
  color: var(--accent);
  margin: 0 0 6px 0;
}

.BubbleShooter2026-content-grid ul {
  margin: 0 0 8px 0;
  padding: 0;
  list-style: none;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.BubbleShooter2026-content-grid ul li {
  position: relative;
  padding-left: 16px;
}

.BubbleShooter2026-content-grid ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.10;
}

/* SCREENSHOTS SECTION */
.BubbleShooter2026-screenshots {
  background: var(--primary-bg-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.BubbleShooter2026-sub {
  color: var(--text-light);
  margin-bottom: 18px;
}

.BubbleShooter2026-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.BubbleShooter2026-ss {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 12px 0;
  transition: box-shadow var(--transition), transform var(--transition);
}

.BubbleShooter2026-ss img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: #eaf6fd;
}

.BubbleShooter2026-ss figcaption {
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 8px 10px 0 10px;
  text-align: center;
}

.BubbleShooter2026-ss:hover {
  box-shadow: 0 6px 36px 0 rgba(33, 118, 255, 0.13);
  transform: translateY(-2px) scale(1.015);
}

/* REVIEWS SECTION */
.BubbleShooter2026-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}

.BubbleShooter2026-review {
  background: var(--card-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px 22px 18px 22px;
  font-style: italic;
  color: var(--text-main);
  position: relative;
}

.BubbleShooter2026-quote {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text-light);
}

/* SUMMARY SECTION */
.BubbleShooter2026-summary {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 32px 28px 32px;
  margin-top: 32px;
}

.BubbleShooter2026-summary p {
  color: var(--text-main);
  margin-bottom: 18px;
}

.BubbleShooter2026-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.BubbleShooter2026-stats div {
  background: var(--accent-light);
  color: var(--accent-hover);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.97rem;
}

.BubbleShooter2026-cta {
  color: var(--accent);
  font-weight: 600;
  margin-top: 10px;
}

/* DECOR SECTION */
.BubbleShooter2026-decor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.BubbleShooter2026-decor-img {
  width: 100%;
  max-width: 120px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 1.5px 5px 0 rgba(33, 118, 255, 0.09);
  background: #eaf6fd;
}

/* FOOTER */
.BubbleShooter2026-footer {
  background: var(--card-gradient);
  border-top: var(--border);
  box-shadow: 0 -2px 12px 0 rgba(33, 118, 255, 0.05);
  margin-top: 56px;
  padding: 0;
}

.BubbleShooter2026-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 36px 24px 24px 24px;
  display: grid;
  grid-template-columns: 2.1fr 1.2fr 1.2fr 1.2fr;
  gap: 44px;
}

.BubbleShooter2026-footer-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  background: #fff;
  box-shadow: 0 1.5px 5px 0 rgba(33, 118, 255, 0.09);
}

.BubbleShooter2026-footer-col {
  color: var(--text-light);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.BubbleShooter2026-footer-col h4 {
  font-size: 1.08rem;
  color: var(--accent-hover);
  margin: 0 0 8px 0;
  font-weight: 600;
}

.BubbleShooter2026-footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.BubbleShooter2026-footer-col ul li a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
  font-weight: 500;
}

.BubbleShooter2026-footer-col ul li a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .BubbleShooter2026-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 36px 14px 28px 14px;
  }
  .BubbleShooter2026-hero-side {
    grid-column: span 2;
    flex-direction: row;
    gap: 24px;
    align-items: flex-end;
    margin-top: 16px;
  }
  .BubbleShooter2026-world-grid,
  .BubbleShooter2026-gameplay-grid,
  .BubbleShooter2026-content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .BubbleShooter2026-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .BubbleShooter2026-gallery {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }
  .BubbleShooter2026-reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .BubbleShooter2026-decor-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .BubbleShooter2026-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 800px) {
  .BubbleShooter2026-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
  }
  .BubbleShooter2026-nav {
    margin-left: 0;
  }
  .BubbleShooter2026-menu {
    gap: 12px;
    flex-wrap: wrap;
  }
  .BubbleShooter2026-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 8px 18px 8px;
  }
  .BubbleShooter2026-hero-media {
    align-items: center;
  }
  .BubbleShooter2026-hero-side {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin-top: 0;
  }
  .BubbleShooter2026-world-content,
  .BubbleShooter2026-steps,
  .BubbleShooter2026-summary {
    padding: 18px 10px 14px 10px;
  }
  .BubbleShooter2026-feature,
  .BubbleShooter2026-content-grid > div,
  .BubbleShooter2026-gameplay-actions,
  .BubbleShooter2026-game-systems {
    padding: 14px 8px 10px 8px;
  }
  .BubbleShooter2026-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .BubbleShooter2026-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .BubbleShooter2026-decor-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .BubbleShooter2026-footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 8px 12px 8px;
  }
}

@media (max-width: 560px) {
  .BubbleShooter2026-section {
    padding: 26px 0 18px 0;
  }
  .BubbleShooter2026-heading {
    font-size: 1.1rem;
  }
  .BubbleShooter2026-title {
    font-size: 1.3rem;
  }
  .BubbleShooter2026-btn,
  .BubbleShooter2026-btn-primary,
  .BubbleShooter2026-btn-ghost {
    font-size: 0.98rem;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
  }
  .BubbleShooter2026-gallery {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .BubbleShooter2026-decor-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .BubbleShooter2026-footer-inner {
    padding: 10px 2px 8px 2px;
  }
}

/* Hide scrollbars for horizontal overflow */
body, html {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--primary-bg);
}

::-webkit-scrollbar {
  width: 7px;
  background: var(--primary-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-light);
  border-radius: 5px;
}