:root {
  --primary-gold: #ffd700;
  --secondary-gold: #ffed4e;
  --dark-green: #0a4d3a;
  --medium-green: #1a5e3a;
  --light-green: #0f3829;
  --dark-bg: #000000;
  --text-light: #e0e0e0;
  --success-green: #00ff00;
  --danger-red: #ff4444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(
    135deg,
    var(--dark-green) 0%,
    var(--medium-green) 50%,
    var(--light-green) 100%
  );
  color: var(--primary-gold);
  overflow-x: hidden;
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-gold);
  color: var(--dark-bg);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1001;
}

.skip-link:focus {
  top: 6px;
}

.header {
  background: linear-gradient(
    90deg,
    var(--dark-bg) 0%,
    var(--medium-green) 50%,
    var(--dark-bg) 100%
  );
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(255, 215, 0, 0.3);
}

.container-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.download-btn {
  background: linear-gradient(45deg, var(--danger-red), #ff6666);
  color: white;
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.download-btn:hover,
.download-btn:focus {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.5);
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  role: group;
  aria-label: "Language selector";
}

.lang-btn {
  background: linear-gradient(
    45deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  color: var(--dark-bg);
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
}

.lang-btn:hover,
.lang-btn:focus,
.lang-btn.active {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  outline: 2px solid var(--dark-bg);
  outline-offset: 2px;
}

.lang-content {
  display: none;
}

.lang-content.active {
  display: block;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-icon {
  height: 40px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-text .highlighted {
  color: var(--secondary-gold);
}
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.burger-menu span {
  height: 3px;
  width: 100%;
  background: var(--primary-gold);
  border-radius: 3px;
  transition: 0.3s ease;
}

.mobile-menu {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.mobile-menu.open {
  display: flex;
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .nav-controls {
    display: none;
  }

  .mobile-menu.open .nav-controls {
    display: flex;
    gap: 1rem;
  }
  .container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.play-btn {
  background: linear-gradient(
    45deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  color: var(--dark-bg);
  border: none;
  padding: 1.25rem 3.125rem;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  animation: pulse 1.5s infinite ease-in-out;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform; /* 💥 фикс */
}

.play-btn:hover,
.play-btn:focus {
  outline: 3px solid var(--text-light);
  outline-offset: 3px;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.75);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  }
}

.hero {
  position: relative;
  color: var(--text-light);
  padding: 6rem 1.5rem 5rem;
  overflow: hidden;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/hero.jpg") center/cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(0, 31, 17), rgba(0, 0, 0, 0.375));
  z-index: -1;
}
.hero-inner {
  max-width: 1200px;
  padding: 1rem;
  text-align: left;
}

.hero-title {
  font-size: 3.3rem;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 0.25rem;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.605);
}

.hero-subtitle {
  font-size: 2rem;
  color: var(--secondary-gold);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-meta {
  font-size: 1rem;
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: 2rem;
}

.offer-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--primary-gold);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
  max-width: 400px;
  margin-top: 30px;
}

.offer-box:hover {
  background: rgba(255, 255, 255, 0.05);
}

.offer-icon {
  width: 45px;
  height: 45px;
  background: url("icons/timer.svg") center/contain no-repeat;
  flex-shrink: 0;
}

.offer-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.offer-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.offer-timer {
  font-size: 0.95rem;
  color: var(--text-light);
  opacity: 0.9;
  font-weight: 500;
}
@media (max-width: 480px) {
  .hero-inner {
    padding: 1rem 0.75rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-meta {
    font-size: 0.85rem;
  }

  .play-btn {
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    width: 100%;
  }

  .offer-box {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    padding: 1rem;
  }

  .offer-text {
    text-align: center;
  }
}

.section {
  padding: 3.75rem 0;
  margin: 1.25rem 0;
}

.section h2 {
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 800;
  color: var(--primary-gold);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  line-height: 1.3;
  word-break: break-word;
}

.section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-gold);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--secondary-gold);
  margin: 1.5rem 0 1rem 0;
  line-height: 1.4;
  word-break: break-word;
}
.games-section {
  position: relative;
  padding: 4rem 1.5rem;
  color: var(--text-light);
  overflow: hidden;
  z-index: 0;
}

.games-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/games-bg.jpg") center/cover no-repeat;
  z-index: -3;
}

