@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Inter:wght@400;600;700&family=Poppins:wght@400;600&display=swap');

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

body {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
}

.header {
  background: #270049;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px max(60px, calc((100% - 1200px) / 2 + 60px));
  overflow: hidden;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo img {
  width: 40px;
  height: 40px;
}

.header-logo span {
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-nav a {
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
}

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

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 20px;
  background: #270049;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px 20px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: 18px;
  color: #fff;
}

.hero {
  background: #fff;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 60px;
  overflow: hidden;
}

.hero-title {
  font-weight: 700;
  font-size: 62px;
  line-height: 1;
  text-align: center;
  letter-spacing: -1.86px;
  color: #000;
  width: 100%;
}

.hero-title.small {
  font-size: 36px;
  letter-spacing: -1.08px;
}

.hero-image {
  width: 620px;
  max-width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.48px;
  color: #000;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #270049;
  color: #fff;
  padding: 16px 40px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  height: 48px;
  overflow: hidden;
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.85;
}

.btn img {
  width: 16px;
  height: 16px;
  transform: rotate(-90deg);
}

.features {
  display: flex;
  gap: 20px;
  width: 100%;
}

.feature-card {
  flex: 1;
  background: #f4e0ff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 10px;
}

.feature-card img {
  width: 60px;
  height: 60px;
}

.feature-card h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.54px;
}

.feature-card.dark {
  background: #270049;
}

.feature-card.dark h3,
.feature-card.dark p {
  color: #fff;
}

.feature-card p {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  letter-spacing: -0.42px;
}

.about {
  background: #fff;
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 60px;
  overflow: hidden;
}

.about-image {
  width: 299px;
  flex-shrink: 0;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-content h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -1.08px;
}

.about-content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.48px;
}

.platforms {
  background: #fff;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 60px;
  overflow: hidden;
}

.platforms h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  text-align: center;
  letter-spacing: -1.08px;
  width: 100%;
}

.platforms-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.platform-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-radius: 20px;
  gap: 20px;
}

.platform-card.featured {
  background: #8b00db;
  border: 2px solid #7b4296;
}

.platform-card.regular {
  background: #f4e0ff;
}

.platform-rank {
  width: 36px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-card.featured .platform-rank img {
  width: 100%;
  height: 100%;
}

.platform-card.regular .platform-rank span {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #8b00db;
}

.platform-logo {
  width: 180px;
  height: 105px;
  background: #270049;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 10px;
}

.platform-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.platform-details {
  width: 350px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.platform-features {
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

.platform-card.featured .platform-features {
  color: #fff;
  font-weight: 400;
}

.platform-card.regular .platform-features {
  color: #000;
  font-weight: 300;
}

.platform-payments {
  display: flex;
  gap: 6px;
}

.platform-payments img {
  width: 55px;
  height: 23px;
  border-radius: 4px;
  object-fit: cover;
 
}

.platform-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.platform-rating .score {
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.6px;
  text-align: center;
}

.platform-rating .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.48px;
  text-align: center;
}

.platform-card.featured .platform-rating .score,
.platform-card.featured .platform-rating .label {
  color: #fff;
}

.platform-rating .stars {
  height: 15px;
}

.platform-visit {
  width: 205px;
  flex-shrink: 0;
  justify-content: center;
}

.advertising {
  background: #fff;
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 60px;
  overflow: hidden;
}

.advertising-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.advertising-content h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -1.08px;
}

.advertising-content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.48px;
}

.advertising-image {
  width: 524px;
  flex-shrink: 0;
}

.advertising-image img {
  width: 100%;
  height: auto;
}

.why-choose {
  background: #fff;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 60px;
  overflow: hidden;
}

.why-choose h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  text-align: center;
  letter-spacing: -1.08px;
  width: 100%;
}

.why-cards {
  display: flex;
  gap: 20px;
  width: 100%;
}

.why-card {
  flex: 1;
  height: 240px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 40px 10px;
}

.why-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(253, 224, 255, 0) 0%, #2c0049 100%);
}

.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: #fff;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.32px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}

.bonus {
  background: #fff;
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 60px;
  overflow: hidden;
}

.bonus-image {
  width: 524px;
  flex-shrink: 0;
}

.bonus-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.bonus-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bonus-content h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -1.08px;
}

.bonus-content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.48px;
}

.faq {
  background: #fff;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 60px;
  overflow: hidden;
}

.faq h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  text-align: center;
  letter-spacing: -1.08px;
  width: 100%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.faq-item {
  border: 1px solid #000;
  border-radius: 20px;
  padding: 16px 20px;
  cursor: pointer;
}

.faq-item.active {
  background: #8b00db;
  border: none;
}

