:root {
  --sunshine-yellow: #ffe74c;
  --pure-white: #ffffff;
  --victory-green: #6bf178;
  --ocean-blue: #35a7ff;
  --midnight-dark: #0a0f1c;
  --shadow-purple: #2d1b69;
  --gradient-magic: linear-gradient(
    137deg,
    var(--ocean-blue) 0%,
    var(--shadow-purple) 34%,
    var(--victory-green) 100%
  );
  --neon-glow: 0 0 23px rgba(107, 241, 120, 0.6),
    0 0 47px rgba(53, 167, 255, 0.3);
}

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

body {
  font-family: "Ubuntu", sans-serif;
  line-height: 1.6;
  color: var(--pure-white);
  background: var(--midnight-dark);
  overflow-x: hidden;
}

.topbar-navigation {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(10, 15, 28, 0.93);
  backdrop-filter: blur(13px);
  border-bottom: 1px solid rgba(107, 241, 120, 0.2);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 27px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 89px;
}

.brand-zone {
  flex: 0 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-image {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 231, 76, 0.5));
}

.brand-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.menu-zone {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.mobile-trigger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger-line {
  width: 27px;
  height: 3px;
  background: var(--sunshine-yellow);
  transition: all 0.3s ease;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 21px;
}

.nav-anchor {
  color: var(--pure-white);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.nav-anchor:hover,
.nav-item.current .nav-anchor {
  color: var(--sunshine-yellow);
  background: rgba(255, 231, 76, 0.1);
  transform: translateY(-2px);
}

.auth-buttons {
  display: flex;
  gap: 13px;
}

.login-trigger,
.register-trigger {
  padding: 11px 21px;
  border: none;
  border-radius: 21px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.login-trigger {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid var(--ocean-blue);
}

.login-trigger:hover {
  background: var(--ocean-blue);
  transform: scale(1.05);
  box-shadow: var(--neon-glow);
}

.register-trigger {
  background: var(--gradient-magic);
  color: var(--pure-white);
  border: 2px solid transparent;
}

.register-trigger:hover {
  transform: scale(1.05);
  box-shadow: var(--neon-glow);
  filter: brightness(1.1);
}

.spotlight-banner {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.visual-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 28, 0.9) 0%,
    rgba(45, 27, 105, 0.8) 50%,
    rgba(53, 167, 255, 0.8) 100%
  );
}

.content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 27px;
  width: 100%;
}

.message-block {
  max-width: 640px;
  margin-top: 89px;
}

.headline-primary {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 27px;
  background: linear-gradient(
    145deg,
    var(--sunshine-yellow) 0%,
    var(--victory-green) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 12px rgba(255, 231, 76, 0.3);
}

.description-text {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.ticket-purchase-form {
  display: flex;
  gap: 8px;
  margin-bottom: 27px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 34px;
  backdrop-filter: blur(8px);
}

.email-field {
  flex: 1;
  padding: 16px 21px;
  border: none;
  border-radius: 27px;
  font-size: 1.1rem;
  background: var(--pure-white);
  color: var(--midnight-dark);
  outline: none;
}

.email-field::placeholder {
  color: rgba(10, 15, 28, 0.6);
}

.purchase-button {
  padding: 16px 34px;
  border: none;
  border-radius: 27px;
  background: var(--gradient-magic);
  color: var(--pure-white);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 21px rgba(53, 167, 255, 0.4);
}

.purchase-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--neon-glow);
  filter: brightness(1.15);
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}

.indicator-item {
  color: var(--victory-green);
  font-weight: 600;
  font-size: 1rem;
}

.endcontent-block {
  background: linear-gradient(180deg, var(--midnight-dark) 0%, #1a1a2e 100%);
  padding: 47px 0 27px;
  border-top: 1px solid rgba(107, 241, 120, 0.2);
}

.bottom-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 27px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 21px;
}

.copyright-area p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.links-area ul {
  display: flex;
  list-style: none;
  gap: 27px;
}

.links-area a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.links-area a:hover {
  color: var(--sunshine-yellow);
}

.disclaimer-area .age-warning {
  color: var(--victory-green);
  font-weight: 600;
  font-size: 0.9rem;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 28, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-container {
  background: linear-gradient(145deg, var(--midnight-dark) 0%, #1a1a2e 100%);
  border-radius: 21px;
  box-shadow: 0 21px 47px rgba(0, 0, 0, 0.5), 0 0 34px rgba(107, 241, 120, 0.2);
  width: 90%;
  max-width: 470px;
  border: 1px solid rgba(107, 241, 120, 0.3);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 27px 34px 21px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sunshine-yellow);
}

.close-modal {
  background: none;
  border: none;
  color: var(--pure-white);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--sunshine-yellow);
}