.games-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 77, 58, 0.653),
    rgba(0, 0, 0, 0.564)
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: -2;
}
.games-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-gold);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  line-height: 1.3;
}

.games-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-gold);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
}
.game-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--primary-gold);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.25);
}

.game-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid var(--primary-gold);
}

.game-card h3 {
  font-size: 1.25rem;
  color: var(--primary-gold);
  margin: 1rem 1rem 0.5rem;
}

.game-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0 1rem 1rem;
  flex-grow: 1;
}

.game-cta {
  display: block;
  margin: 0 1rem 1.5rem;
  text-align: center;
  background: var(--primary-gold);
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  padding: 0.6rem 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.game-cta:hover {
  background: var(--secondary-gold);
}
@media (max-width: 480px) {
  .game-card h3 {
    font-size: 1.1rem;
  }

  .game-card p {
    font-size: 0.875rem;
  }

  .game-cta {
    font-size: 0.95rem;
  }
}
.feature-card {
  background: linear-gradient(
    135deg,
    var(--medium-green) 0%,
    var(--dark-green) 100%
  );
  border: 2px solid var(--primary-gold);
  border-radius: 15px;
  padding: 1.875rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-card:hover,
.game-card:focus-within,
.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.bonus-cta {
  margin-top: 1rem;
  display: inline-block;
  background: var(--primary-gold);
  color: #000;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.bonus-cta:hover {
  background: var(--secondary-gold);
}
.bonus-card {
  background: linear-gradient(
    135deg,
    var(--dark-bg) 0%,
    var(--medium-green) 50%,
    var(--dark-bg) 100%
  );
  border: 3px solid var(--primary-gold);
  border-radius: 20px;
  padding: 1.875rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 215, 0, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 2s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.bonus-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  border-color: var(--secondary-gold);
}

.bonus-card:hover::before {
  opacity: 1;
}
.bonus-amount {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--primary-gold);
  margin: 1.25rem 0;
}
.promo-section {
  padding: 4rem 1.5rem;
  color: var(--text-light);
}

.promo-section h2 {
  font-size: 2rem;
  color: var(--primary-gold);
  text-align: center;
  margin-bottom: 3rem;
}

.promo-featured {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--primary-gold);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.promo-featured-text {
  flex: 1 1 300px;
}

.promo-featured-text h3 {
  color: var(--secondary-gold);
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.promo-featured-text p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.cta-primary {
  background: var(--primary-gold);
  color: #000;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-primary:hover {
  background: var(--secondary-gold);
}

.promo-featured-img img {
  width: 280px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Scrollable cards */
.promo-scroller {
  overflow-x: auto;
  padding-bottom: 1rem;
}

.promo-scroller {
  overflow-x: auto;
  padding-bottom: 1rem;
}

.scroll-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  min-width: max-content;
  align-items: stretch;
}
.scroll-card {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.08),
    rgba(0, 255, 170, 0.04)
  );
  border: 1px solid var(--primary-gold);
  border-radius: 12px;
  padding: 1.25rem;
  min-width: 240px;
  max-width: 240px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.scroll-card:hover {
  transform: translateY(5px);
}

.scroll-card h4 {
  font-size: 1.1rem;
  color: var(--primary-gold);
  margin-bottom: 0.75rem;
}

.scroll-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.cta-small {
  align-self: start;
  background: var(--primary-gold);
  color: #000;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
}

.cta-small:hover {
  background: var(--secondary-gold);
}

.promo-scroller::-webkit-scrollbar {
  height: 8px;
}

.promo-scroller::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 4px;
}

.wins-counter {
  position: relative;
  padding: 4rem 1.5rem;
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
  z-index: 0;
}

.wins-counter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/wins-bg.jpg") center/cover no-repeat;
  z-index: -3;
}

