:root {
  --primary: #22c55e;
  --primary-soft: #86efac;
  --primary-dark: #14532d;
  --accent: #f97316;
  --accent-soft: #fdba74;
  --bg: #f3f4f6;
  --bg-alt: #e5e7eb;
  --bg-card: #ffffff;
  --bg-card-soft: #f9fafb;
  --text-main: #1f2937;
  --text-muted: #4b5563;
  --border-soft: rgba(107, 114, 128, 0.3);
  --shadow-soft: 0 10px 25px rgba(209, 213, 219, 0.4);
  --shadow-strong: 0 15px 40px rgba(209, 213, 219, 0.6);
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 4px;
  --transition: all 0.3s ease-in-out;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--text-main);
  background: var(--bg);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
  color: var(--text-main);
}
h1 {
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
}
h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.1rem);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
h2::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.6);
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1rem;
}
p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: #ea580c;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
ul {
  list-style-position: inside;
  margin-bottom: 1rem;
}
.container {
  width: min(1200px, 100% - 3rem);
  margin: 0 auto;
}
.section {
  padding: 4rem 0;
}
.section-title {
  text-align: left;
  margin-bottom: 2.5rem;
}
.section-title h2 {
  margin-bottom: 0.7rem;
}
.section-title p {
  max-width: 600px;
  margin: 0.3rem 0 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.75rem 1.6rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-transform: uppercase;
  border: 1px solid rgba(34, 197, 94, 0.3);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 12px 25px rgba(209, 213, 219, 0.5);
}
.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 45px rgba(209, 213, 219, 0.7);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: rgba(34, 197, 94, 0.7);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.35);
}
.btn-outline:hover {
  background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.2), rgba(243, 244, 246, 1));
  color: #1f2937;
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
  border-color: rgba(249, 115, 22, 0.7);
}
.btn-accent:hover {
  background: linear-gradient(135deg, #c2410c 0%, var(--accent) 100%);
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
}
.text-center {
  text-align: center;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(243, 244, 246, 0.95), rgba(243, 244, 246, 0.85));
  border-bottom: 1px solid rgba(107, 114, 128, 0.25);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
}
.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.9rem;
  border-radius: 8px;
  background:
    radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.6), transparent 50%),
    rgba(243, 244, 246, 0.85);
  border: 1px solid rgba(107, 114, 128, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}