.modal-body {
  padding: 27px 34px;
}

.field-group {
  margin-bottom: 21px;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--pure-white);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--ocean-blue);
  box-shadow: 0 0 13px rgba(53, 167, 255, 0.3);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 13px;
  background: var(--gradient-magic);
  color: var(--pure-white);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-bottom: 21px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 21px rgba(107, 241, 120, 0.4);
}

.form-footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.form-footer a {
  color: var(--ocean-blue);
  text-decoration: none;
}

.form-footer a:hover {
  color: var(--sunshine-yellow);
}

.forgot-link {
  display: block;
  margin-bottom: 13px;
}

.error-message {
  color: #ff4757;
  background: rgba(255, 71, 87, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 13px;
  text-align: center;
  font-size: 0.9rem;
}

.success-message {
  color: var(--victory-green);
  background: rgba(107, 241, 120, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 13px;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 890px) {
  .mobile-trigger {
    display: flex;
  }

  .desktop-menu {
    position: absolute;
    top: 89px;
    left: 0;
    right: 0;
    background: rgba(10, 15, 28, 0.95);
    flex-direction: column;
    padding: 27px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .desktop-menu.mobile-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-bottom: 21px;
  }

  .auth-buttons {
    width: 100%;
    justify-content: center;
  }

  .headline-primary {
    font-size: 2.8rem;
  }

  .ticket-purchase-form {
    flex-direction: column;
    gap: 13px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 13px;
  }

  .bottom-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 21px;
  }

  .links-area ul {
    flex-direction: column;
    gap: 13px;
  }
}

@media (max-width: 640px) {
  .nav-wrapper {
    padding: 0 16px;
  }

  .content-wrapper {
    padding: 0 16px;
  }

  .headline-primary {
    font-size: 2.2rem;
  }

  .description-text {
    font-size: 1.1rem;
  }

  .modal-container {
    margin: 21px;
  }

  .modal-header,
  .modal-body {
    padding: 21px;
  }
}

.ticket-showcase-area {
  padding: 89px 0;
  background: #181a1b;
  position: relative;
  overflow: hidden;
}

@keyframes rotate-gradient {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.showcase-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 27px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 67px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ticket-visual-zone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lottery-ticket-image {
  max-width: 100%;
  height: auto;
  border-radius: 21px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.lottery-ticket-image:hover {
  transform: translateY(-8px) scale(1.02);
}

.glow-effect {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: conic-gradient(
    from 0deg,
    var(--victory-green),
    var(--ocean-blue),
    var(--sunshine-yellow),
    var(--victory-green)
  );
  border-radius: 34px;
  opacity: 0.3;
  filter: blur(27px);
  animation: pulse-glow 3s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes pulse-glow {
  from {
    opacity: 0.2;
    transform: scale(0.95);
  }
  to {
    opacity: 0.4;
    transform: scale(1.05);
  }
}

.ticket-content-zone {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.section-headline {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
}

.section-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.countdown-container {
  padding: 27px;
  border-radius: 21px;
  backdrop-filter: blur(13px);
  border: 1px solid var(--border);
}

.countdown-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 21px;
}

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

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  
  padding: 13px 16px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 67px;
}

.time-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pure-white);
  line-height: 1;
  text-shadow: 0 0 13px rgba(107, 241, 120, 0.5);
}

.time-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.time-separator {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  animation: blink-separator 2s infinite;
}

@keyframes blink-separator {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.3;
  }
}