.faq-header {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.faq-header h3 {
  flex: 1;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}

.faq-item.active .faq-header h3 {
  color: #fff;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  width: 28px;
  height: 28px;
  transform: rotate(45deg);
}


.faq-answer {
  display: none;
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

.faq-item.active .faq-answer {
  display: block;
}

.policy-section {
  background: #fff;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 60px;
  overflow: hidden;
}

.policy-section h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -1.08px;
  width: 100%;
  max-width: 1020px;
}

.policy-intro {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.48px;
  width: 100%;
  max-width: 1020px;
}

.policy-card {
  background: #f4e0ff;
  border: 1px solid rgba(232, 232, 237, 0.08);
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 1020px;
}

.policy-card p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.48px;
  margin-bottom: 5px;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-card ul {
  list-style: disc;
  margin-bottom: 5px;
  padding-left: 24px;
}

.policy-card ul li {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.48px;
  margin-bottom: 0;
}

.contact-section {
  background: #fff;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 60px;
  overflow: hidden;
}

.contact-section h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  text-align: center;
  letter-spacing: -1.08px;
}

.contact-row {
  display: flex;
  gap: 30px;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
}

.contact-image {
  flex: 1;
  min-width: 0;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-form-card {
  width: 580px;
  flex-shrink: 0;
  background: #f4e0ff;
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.contact-field {
  background: #8b00db;
  border-radius: 10px;
  padding: 14px 24px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.9px;
  color: #fff;
  width: 100%;
  outline: none;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.7);
}

.contact-field::placeholder {
  color: #fff;
}

.contact-field.message {
  height: 90px;
  resize: none;
}

.contact-submit {
  background: #270049;
  color: #fff;
  border: none;
  border-radius: 10px;
  height: 48px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-submit:hover {
  opacity: 0.85;
}

.footer {
  background: #270049;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 30px max(60px, calc((100% - 1200px) / 2 + 60px));
  overflow: hidden;
}

.footer-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.footer-nav a {
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.footer-orgs {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-orgs a {
  height: 58px;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-orgs a img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-disclaimer {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: #fff;
  text-align: center;
}

@media (max-width: 768px) {
  .header {
    padding: 16px 20px;
  }

  .header-logo span {
    font-size: 24px;
  }

  .header-logo img {
    width: 30px;
    height: 30px;
  }

  .header-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding: 30px 20px;
    gap: 20px;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: -0.96px;
  }

  .hero-title.small {
    font-size: 28px;
  }

  .hero-image {
    width: 100%;
  }

  .hero-text {
    font-size: 14px;
  }

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

  .feature-card {
    padding: 20px;
  }

  .about {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }

  .about-image {
    width: 200px;
  }

  .about-content h2 {
    font-size: 28px;
    text-align: center;
  }

  .about-content p {
    font-size: 14px;
  }

  .platforms {
    padding: 30px 20px;
  }

  .platforms h2 {
    font-size: 28px;
  }

  .platform-card {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    align-items: center;
  }

  .platform-rank {
    order: -1;
  }

  .platform-logo {
    width: 100%;
    height: 80px;
  }

  .platform-details {
    width: 100%;
  }

  .platform-features {
    font-size: 12px;
  }

  .platform-payments {
    justify-content: center;
  }

  .platform-rating {
    flex-direction: row;
    gap: 15px;
  }

  .platform-visit {
    width: 100%;
  }

  .advertising {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }

  .advertising-image {
    width: 100%;
    max-width: 300px;
    order: -1;
  }

  .advertising-content h2 {
    font-size: 28px;
  }

  .advertising-content p {
    font-size: 14px;
  }

  .why-choose {
    padding: 30px 20px;
  }

  .why-choose h2 {
    font-size: 28px;
  }

  .why-cards {
    flex-direction: column;
  }

  .why-card {
    height: 200px;
  }

  .bonus {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }

  .bonus-image {
    width: 100%;
    max-width: 300px;
    order: -1;
  }

  .bonus-content h2 {
    font-size: 28px;
  }

  .bonus-content p {
    font-size: 14px;
  }

  .faq {
    padding: 30px 20px;
  }

  .faq h2 {
    font-size: 28px;
  }

  .faq-header h3 {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .footer {
    padding: 30px 20px;
    gap: 20px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .footer-nav a {
    font-size: 16px;
  }

  .footer-orgs {
    gap: 15px;
  }

  .footer-orgs a {
    width: 100px;
    height: 45px;
  }

  .footer-disclaimer {
    font-size: 12px;
  }

  .footer-copy {
    font-size: 12px;
  }

  .policy-section {
    padding: 30px 20px;
  }

  .policy-section h1 {
    font-size: 28px;
  }

  .policy-intro {
    font-size: 14px;
  }

  .policy-card p,
  .policy-card ul li {
    font-size: 14px;
  }

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

  .contact-section h1 {
    font-size: 28px;
  }

  .contact-row {
    flex-direction: column;
  }

  .contact-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .contact-form-card {
    width: 100%;
  }
}

/* ============ Hover effects & animations ============ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139, 0, 219, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(139, 0, 219, 0); }
}

.header-logo,
.header-nav a,
.mobile-nav a,
.footer-nav a,
.footer-orgs a,
.btn,
.feature-card,
.platform-card,
.platform-logo img,
.why-card,
.why-card-bg img,
.faq-item,
.faq-icon,
.contact-field,
.contact-submit,
.burger span {
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease,
    color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.03);
}

.header-logo img {
  transition: transform 0.5s ease;
}

.header-logo:hover img {
  transform: rotate(-8deg) scale(1.08);
}

.header-nav a,
.mobile-nav a,
.footer-nav a {
  position: relative;
}

.header-nav a::after,
.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.header-nav a:hover::after,
.footer-nav a:hover::after {
  width: 100%;
}

.header-nav a:hover,
.mobile-nav a:hover,
.footer-nav a:hover {
  opacity: 0.8;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 0, 73, 0.35);
  opacity: 1;
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(39, 0, 73, 0.25);
}

.btn img {
  transition: transform 0.3s ease;
}

.btn:hover img {
  transform: rotate(-90deg) translateY(-3px);
}

.feature-card {
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(139, 0, 219, 0.2);
}

.feature-card img {
  transition: transform 0.5s ease;
}

.feature-card:hover img {
  transform: scale(1.1) rotate(-5deg);
}

.platform-card {
  cursor: default;
}

.platform-card.regular:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(139, 0, 219, 0.2);
}

.platform-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(139, 0, 219, 0.4);
}

.platform-logo img {
  transition: transform 0.5s ease;
}

.platform-card:hover .platform-logo img {
  transform: scale(1.08);
}

.platform-payments img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-payments img:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.why-card {
  cursor: default;
}

.why-card:hover {
  transform: translateY(-6px);
}

.why-card-bg img {
  transition: transform 0.6s ease;
}

.why-card:hover .why-card-bg img {
  transform: scale(1.08);
}

.faq-item {
  transition: border-color 0.3s ease, background 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item:not(.active):hover {
  border-color: #8b00db;
  box-shadow: 0 6px 16px rgba(139, 0, 219, 0.12);
}

.faq-icon {
  transition: transform 0.4s ease;
}

.faq-item:not(.active):hover .faq-icon {
  transform: rotate(90deg);
}

.faq-item.active .faq-icon {
  transition: transform 0.4s ease;
}

.faq-item.active .faq-answer {
  animation: fadeIn 0.4s ease;
}

.footer-orgs a img {
  filter: grayscale(0.3);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-orgs a:hover img {
  filter: grayscale(0);
  transform: scale(1.08);
}

.contact-field:focus {
  box-shadow: 0 0 0 2px rgba(139, 0, 219, 0.5);
  transform: translateY(-1px);
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 0, 73, 0.35);
  opacity: 1;
}

.burger:hover span {
  background: #f4e0ff;
}

.hero-image img,
.about-image img,
.advertising-image img,
.bonus-image img {
  transition: transform 0.6s ease;
}

.hero-image:hover img,
.about-image:hover img,
.advertising-image:hover img,
.bonus-image:hover img {
  transform: scale(1.04);
}

.hero-image img {
  animation: float 6s ease-in-out infinite;
}

.hero-title,
.hero-text,
.hero .btn,
.features,
.about-image,
.about-content,
.platforms h2,
.platforms-list,
.advertising-content,
.advertising-image,
.why-choose h2,
.why-cards,
.bonus-image,
.bonus-content,
.faq h2,
.faq-list,
.policy-section h1,
.policy-intro,
.policy-card,
.contact-section h1,
.contact-row {
  animation: fadeInUp 0.7s ease both;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============ Popups (age & cookies) ============ */

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes overlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  animation: overlayIn 0.3s ease both;
}

.popup-overlay.cookie {
  background: rgba(0, 0, 0, 0.4);
  align-items: flex-end;
  justify-content: center;
}

.popup-card {
  background: #fff;
  border: 3px solid #8b00db;
  border-radius: 24px;
  padding: 40px 36px;
  width: 100%;
  max-width: 560px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  animation: popupIn 0.4s ease both;
}

.popup-card.cookie {
  background: #f4e0ff;
  border: none;
  text-align: left;
  align-items: stretch;
  max-width: 720px;
  padding: 30px;
}

.popup-icon {
  width: 80px;
  height: 80px;
}

.popup-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.popup-card h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.84px;
  color: #000;
}

.popup-card p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.32px;
  color: #000;
}

.popup-buttons {
  display: flex;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.popup-card.cookie .popup-buttons {
  justify-content: flex-start;
}

.popup-btn {
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  min-width: 140px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease,
    background 0.3s ease;
}

.popup-btn.primary {
  background: #270049;
  color: #fff;
}

.popup-btn.secondary {
  background: #a191b3;
  color: #fff;
}

.popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 0, 73, 0.3);
}

.popup-btn.secondary:hover {
  background: #8e7da6;
}

.popup-btn:active {
  transform: translateY(0);
}

body.popup-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .popup-card {
    padding: 30px 22px;
    border-radius: 20px;
    gap: 16px;
  }

  .popup-card.cookie {
    padding: 22px;
  }

  .popup-card h2 {
    font-size: 22px;
  }

  .popup-card p {
    font-size: 14px;
  }

  .popup-icon {
    width: 64px;
    height: 64px;
  }

  .popup-buttons {
    width: 100%;
    flex-direction: row;
  }

  .popup-btn {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
  }
}