.logo span {
  color: var(--accent);
}
.menu-toggle {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #1f2937;
  font-size: 1.6rem;
  cursor: pointer;
}
.nav {
  display: flex;
  align-items: center;
}
.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.4rem;
}
.nav-item {
  margin: 0;
}
.nav-link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  color: #4b5563;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.6), rgba(243, 244, 246, 1));
  opacity: 0;
  transform: scale(0.9);
  transition: var(--transition);
  z-index: -1;
}
.nav-link:hover {
  color: #111827;
}
.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scale(1);
}
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 4.5rem 0 3rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at -10% 0%, rgba(34, 197, 94, 0.3), transparent 55%),
    radial-gradient(circle at 110% 20%, rgba(249, 115, 22, 0.2), transparent 55%);
  mix-blend-mode: screen;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  z-index: 1;
}
.hero-content {
  max-width: 580px;
  padding: 1.2rem 1.4rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(107, 114, 128, 0.25);
  box-shadow: 0 18px 50px rgba(209, 213, 219, 0.5);
}
.hero-title {
  margin-bottom: 1rem;
}
.hero-title span {
  background: linear-gradient(120deg, #86efac, #fdba74);
  -webkit-background-clip: text;
  color: transparent;
}
.hero-text {
  font-size: 0.98rem;
}
.hero-btns {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero-image {
  justify-self: center;
  width: 100%;
  max-width: 380px;
  position: relative;
}
.hero-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(209, 213, 219, 0.6);
  border: 1px solid rgba(107, 114, 128, 0.3);
}
.hero-badge {
  position: absolute;
  right: -6%;
  top: 8%;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  background:
    conic-gradient(from 220deg, #3b82f6, #8b5cf6, #f97316, #3b82f6);
  padding: 2px;
  box-shadow: 0 14px 35px rgba(59, 130, 246, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #111827;
}
.hero-badge span:first-child {
  font-size: 1.1rem;
}
.hero-badge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 0, #f3f4f6, #f3f4f6 60%, #e5e7eb);
  z-index: -1;
}
.features {
  background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.35), transparent 60%), #f3f4f6;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}
.feature-card {
  background:
    radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.25), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(249, 115, 22, 0.15), transparent 55%),
    rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(107, 114, 128, 0.25);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -35% 0;
  height: 35%;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.1), transparent 70%);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: var(--shadow-strong);
}
.feature-card:hover::after {
  opacity: 1;
}
.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.5), rgba(22, 163, 74, 1));
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.7);
}
.feature-title {
  color: #1f2937;
}
.feature-text {
  font-size: 0.92rem;
}
.about {
  background: radial-gradient(circle at 100% 0, rgba(21, 128, 61, 0.3), transparent 55%), #e5e7eb;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
.about-content h2 {
  margin-bottom: 1rem;
}
.about-text {
  margin-bottom: 1rem;
}
.about-list {
  list-style: none;
  margin-bottom: 1.3rem;
}
.about-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  color: var(--text-muted);
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 9px;
  height: 9px;
  border-radius: 4px;
  background: radial-gradient(circle at 30% 30%, var(--primary-soft), var(--accent));
  box-shadow: 0 0 14px rgba(249, 115, 22, 0.7);
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: 12px;
  box-shadow: 0 22px 60px rgba(209, 213, 219, 0.6);
  border: 1px solid rgba(107, 114, 128, 0.2);
}
.about-image::before {
  content: "";
  position: absolute;
  inset: -10px -15px auto auto;
  border-radius: 12px;
  border: 1px dashed rgba(34, 197, 94, 0.6);
}
.casinos {
  background: radial-gradient(circle at 0 100%, rgba(34, 197, 94, 0.18), transparent 55%), #f3f4f6;
}
.casino-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.8rem;
}
.casino-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.8rem;
  background:
    radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.25), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(249, 115, 22, 0.3), transparent 60%),
    rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(107, 114, 128, 0.25);
  box-shadow: var(--shadow-strong);
  padding: 1.6rem 1.7rem;
  align-items: center;
  transition: var(--transition);
}
.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(209, 213, 219, 0.7);
}
.casino-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.casino-image img {
  border-radius: 10px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.02);
}
.casino-badge {
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  background: radial-gradient(circle at 0 0, #3b82f6, #2563eb);
  color: #0c1a33;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.7);
}
.casino-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.casino-title {
  color: #1f2937;
}
.casino-text {
  margin-bottom: 0.15rem;
}
.casino-features {
  list-style: none;
  margin-bottom: 0.3rem;
}
.casino-features li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.casino-features li i {
  color: #16a34a;
}
.casino-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.casino-stars {
  display: flex;
  gap: 0.14rem;
}
.casino-stars i {
  color: #eab308;
}
.casino-rating-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.casino-actions {
  margin-top: 0.3rem;
}
.testimonials {
  background: radial-gradient(circle at 100% 0, rgba(249, 115, 22, 0.25), transparent 60%), #e5e7eb;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}
.testimonial-card {
  background:
    radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.35), transparent 50%),
    rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(107, 114, 128, 0.25);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.testimonial-quote {
  position: absolute;
  right: 1rem;
  top: 0.8rem;
  font-size: 1.6rem;
  color: rgba(34, 197, 94, 0.35);
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 0.9rem;
  color: #1f2937;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-info h4 {
  margin-bottom: 0.05rem;
  color: var(--text-main);
}
.testimonial-info p {
  margin-bottom: 0;
  font-size: 0.85rem;
}
.contact {
  background: #f3f4f6;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.3rem;
}
.contact-info h2 {
  margin-bottom: 1rem;
}
.contact-text {
  margin-bottom: 0.7rem;
}
.contact-list {
  list-style: none;
  margin-bottom: 1.3rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}
.contact-list li i {
  color: var(--accent);
  margin-top: 0.15rem;
}
.contact-social {
  display: flex;
  gap: 0.6rem;
}
.social-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border: 1px solid rgba(107, 114, 128, 0.4);
  color: #1f2937;
  transition: var(--transition);
}
.social-link:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: #ffffff;
}
.contact-form {
  background:
    radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.3), transparent 55%),
    rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 1.7rem 1.6rem;
  border: 1px solid rgba(107, 114, 128, 0.25);
  box-shadow: var(--shadow-strong);
}
.form-group {
  margin-bottom: 1rem;
}
.form-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
}
.form-control {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(107, 114, 128, 0.5);
  padding: 0.6rem 0.85rem;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text-main);
  background: #ffffff;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.25);
}
textarea.form-control {
  border-radius: 10px;
  min-height: 130px;
  resize: vertical;
}
.page-header {
  padding: 4.8rem 0 2.5rem;
  text-align: left;
  background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.3), transparent 50%), linear-gradient(135deg, #f3f4f6 0%, #d1d5db 50%, #f3f4f6 100%);
  color: #1f2937;
}
.page-header h1 {
  margin-bottom: 0.4rem;
}
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #6b7280;
}
.breadcrumbs a {
  color: #3b82f6;
}
.content-section {
  padding: 4.2rem 0;
}
.content-wrapper {
  background:
    radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.2), transparent 55%),
    rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 2.2rem 2.2rem;
  border: 1px solid rgba(107, 114, 128, 0.25);
  box-shadow: var(--shadow-strong);
}
.content-list {
  padding-left: 1rem;
  list-style-type: disc;
}
.content-list li {
  margin-bottom: 0.5rem;
}
.content-divider {
  height: 1px;
  margin: 2rem 0;
  background: linear-gradient(to right, transparent, rgba(34, 197, 94, 0.7), transparent);
}
.last-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.cookies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin: 2rem 0;
}
.cookies-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(107, 114, 128, 0.2);
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.cookies-icon {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}
.browser-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
  margin: 1.5rem 0;
}
.browser-list li {
  background: #ffffff;
  border-radius: 10px;
  padding: 0.8rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(107, 114, 128, 0.2);
}
.responsible-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}
.responsible-image img {
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}
.responsible-subtitle {
  color: var(--accent);
  margin-top: 1.3rem;
}
.risk-signs {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.8rem 1.7rem;
  border: 1px solid rgba(107, 114, 128, 0.2);
  margin-top: 2rem;
}
.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-top: 1.4rem;
}
.risk-card {
  background: #f9fafb;
  border-radius: 10px;
  padding: 1.2rem 1.1rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(107, 114, 128, 0.15);
}
.risk-icon {
  font-size: 1.5rem;
  color: #ef4444;
  margin-bottom: 0.4rem;
}
.tips-section {
  margin-top: 2.3rem;
}
.tips-list {
  list-style: none;
}
.tips-list li {
  display: flex;
  gap: 1rem;
  background: #ffffff;
  border-radius: 10px;
  padding: 1.2rem 1.1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(107, 114, 128, 0.2);
}
.tip-icon {
  font-size: 1.5rem;
  color: var(--accent);
  min-width: 38px;
  text-align: center;
}
.tip-content h4 {
  margin-bottom: 0.25rem;
}
.help-section {
  margin-top: 2.2rem;
}
.help-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 1.5rem;
}
.help-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(107, 114, 128, 0.2);
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.help-icon {
  font-size: 1.9rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.responsible-conclusion {
  margin-top: 2.2rem;
  background: #f9fafb;
  border-radius: 12px;
  padding: 1.7rem 1.6rem;
  text-align: left;
  border: 1px solid rgba(34, 197, 94, 0.5);
}
.conclusion-highlight {
  font-size: 1rem;
  color: #3b82f6;
}
.thanks-section {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.8rem 0 2.7rem;
}
.thanks-content {
  max-width: 580px;
  margin: 0 auto;
  text-align: left;
}
.thanks-icon {
  font-size: 3.4rem;
  color: #16a34a;
  margin-bottom: 1.2rem;
}
.thanks-actions {
  margin-top: 1.2rem;
  display: flex;
  justify-content: flex-start;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.important-message {
  padding: 2.8rem 0;
  background: radial-gradient(circle at 0 0, rgba(249, 115, 22, 0.35), transparent 55%), #f3f4f6;
}
.important-message .container {
  max-width: 820px;
}
.message-box {
  background:
    radial-gradient(circle at 0 0, rgba(22, 163, 74, 0.4), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(243, 244, 246, 1), rgba(243, 244, 246, 1));
  border-radius: 12px;
  padding: 1.8rem 1.7rem;
  border: 1px solid rgba(107, 114, 128, 0.25);
  box-shadow: 0 18px 50px rgba(209, 213, 219, 0.6);
  color: #1f2937;
}
.message-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}
.message-title i {
  color: #ca8a04;
  font-size: 1.4rem;
}
.message-text {
  color: #1f2937;
}
.message-highlight {
  margin-top: 1rem;
  color: #854d0e;
}
.footer {
  background: #f3f4f6;
  color: #1f2937;
  padding-top: 3rem;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  margin-bottom: 2.3rem;
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(107, 114, 128, 0.3);
  background:
    radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.5), transparent 50%),
    rgba(243, 244, 246, 1);
}
.footer-logo span {
  color: #ea580c;
}
.footer-text {
  margin-top: 0.8rem;
  color: #4b5563;
}
.footer-title {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #4b5563;
  font-size: 0.88rem;
}
.footer-links a:hover {
  color: #1f2937;
}
.footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.partner-logo {
  width: 88px;
  height: 52px;
  border-radius: 10px;
  background: rgba(243, 244, 246, 0.85);
  border: 1px solid rgba(107, 114, 128, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom {
  border-top: 1px solid rgba(107, 114, 128, 0.25);
  padding: 1.2rem 0 1.5rem;
  text-align: left;
  font-size: 0.85rem;
  color: #4b5563;
}
.footer-bottom a {
  color: #3b82f6;
}
@media (max-width: 1100px) {
  .hero .container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 960px) {
  .hero {
    padding-top: 4rem;
  }
  .hero .container {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-content {
    order: 2;
    margin-top: 1.2rem;
  }
  .hero-image {
    max-width: 380px;
    justify-self: center;
    order: 1;
  }
  .hero-btns {
    flex-wrap: wrap;
  }
  .casino-card {
    grid-template-columns: minmax(0, 1fr);
  }
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .responsible-intro {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 768px) {
  .header-inner {
    padding: 0.55rem 0;
  }
  .nav-toggle {
    display: block;
  }
  .nav {
    position: absolute;
    inset: 100% 0 auto;
    background: rgba(243, 244, 246, 0.95);
    border-bottom: 1px solid rgba(107, 114, 128, 0.4);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .menu-toggle:checked ~ .nav {
    max-height: 280px;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    padding: 0.7rem 0 1rem;
    gap: 0.45rem;
  }
  .nav-link {
    padding: 0.35rem 0.8rem;
  }
  .hero {
    padding-top: 4.2rem;
    min-height: auto;
  }
  .hero-content {
    text-align: left;
    justify-self: center;
  }
  .hero-btns {
    justify-content: flex-start;
  }
  .hero-image {
    justify-self: center;
    margin-top: 0.3rem;
  }
  .hero-badge {
    right: -3%;
    top: 5%;
  }
  .content-wrapper {
    padding: 1.9rem 1.6rem;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 15px;
  }
  .container {
    width: min(100% - 1.4rem, 100%);
  }
  .section {
    padding: 3.3rem 0;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-badge {
    width: 88px;
    height: 88px;
  }
  .btn {
    padding: 0.6rem 1.1rem;
  }
  .feature-card,
  .testimonial-card,
  .contact-form {
    padding: 1.4rem 1.2rem;
  }
  .content-wrapper {
    padding: 1.7rem 1.3rem;
  }
  .tips-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}