.action-zone {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.get-ticket-btn {
  padding: 18px 42px;
  border: none;
  border-radius: 34px;
  background: var(--accent);
  color: var(--accent-contrast);
  border: 1px solid var(--accent);
  color: var(--pure-white);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.get-ticket-btn:hover {
  transform: translateY(-4px);
  filter: brightness(1.15);
}

.price-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}

.ticket-price {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 500;
}

.jackpot-amount {
  font-size: 1.1rem;
  font-weight: 700;
}

@media (max-width: 890px) {
  .showcase-wrapper {
    grid-template-columns: 1fr;
    gap: 47px;
    text-align: center;
  }

  .section-headline {
    font-size: 2.2rem;
  }

  .timer-display {
    flex-wrap: wrap;
    gap: 13px;
  }

  .time-unit {
    min-width: 55px;
    padding: 11px 13px;
  }

  .time-number {
    font-size: 1.6rem;
  }

  .price-info {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .ticket-showcase-area {
    padding: 55px 0;
  }

  .showcase-wrapper {
    padding: 0 16px;
    gap: 34px;
  }

  .section-headline {
    font-size: 1.9rem;
  }

  .countdown-container {
    padding: 21px;
  }

  .timer-display {
    gap: 8px;
  }

  .time-unit {
    min-width: 47px;
    padding: 8px 10px;
  }

  .time-number {
    font-size: 1.4rem;
  }

  .time-separator {
    font-size: 1.4rem;
  }

  .get-ticket-btn {
    font-size: 1.1rem;
    padding: 16px 34px;
  }

  .price-info {
    flex-direction: column;
    gap: 8px;
  }
}

.benefits-showcase-zone {
  padding: 97px 0;
  background: linear-gradient(
    225deg,
    var(--midnight-dark) 0%,
    #16213e 47%,
    var(--midnight-dark) 100%
  );
  position: relative;
  overflow: hidden;
}

.benefits-showcase-zone::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 23% 34%,
      rgba(53, 167, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 78% 67%,
      rgba(107, 241, 120, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.benefits-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 27px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 73px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.benefits-content-area {
  display: flex;
  flex-direction: column;
  gap: 43px;
}

.section-header {
  text-align: left;
}

.benefits-headline {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--pure-white);
  margin-bottom: 23px;
}

.brand-highlight {
  background: linear-gradient(
    127deg,
    var(--sunshine-yellow) 0%,
    var(--victory-green) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 21px rgba(255, 231, 76, 0.3);
}

.benefits-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 19px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(107, 241, 120, 0.15);
  border-radius: 17px;
  padding: 23px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  gap: 19px;
}

.advantage-card:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(107, 241, 120, 0.3);
  box-shadow: 0 13px 34px rgba(0, 0, 0, 0.2), 0 0 21px rgba(107, 241, 120, 0.15);
}

.advantage-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--ocean-blue) 0%,
    var(--victory-green) 100%
  );
  border-radius: 0 17px 17px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.advantage-card:hover::before {
  opacity: 1;
}

.icon-container {
  flex: 0 0 auto;
  width: 47px;
  height: 47px;
  background: linear-gradient(
    135deg,
    rgba(53, 167, 255, 0.2) 0%,
    rgba(107, 241, 120, 0.1) 100%
  );
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 231, 76, 0.2);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icon-container .material-icons {
  font-size: 1.4rem;
  color: var(--sunshine-yellow);
  text-shadow: 0 0 8px rgba(255, 231, 76, 0.4);
}

.advantage-card:hover .icon-container {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    rgba(53, 167, 255, 0.3) 0%,
    rgba(107, 241, 120, 0.2) 100%
  );
  box-shadow: 0 0 13px rgba(255, 231, 76, 0.3);
}

.advantage-content {
  flex: 1;
}

.advantage-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 11px;
  line-height: 1.3;
}

.advantage-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin: 0;
}

.benefits-visual-area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  position: relative;
  max-width: 100%;
}

.benefits-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 23px;
  box-shadow: 0 21px 47px rgba(0, 0, 0, 0.4), 0 0 34px rgba(53, 167, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  filter: brightness(1.05) contrast(1.1);
}

.benefits-image:hover {
  transform: translateY(-13px) rotate(2deg);
  box-shadow: 0 34px 67px rgba(0, 0, 0, 0.5), 0 0 55px rgba(107, 241, 120, 0.3);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.float-element {
  position: absolute;
  font-size: 1.8rem;
  opacity: 0.7;
  animation: float-around 6s ease-in-out infinite;
}

.element-1 {
  top: 13%;
  right: -8%;
  animation-delay: 0s;
}

.element-2 {
  top: 67%;
  right: -13%;
  animation-delay: 1.5s;
}

.element-3 {
  bottom: 21%;
  left: -11%;
  animation-delay: 3s;
}

.element-4 {
  top: 34%;
  left: -8%;
  animation-delay: 4.5s;
}

@keyframes float-around {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-13px) rotate(5deg);
  }
  50% {
    transform: translateY(-8px) rotate(-3deg);
  }
  75% {
    transform: translateY(-18px) rotate(7deg);
  }
}

