*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2d3436;
  background: #f8f9fa;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.cel-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.cel-section {
  padding: 60px 0;
}

.cel-section--dark .cel-section__title {
  color: #fff;
}

.cel-section__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 40px;
  text-align: center;
}

.cel-section__title--light {
  color: #fff;
}

/* HEADER */
.cel-header {
  background: #1a1a2e;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.cel-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cel-logo__img {
  height: 36px;
  width: auto;
}

.cel-nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.cel-nav__link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.cel-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00b894;
  transition: width 0.3s ease;
}

.cel-nav__link:hover {
  color: #fff;
}

.cel-nav__link:hover::after {
  width: 100%;
}

.cel-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.cel-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.cel-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.cel-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.cel-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* HERO */
.cel-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cel-hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.cel-hero__bg picture,
.cel-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cel-hero .cel-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.cel-hero__content {
  text-align: center;
  padding: 40px 30px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.cel-hero__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  display: block;
  margin-bottom: 10px;
}

.cel-hero__title {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.cel-hero__points {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.cel-hero__point {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  transition: background 0.3s;
}

.cel-hero__point:hover {
  background: rgba(255,255,255,0.2);
}

.cel-hero__point img {
  width: 36px;
  height: 36px;
}

.cel-hero__update {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* CASINO TABLE */
.cel-casino-header {
  margin-bottom: 20px;
}

.cel-casino-header__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}

.cel-casino-header__banner img {
  width: 100%;
  border-radius: 8px;
}

.cel-casino-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.cel-casino-list-header__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.cel-casino-list-header__compare {
  color: #00b894;
  font-size: 0.9rem;
  font-weight: 600;
}

.cel-casino-list-header__compare:hover {
  text-decoration: underline;
}

.cel-casino-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cel-casino-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a2e;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 2px;
  gap: 20px;
}

.cel-casino-card__left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  flex-wrap: wrap;
}

.cel-casino-card__logo {
  width: 120px;
  height: auto;
  border-radius: 8px;
}

.cel-casino-card__rating-block {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cel-casino-card__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #f39c12;
}

.cel-casino-card__stars {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cel-casino-card__stars .cel-stars {
  font-size: 0.85rem;
}

.cel-casino-card__stars span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.cel-casino-card__review-link {
  font-size: 0.8rem;
  color: #00b894;
  font-weight: 500;
}

.cel-casino-card__review-link:hover {
  text-decoration: underline;
}

.cel-casino-card__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.cel-casino-card__bonus-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  text-align: right;
  max-width: 280px;
}

.cel-casino-card__bonus-text i {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-style: normal;
}

.cel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid #f39c12;
  border-radius: 6px;
  background: #f39c12;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.cel-btn:hover {
  background: #e67e22;
  border-color: #e67e22;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.cel-btn--gold {
  background: #f39c12;
  border-color: #f39c12;
}

.cel-btn--gold:hover {
  background: #e67e22;
  border-color: #e67e22;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.cel-btn--sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

.cel-btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.cel-btn--outline {
  background: transparent;
  color: #00b894;
  border-color: #00b894;
}

.cel-btn--outline:hover {
  background: #00b894;
  color: #fff;
}

.cel-compare-link {
  text-align: center;
  padding: 20px 0;
}

.cel-compare-link a {
  color: #00b894;
  font-weight: 600;
  font-size: 0.9rem;
}

.cel-compare-link a:hover {
  text-decoration: underline;
}

/* LINKS & GUIDES */
.cel-links-guides {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-top: 30px;
}

.cel-quick-links__header {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cel-quick-links__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cel-quick-links__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.cel-quick-links__list li img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.cel-quick-links__list li a {
  color: #00b894;
  font-weight: 500;
}

.cel-quick-links__list li a:hover {
  text-decoration: underline;
}

.cel-guides-block__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cel-guides-block__header span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.cel-guides-block__header a {
  color: #00b894;
  font-size: 0.85rem;
  font-weight: 600;
}

.cel-guides-block__header a:hover {
  text-decoration: underline;
}

.cel-guides-block__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cel-guide-card {
  display: flex;
  flex-direction: column;
  background: #1a1a2e;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}

.cel-guide-card:hover {
  transform: translateY(-2px);
}

.cel-guide-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.cel-guide-card span {
  padding: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

/* POINTS */
.cel-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cel-point {
  text-align: center;
  padding: 20px;
}

.cel-point img {
  margin: 0 auto 16px;
}

.cel-point h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cel-point p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* PREVIEW */
.cel-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cel-preview__image img {
  width: 100%;
  border-radius: 8px;
}

.cel-preview__content {
  color: rgba(255,255,255,0.85);
}

.cel-preview__content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cel-preview__content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  margin-top: 20px;
}

.cel-preview__content p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.7;
}

.cel-preview__content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.cel-preview__content ul li {
  font-size: 0.9rem;
  margin-bottom: 6px;
  line-height: 1.6;
}

/* COOKIE BAR */
.cel-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.9);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 9999;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.cel-cookie-bar a {
  color: #00b894;
  text-decoration: underline;
}

.cel-cookie-bar__actions {
  display: flex;
  gap: 10px;
}

.cel-cookie-bar.hidden {
  display: none;
}

/* AGE OVERLAY */
.cel-age-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(4px);
}