.wins-counter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 77, 58, 0.478),
    rgba(0, 0, 0, 0.95)
  );
  /* backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px); */
  z-index: -2;
}
.wins-counter h3 {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.wins-counter p {
  font-size: 1rem;
  opacity: 0.9;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .win-amount {
    font-size: 2.4rem;
  }

  .wins-counter h3 {
    font-size: 1.6rem;
  }
}

@keyframes pulse {
  0% {
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  }
  50% {
    text-shadow: 0 0 16px rgba(255, 215, 0, 0.7);
  }
  100% {
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  }
}
.win-amount {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--success-green);
  font-weight: bold;
  animation: countUp 2s ease-in-out infinite;
}

@keyframes countUp {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: stretch;
  gap: 10px;
  margin-top: 30px;
}

.payment-method {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-light);
  transition: transform 0.3s ease;
}

.payment-method:hover {
  transform: translateY(-5px);
}

.payment-method img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  margin-bottom: 10px;
  display: block;
}

.payment-method p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}
.button-wrapper {
  margin-top: 2.5rem;
  text-align: center;
}

.button-primary {
  display: inline-block;
  background: var(--primary-gold);
  color: #000;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

.button-primary:hover {
  background: var(--secondary-gold);
  transform: translateY(-2px);
}

.button-primary.large {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
}
@media (max-width: 480px) {
  .button-primary.large {
    font-size: 1rem;
    padding: 0.9rem 1.25rem;
  }
}
.highlight-box {
  background: linear-gradient(
    45deg,
    var(--primary-gold),
    var(--secondary-gold)
  );
  color: var(--dark-bg);
  padding: 1.875rem;
  border-radius: 15px;
  margin: 1.875rem 0;
  font-weight: bold;
  font-size: 1.125rem;
  text-align: center;
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr;
  }

  .bonus-cards {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    gap: 0.625rem;
  }

  .payment-method {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}
.mobile-app-section {
  padding: 60px 20px;
  border-radius: 16px;
}

.app-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.app-text {
  flex: 1;
  max-width: 600px;
}

.app-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-gold);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  line-height: 1.3;
}

.app-text h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-gold);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}
.app-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.app-feature {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.app-feature span {
  font-size: 1.2rem;
  margin-right: 6px;
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.qr-box {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 10px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-weight: bold;
}

.store-button {
  background: #000;
  color: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  text-align: left;
  line-height: 1.2;
  font-size: 0.85rem;
  text-decoration: none;
  width: 140px;
  transition: background 0.3s;
}

.store-button strong {
  font-size: 1rem;
}

.store-button.apple::before {
  content: "";
  font-size: 1.4rem;
  margin-right: 8px;
}

.store-button.google::before {
  content: "▶";
  font-size: 1.2rem;
  margin-right: 8px;
}

.phone-wrapper {
  perspective: 500px;
  flex-shrink: 0;
}

.phone-card {
  width: 280px;
  height: 500px;
  border-radius: 24px;
  background: linear-gradient(to bottom, #15203e, #000);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: rotateY(-15deg);
  transition: transform 0.6s ease;
  border: 5px solid #223b4c;
}

.phone-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.phone-card p {
  font-size: 0.95rem;
  text-align: center;
  color: var(--text-muted);
  padding: 0 10px;
  line-height: 1.4;
}

.logo-highlight {
  font-weight: 800;
  color: var(--text-light);
}

.logo-green {
  color: var(--secondary-color);
  font-weight: 800;
}

.phone-wrapper:hover .phone-card {
  transform: rotateY(0deg);
}
.cta-in-phone {
  margin-top: 1.5rem;
  background: var(--primary-gold);
  color: #000;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-in-phone:hover {
  background: var(--secondary-gold);
  transform: translateY(-2px);
}
.app-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .app-flex {
    flex-direction: column;
    align-items: center;
  }

  .phone-card {
    margin-top: 30px;
  }
}
.site-footer {
  background: #000;
  color: var(--text-light);
  padding: 3rem 1.5rem 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-brand h4 {
  font-size: 1.25rem;
  color: var(--primary-gold);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  opacity: 0.85;
  line-height: 1.6;
}

.footer-links h5,
.footer-info h5 {
  color: var(--secondary-gold);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.footer-links ul,
.footer-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-info li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-info a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.9;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-info a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links,
  .footer-info {
    margin-top: 1.5rem;
  }
}