@media (max-width: 1200px) {
  .benefits-wrapper {
    gap: 55px;
  }

  .benefits-headline {
    font-size: 2.5rem;
  }
}

@media (max-width: 890px) {
  .benefits-showcase-zone {
    padding: 67px 0;
  }

  .benefits-wrapper {
    grid-template-columns: 1fr;
    gap: 47px;
  }

  .benefits-content-area {
    order: 2;
  }

  .benefits-visual-area {
    order: 1;
  }

  .section-header {
    text-align: center;
  }

  .benefits-headline {
    font-size: 2.3rem;
  }

  .advantage-card:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 640px) {
  .benefits-wrapper {
    padding: 0 16px;
    gap: 34px;
  }

  .benefits-headline {
    font-size: 2rem;
  }

  .benefits-description {
    font-size: 1.05rem;
  }

  .advantages-grid {
    gap: 16px;
  }

  .advantage-card {
    padding: 19px;
    gap: 16px;
  }

  .icon-container {
    width: 42px;
    height: 42px;
  }

  .icon-container .material-icons {
    font-size: 1.2rem;
  }

  .advantage-title {
    font-size: 1.2rem;
  }

  .advantage-text {
    font-size: 0.95rem;
  }

  .float-element {
    font-size: 1.4rem;
  }
}

.gameplay-guide-zone {
  padding: 83px 0;
  background: linear-gradient(
    157deg,
    var(--midnight-dark) 0%,
    #1f2937 41%,
    var(--midnight-dark) 100%
  );
  position: relative;
}

.gameplay-guide-zone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(107, 241, 120, 0.02) 50%,
      transparent 70%
    ),
    linear-gradient(
      -45deg,
      transparent 30%,
      rgba(53, 167, 255, 0.02) 50%,
      transparent 70%
    );
  pointer-events: none;
}

.guide-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 27px;
  position: relative;
  z-index: 2;
}

.guide-header {
  text-align: center;
  margin-bottom: 59px;
}

.guide-headline {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--pure-white);
  margin-bottom: 17px;
  background: linear-gradient(
    134deg,
    var(--sunshine-yellow) 0%,
    var(--victory-green) 70%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.guide-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-style: italic;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 31px;
  margin-bottom: 47px;
}

.step-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(53, 167, 255, 0.15);
  border-radius: 19px;
  padding: 29px;
  display: flex;
  align-items: flex-start;
  gap: 21px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.step-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(107, 241, 120, 0.05),
    transparent
  );
  transition: left 0.6s ease;
}

.step-item:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(107, 241, 120, 0.3);
  box-shadow: 0 17px 39px rgba(0, 0, 0, 0.2), 0 0 23px rgba(53, 167, 255, 0.15);
}

.step-item:hover::after {
  left: 100%;
}