.cel-age-overlay.hidden {
  display: none;
}

.cel-age-modal {
  background: #fff;
  padding: 48px 40px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.cel-age-modal__icon {
  margin-bottom: 20px;
}

.cel-age-modal h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.cel-age-modal p {
  color: #636e72;
  margin-bottom: 24px;
}

.cel-age-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
.cel-footer__age-warning {
  background: #ffd32a;
  padding: 12px 0;
}

.cel-footer__age-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  color: #1a1a2e;
  font-size: 0.9rem;
}

.cel-footer__age-icon {
  width: 28px;
  height: 28px;
}

.cel-footer__main {
  background: #1a1a2e;
  padding: 50px 0 30px;
  color: rgba(255, 255, 255, 0.8);
}

.cel-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.cel-footer__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cel-footer__links li {
  margin-bottom: 8px;
}

.cel-footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.cel-footer__links a:hover {
  color: #00b894;
}

.cel-footer__disclaimer {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  font-size: 0.85rem;
  line-height: 1.6;
}

.cel-footer__disclaimer a {
  color: #00b894;
}

.cel-footer__disclaimer p {
  margin-bottom: 6px;
}

.cel-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

.cel-footer__bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cel-footer__bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.cel-footer__bottom-links a:hover {
  color: #00b894;
}

/* BACK TO TOP */
.cel-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f39c12;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
  z-index: 999;
}

.cel-back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.cel-back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* STARS */
.cel-stars {
  color: #f39c12;
  display: inline-flex;
  gap: 2px;
  font-size: 1rem;
}

.cel-stars i {
  font-size: 0.85rem;
}

/* AGE LOCK */
html.cel-age-lock,
body.cel-age-lock {
  overflow: hidden;
  height: 100%;
}

/* FILTERS */
.cel-page-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.cel-page-filters__label {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.cel-page-filters__list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cel-page-filters__item {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}

.cel-page-filters__item.active,
.cel-page-filters__item:hover {
  border-color: #00b894;
  color: #00b894;
}

/* AGE BAR */
.cel-age-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-bottom: 24px;
}

.cel-age-bar__divider {
  opacity: 0.3;
}

/* COMPARE TABLE */
.cel-compare-table {
  width: 100%;
  border-collapse: collapse;
}

.cel-compare-table__header {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  padding: 12px 16px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cel-compare-row {
  display: grid;
  grid-template-columns: 120px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  background: rgba(255,255,255,0.03);
}

.cel-compare-row--featured {
  background: rgba(0,184,148,0.05);
  border-left: 3px solid #00b894;
  margin-bottom: 8px;
  border-radius: 0 8px 8px 0;
}

.cel-compare-row__badge {
  position: absolute;
  top: 0;
  left: 16px;
  background: #00b894;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cel-compare-row__badge--exclusive {
  background: #f39c12;
}

.cel-compare-row__badge--new {
  background: #e74c3c;
}

.cel-compare-row__site img {
  max-height: 50px;
  width: auto;
  border-radius: 6px;
}

.cel-compare-row__bonus i {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-style: normal;
  margin-bottom: 2px;
}

.cel-compare-row__bonus span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}

.cel-compare-row__score {
  text-align: center;
}

.cel-compare-row__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #f39c12;
  display: block;
}

.cel-compare-row__reviews {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
}

.cel-compare-row__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cel-compare-row__review {
  font-size: 0.75rem;
  color: #00b894;
}

.cel-compare-row__review:hover {
  text-decoration: underline;
}

.cel-compare-row__visit {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}

/* CASINO REVIEWS */
.cel-casino-review {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  margin-bottom: 24px;
  overflow: hidden;
}

.cel-casino-review__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.cel-casino-review__rank {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #f39c12;
  min-width: 30px;
}

.cel-casino-review__name {
  flex: 1;
}

.cel-casino-review__name span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.cel-casino-review__name a {
  font-size: 0.8rem;
  color: #00b894;
}