.step-number {
  flex: 0 0 auto;
  width: 51px;
  height: 51px;
  background: linear-gradient(
    135deg,
    var(--ocean-blue) 0%,
    var(--victory-green) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--pure-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 17px rgba(53, 167, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.step-item:hover .step-number {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 0 27px rgba(107, 241, 120, 0.6);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 11px;
  line-height: 1.3;
}

.step-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.winning-info {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(107, 241, 120, 0.2);
  border-radius: 23px;
  padding: 37px;
  text-align: center;
  backdrop-filter: blur(13px);
  position: relative;
}

.winning-info::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(
    45deg,
    var(--ocean-blue),
    var(--victory-green),
    var(--sunshine-yellow),
    var(--ocean-blue)
  );
  border-radius: 23px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.winning-info:hover::before {
  opacity: 0.3;
}

.prize-highlight {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  margin-bottom: 23px;
  flex-wrap: wrap;
}

.prize-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sunshine-yellow);
  text-shadow: 0 0 11px rgba(255, 231, 76, 0.4);
}

.prize-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.play-now-btn {
  padding: 17px 43px;
  border: none;
  border-radius: 29px;
  background: var(--gradient-magic);
  color: var(--pure-white);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 11px 29px rgba(53, 167, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.play-now-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--neon-glow);
  filter: brightness(1.12);
}

@media (max-width: 890px) {
  .gameplay-guide-zone {
    padding: 61px 0;
  }

  .guide-headline {
    font-size: 2.3rem;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .step-item {
    padding: 23px;
    gap: 17px;
  }

  .step-number {
    width: 43px;
    height: 43px;
    font-size: 1.2rem;
  }

  .winning-info {
    padding: 27px;
  }

  .prize-highlight {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .guide-wrapper {
    padding: 0 16px;
  }

  .guide-headline {
    font-size: 2rem;
  }

  .guide-subtitle {
    font-size: 1.1rem;
  }

  .step-item {
    padding: 19px;
    gap: 15px;
  }

  .step-title {
    font-size: 1.2rem;
  }

  .step-description {
    font-size: 1rem;
  }

  .winning-info {
    padding: 23px;
  }

  .play-now-btn {
    font-size: 1.1rem;
    padding: 15px 35px;
  }
}

.endcontent-block {
  background: linear-gradient(180deg, var(--midnight-dark) 0%, #1a1a2e 100%);
  padding: 47px 0 27px;
  border-top: 1px solid rgba(107, 241, 120, 0.2);
}

.bottom-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 27px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.footer-main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 21px;
}

.copyright-area p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

.links-area ul {
  display: flex;
  list-style: none;
  gap: 27px;
  margin: 0;
  padding: 0;
}

.links-area a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.links-area a:hover {
  color: var(--sunshine-yellow);
}

.responsible-gaming-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(107, 241, 120, 0.15);
  border-radius: 13px;
  padding: 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
  backdrop-filter: blur(5px);
}

.age-restriction {
  display: flex;
  align-items: center;
  gap: 11px;
}

.age-icon {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: var(--pure-white);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 6px 11px;
  border-radius: 8px;
  box-shadow: 0 0 13px rgba(255, 107, 107, 0.3);
  min-width: 34px;
  text-align: center;
}

.age-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
}

.help-info {
  flex: 1;
  text-align: center;
}

.help-title {
  color: var(--victory-green);
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 0 7px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.help-services {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.help-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  white-space: nowrap;
}

.regulator-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}



.regulator-link:hover {
  transform: translateY(-2px);
}

.regulator-icon {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  filter: brightness(1.1);
}

.regulator-link:hover .regulator-icon {
  opacity: 1;
}

@media (max-width: 890px) {
  .footer-main-content {
    flex-direction: column;
    text-align: center;
    gap: 17px;
  }

  .links-area ul {
    flex-direction: column;
    gap: 13px;
  }

  .responsible-gaming-section {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .help-services {
    flex-direction: column;
    gap: 8px;
  }

  .regulator-icons {
    gap: 13px;
  }

  .regulator-link {
    width: 70px;
    height: 70px;
  }

  .regulator-icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 640px) {
  .bottom-wrapper {
    padding: 0 16px;
  }

  .responsible-gaming-section {
    padding: 15px;
  }

  .age-restriction {
    justify-content: center;
  }

  .help-item {
    font-size: 0.75rem;
    padding: 3px 6px;
  }

  .regulator-icons {
    gap: 11px;
  }

  .regulator-link {
    width: 39px;
    height: 39px;
  }

  .regulator-icon {
    width: 25px;
    height: 25px;
  }
}

.endcontent-block {
  background: linear-gradient(180deg, var(--midnight-dark) 0%, #1a1a2e 100%);
  padding: 47px 0 27px;
  border-top: 1px solid rgba(107, 241, 120, 0.2);
}

.bottom-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 27px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.footer-main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 21px;
}

.copyright-area p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

.links-area ul {
  display: flex;
  list-style: none;
  gap: 27px;
  margin: 0;
  padding: 0;
}

.links-area a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.links-area a:hover {
  color: var(--sunshine-yellow);
}

.responsible-gaming-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(107, 241, 120, 0.15);
  border-radius: 13px;
  padding: 19px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
  backdrop-filter: blur(5px);
}

.age-restriction {
  display: flex;
  align-items: center;
  gap: 11px;
}

.age-icon {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: var(--pure-white);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 6px 11px;
  border-radius: 8px;
  box-shadow: 0 0 13px rgba(255, 107, 107, 0.3);
  min-width: 34px;
  text-align: center;
}

.age-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
}

.help-info {
  flex: 1;
  text-align: center;
}

.help-title {
  color: var(--victory-green);
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 0 7px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.help-services {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.help-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  white-space: nowrap;
}

.regulator-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.regulator-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--bg);;
  border: 1px solid var(--border);
  border-radius: 13px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(3px);
}

.regulator-link:hover {
  transform: translateY(-2px);
}

.regulator-icon {
  width: 80px;
  height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  filter: brightness(1.1);
}

.regulator-link:hover .regulator-icon {
  opacity: 1;
}