.cel-casino-review__score {
  text-align: center;
}

.cel-casino-review__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #f39c12;
  display: block;
}

.cel-casino-review__reviews {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.cel-casino-review__link img {
  max-height: 50px;
  border-radius: 6px;
}

.cel-casino-review__body {
  padding: 20px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.7;
}

.cel-casino-review__body p {
  margin-bottom: 16px;
}

.cel-casino-review__pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.cel-casino-review__pros h4,
.cel-casino-review__cons h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cel-casino-review__pros h4 { color: #00b894; }
.cel-casino-review__cons h4 { color: #e74c3c; }

.cel-casino-review__pros ul,
.cel-casino-review__cons ul {
  list-style: disc;
  padding-left: 18px;
}

.cel-casino-review__pros ul li,
.cel-casino-review__cons ul li {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.7);
}

/* PAGE HEADER */
.cel-page-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 60px 0;
  text-align: center;
}

.cel-page-header__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.cel-page-header__subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  font-size: 1.05rem;
}

.cel-page-content {
  padding: 60px 0;
  background: #fff;
}

.cel-page-content .cel-container {
  max-width: 860px;
}

.cel-page-content h2,
.cel-page-content h3 {
  font-family: 'Montserrat', sans-serif;
  color: #1a1a2e;
}

.cel-page-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cel-page-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 24px;
}

.cel-page-content p {
  color: #636e72;
  margin-bottom: 14px;
  line-height: 1.7;
}

.cel-page-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.cel-page-content ul li {
  color: #636e72;
  margin-bottom: 8px;
}

/* THANK YOU */
.cel-thank-you {
  text-align: center;
  padding: 100px 20px;
}

.cel-thank-you__icon {
  font-size: 4rem;
  color: #00b894;
  margin-bottom: 20px;
}

.cel-thank-you h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.cel-thank-you p {
  color: #636e72;
  max-width: 500px;
  margin: 0 auto 30px;
}

/* CONTACT FORM */
.cel-contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef1f5;
}

.cel-form-group {
  margin-bottom: 20px;
}

.cel-form-group label {
  display: block;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.cel-form-group input,
.cel-form-group textarea,
.cel-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #eef1f5;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  background: #fafbfc;
}

.cel-form-group input:focus,
.cel-form-group textarea:focus,
.cel-form-group select:focus {
  outline: none;
  border-color: #00b894;
  background: #fff;
}

.cel-form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cel-hero__label {
    font-size: 1.4rem;
  }

  .cel-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .cel-links-guides {
    grid-template-columns: 1fr;
  }

  .cel-guides-block__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cel-preview {
    grid-template-columns: 1fr;
  }

  .cel-preview__image {
    order: -1;
  }

  .cel-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cel-hamburger {
    display: flex;
  }

  .cel-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: #1a1a2e;
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .cel-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .cel-nav__list {
    flex-direction: column;
    gap: 16px;
  }

  .cel-section {
    padding: 40px 0;
  }

  .cel-section__title {
    font-size: 1.5rem;
  }

  .cel-casino-card {
    flex-direction: column;
    text-align: center;
  }

  .cel-casino-card__left {
    justify-content: center;
  }

  .cel-casino-card__right {
    align-items: center;
  }

  .cel-casino-card__bonus-text {
    text-align: center;
  }

  .cel-points {
    grid-template-columns: 1fr;
  }

  .cel-guides-block__cards {
    grid-template-columns: 1fr;
  }

  .cel-hero__label {
    font-size: 1.2rem;
  }

  .cel-footer__grid {
    grid-template-columns: 1fr;
  }

  .cel-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cel-footer__bottom-links {
    justify-content: center;
  }

  .cel-cookie-bar {
    flex-direction: column;
    text-align: center;
  }

  .cel-age-modal {
    padding: 32px 24px;
  }

  .cel-page-header {
    padding: 40px 0;
  }

  .cel-page-header__title {
    font-size: 1.5rem;
  }

  .cel-contact-form {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .cel-hero__label {
    font-size: 1rem;
  }

  .cel-casino-card__left {
    flex-direction: column;
  }

  .cel-casino-card__rating-block {
    flex-direction: column;
  }

  .cel-compare-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cel-compare-row__site {
    display: flex;
    justify-content: center;
  }

  .cel-compare-row__score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .cel-compare-row__badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .cel-casino-review__header {
    justify-content: center;
    text-align: center;
  }

  .cel-casino-review__pros-cons {
    grid-template-columns: 1fr;
  }

  .cel-page-filters {
    justify-content: center;
    text-align: center;
  }
}