@media (max-width: 890px) {
  .footer-main-content {
    flex-direction: column;
    text-align: center;
    gap: 17px;
  }

  .links-area ul {
    flex-direction: column;
    gap: 13px;
  }

  .responsible-gaming-section {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .help-services {
    flex-direction: column;
    gap: 8px;
  }

  .regulator-icons {
    gap: 13px;
  }

  .regulator-link {
    width: 57px;
    height: 57px;
  }

  .regulator-icon {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 640px) {
  .bottom-wrapper {
    padding: 0 16px;
  }

  .responsible-gaming-section {
    padding: 15px;
  }

  .age-restriction {
    justify-content: center;
  }

  .help-item {
    font-size: 0.75rem;
    padding: 3px 6px;
  }

  .regulator-icons {
    gap: 11px;
  }

  .regulator-link {
    width: 51px;
    height: 51px;
  }

  .regulator-icon {
    width: 26px;
    height: 26px;
  }
}

.policy-content-zone {
  min-height: 80vh;
  padding: 120px 0 60px;
  background: linear-gradient(
    180deg,
    var(--midnight-dark) 0%,
    #1a1a2e 50%,
    var(--midnight-dark) 100%
  );
}

.policy-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 27px;
}

.policy-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(107, 241, 120, 0.2);
}

.policy-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--pure-white);
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    var(--sunshine-yellow) 0%,
    var(--victory-green) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.policy-sections {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.policy-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(107, 241, 120, 0.1);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(5px);
}

.policy-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sunshine-yellow);
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 231, 76, 0.3);
}

.policy-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@media (max-width: 890px) {
  .policy-content-zone {
    padding: 100px 0 50px;
  }

  .policy-wrapper {
    padding: 0 20px;
  }

  .policy-header h1 {
    font-size: 2.2rem;
  }

  .policy-section {
    padding: 25px;
  }

  .policy-sections {
    gap: 25px;
  }
}

@media (max-width: 640px) {
  .policy-wrapper {
    padding: 0 16px;
  }

  .policy-header h1 {
    font-size: 1.9rem;
  }

  .policy-intro {
    font-size: 1rem;
  }

  .policy-section {
    padding: 20px;
  }

  .policy-section h2 {
    font-size: 1.3rem;
  }

  .policy-section p {
    font-size: 0.95rem;
  }
}

.contact-content-zone {
  min-height: 80vh;
  padding: 120px 0 60px;
  background: linear-gradient(
    165deg,
    var(--midnight-dark) 0%,
    #1a1a2e 45%,
    var(--midnight-dark) 100%
  );
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 27px;
}

.contact-header {
  text-align: center;
  margin-bottom: 45px;
}

.contact-header h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--pure-white);
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    var(--sunshine-yellow) 0%,
    var(--victory-green) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.contact-form-section {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(107, 241, 120, 0.15);
  border-radius: 21px;
  padding: 40px;
  backdrop-filter: blur(8px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pure-white);
  margin-bottom: 5px;
}

.contact-input,
.contact-textarea {
  padding: 15px 18px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--pure-white);
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  transition: all 0.3s ease;
  outline: none;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--ocean-blue);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 15px rgba(53, 167, 255, 0.3);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.contact-submit-btn {
  padding: 18px 40px;
  border: none;
  border-radius: 25px;
  background: var(--gradient-magic);
  color: var(--pure-white);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(53, 167, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--neon-glow);
  filter: brightness(1.1);
}

.contact-submit-btn:active {
  transform: translateY(-1px);
}

.success-text {
  font-size: 1.1rem;
  color: var(--victory-green);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.modal-ok-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: var(--gradient-magic);
  color: var(--pure-white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-ok-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(107, 241, 120, 0.4);
}

@media (max-width: 890px) {
  .contact-content-zone {
    padding: 100px 0 50px;
  }

  .contact-wrapper {
    padding: 0 20px;
  }

  .contact-header h1 {
    font-size: 2.3rem;
  }

  .contact-form-section {
    padding: 30px;
  }

  .contact-form {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .contact-wrapper {
    padding: 0 16px;
  }

  .contact-header h1 {
    font-size: 2rem;
  }

  .contact-intro {
    font-size: 1rem;
  }

  .contact-form-section {
    padding: 25px;
  }

  .contact-input,
  .contact-textarea {
    padding: 12px 15px;
  }

  .contact-submit-btn {
    font-size: 1.1rem;
    padding: 16px 35px;
  }

  .contact-textarea {
    min-height: 100px;
  }
}
