/* =========================================================
   1) GLOBAL / BASE
   ========================================================= */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  overscroll-behavior-y: auto;
  touch-action: pan-y; /* allows only vertical scroll */
}

:root {
  --primary-green: #EE007D;
  --secondary-green: #EE007D;
  --accent-blue: #EE007D;
  --warm-yellow: #ffeb3b;
  --deep-forest: #0a1a0a;
  --light-mint: #e8fff0;
  --glow-green: rgba(0, 255, 136, 0.3);
  --glow-blue: rgba(0, 212, 255, 0.3);
}

/* ===== Scrollbar Styling (Dark Green Theme) ===== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #e6f4f4;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background:  #EE007D;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background:  #af0146;
}

/* ========================
   RESET & BASE
======================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  font-family: 'Poppins' , sans-serif;
}

body {
  color: #0b0b0b;
  line-height: 1.6;
  background: #fff;
}

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

ul {
  list-style: none;
}

/* ========================
   GLOBAL CONTAINERS
======================== */
.page-card {
  border-radius: 12px;
  margin-bottom: 50px;
  margin-left: 25px;
  margin-right: 25px;
  margin-top: 130px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

/* =========================================================
   2) HEADER / NAVIGATION
   ========================================================= */
/* ========== LOGO ========== */
.logo img {
  height: 60px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1);
}

.logo h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.logo h2:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #ffffff, #EE007D);
}

/* ========== HEADER ========== */
header {
  width: 100%;
  padding: 8px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  background: #f5f5f5;
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
  overflow: visible;
  min-height: 70px;
}

/* Diagonal background shape on the right */
header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(135deg, #EE007D 0%, #b8005f 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

header.scrolled {
  background: rgba(245, 245, 245, 0.95);
  border-bottom: 1px solid rgba(238, 0, 125, 0.2);
}

header.scrolled::after {
  opacity: 0.9;
}

/* Logo */
header > .logo {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Nav in the middle-left */
header > nav {
  position: relative;
  z-index: 1;
  flex: 1;
}

/* Hamburger on the right */
header > .hamburger {
  position: relative;
  z-index: 1100;
  margin-left: auto;
  order: 3;
}

/* Login button */
header > .login-btn {
  order: 2;
}

/* ========== NAV MENU ========== */
nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
  max-width: calc(100% - 200px);
}

.menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.menu li {
  position: relative;
}

.menu a {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.menu li a:hover {
  color: #EE007D;
}

.menu li > a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #EE007D;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.menu li > a:hover::after {
  width: 100%;
}

.menu li:not(.login-btn) > a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #EE007D;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.menu li:not(.login-btn) > a:hover::after {
  width: 100%;
}

.menu a:hover {
  font-weight: 600;
  color: #d40e5e;
}

.menu a img {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.menu a:hover img {
  transform: scale(1.2);
}

/* ========== LOGIN BUTTON ========== */
/* Desktop login button */
.login-btn {
  position: absolute;
  right: 40px;
  z-index: 2;
}

.login-btn a {
  background: #ffffff;
  color: #EE007D !important;
  padding: 10px 30px;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.login-btn a:hover {
  background: #f0f0f0;
  color: #EE007D !important;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(238, 0, 125, 0.3);
}

.login-btn a::after {
  display: none !important;
}

/* Mobile login button - hidden on desktop */
.mobile-login-btn {
  display: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  border-radius: 8px;
  overflow: hidden;
  background: #EE007D;
  border: 1px solid rgba(238, 0, 125, 0.55);
  box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.6),
      0 0 18px rgba(238, 0, 125, 0.35);
  animation: dropdownFade 0.35s ease forwards;
  z-index: 9999;
  margin-top: 8px;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  padding: 16px 22px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  width: 100%;
  white-space: nowrap;
}

.dropdown-menu li a::after {
  display: none !important;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #f1c3d6 !important;
  padding-left: 28px;
}

.dropdown-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 0%;
  width: 3px;
  background: linear-gradient(90deg, #ffffff, #ff85b3);
  border-radius: 4px;
  transform: translateY(-50%);
  transition: height 0.3s ease;
}

.dropdown-menu li a:hover::before {
  height: 60%;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ========== HAMBURGER ========== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 4px;
  transition: all 0.4s ease;
}

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

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

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

/* Dropdown animation */
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* =========================================================
   3) RESPONSIVE NAV (MOBILE ≤ 1200px)
   ========================================================= */

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

  /* Hide desktop login button */
  header > .login-btn {
    display: none !important;
  }

  /* Adjust header diagonal for tablets */
  header::after {
    width: 30%;
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
  }

  /* Mobile menu slides from RIGHT side - FULL WIDTH */
  nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    left: auto !important;
    width: 100% !important;
    max-width: 60% !important;
    height: 100vh !important;
    background: #EE007D !important;
    backdrop-filter: blur(10px);
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 9999 !important;
    padding: 80px 20px 20px 20px !important;
    margin: 0 !important;
    transition: right 0.4s ease !important;
  }

  nav.active {
    right: 0 !important;
  }

  .menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    flex-wrap: nowrap;
    padding: 0;
    align-items: flex-start;
  }

  .menu li {
    width: 100%;
    text-align: left;
  }

  .menu > li > a {
    padding: 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    display: flex;
  }

  .menu li a::after {
    display: none !important;
  }

  .dropdown-menu {
    position: static !important;
    display: none;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    animation: none;
    text-align: left;
    width: 100%;
  }

  .dropdown.open .dropdown-menu {
    display: block !important;
  }

  .dropdown-menu li {
    text-align: left;
    width: 100%;
  }

  .dropdown-menu li a {
    padding: 18px 20px 18px 40px !important;
    justify-content: flex-start !important;
    text-align: left !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    width: 100% !important;
    display: flex !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  /* Mobile login button inside menu */
  nav .mobile-login-btn {
    display: block;
    width: 100%;
    padding: 25px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
    text-align: center;
  }

  nav .mobile-login-btn a {
    display: block;
    background: #ffffff;
    color: #EE007D !important;
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  nav .mobile-login-btn a:hover {
    background: #f0f0f0;
    transform: scale(1.05);
  }
}

/* Mobile - adjust diagonal */
@media (max-width: 768px) {
  header {
    min-height: 60px;
  }

  header::after {
    width: 40%;
    clip-path: polygon(45% 0, 100% 0, 100% 100%, 15% 100%);
  }

  nav {
    padding: 80px 15px 20px 15px !important;
  }

  .logo img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 5px 20px;
    min-height: 60px;
  }

  header::after {
    width: 50%;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 20% 100%);
  }

  nav {
    padding: 80px 10px 20px 10px !important;
  }

  .menu > li > a {
    font-size: 17px;
    padding: 18px 15px;
  }

  .dropdown-menu li a {
    font-size: 15px !important;
    padding: 16px 15px 16px 35px !important;
  }

  nav .mobile-login-btn {
    padding: 25px 15px;
  }

  nav .mobile-login-btn a {
    font-size: 17px;
    padding: 14px 15px;
    white-space: nowrap;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================
   HERO SECTION WITH VIDEO
======================== */
.hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.8);
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ========================
   PRODUCT DESCRIPTION
======================== */
.product-description {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(45deg, #200011, #EE007D, #15000c);
}

.product-description h2 {
  font-size: 50px;
  font-weight: 1000;
    background: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.product-description p {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
  font-size: 1rem;
  color: #efefef;
  text-align: justify;
}


/* ========================
   RESPONSIVE DESIGN
======================== */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  /* Hero Section */
  .hero {
    height: 60vh;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  /* Product Description */
  .product-description {
    padding: 40px 15px;
  }

  .product-description h2 {
    font-size: 1.8rem;
  }

  .product-description p {
    font-size: 0.95rem;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Mobiles (≤ 768px) */
@media (max-width: 768px) {



  /* Navigation */
  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  /* Hero Section */
  .hero {
    height: 55vh;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  /* Product Description */
  .product-description {
    padding: 30px 15px;
  }

  .product-description h2 {
    font-size: 1.5rem;
  }

  .product-description p {
    font-size: 0.9rem;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .footer-social {
    text-align: center;
  }
}

/* Extra Small Mobiles (≤ 480px) */
@media (max-width: 480px) {




  /* Hero */
  .hero {
    height: 50vh;
  }
  
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  /* Product Description */
  .product-description h2 {
    font-size: 1.3rem;
  }

  .product-description p {
    font-size: 0.85rem;
  }

  /* Footer */
  .footer {
    padding: 30px 15px 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    font-size: 0.75rem;
  }
}


.partner-section {
  position: relative;
  /* mint background */
  overflow: hidden;
}

/* ===== Logo Slider ===== */
.partner-slider {
  overflow: hidden;
  width: 100%;
  margin: 0%;
  padding: 20px;
  background: transparent;

}

.partner-track img {
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-track img:hover {
  transform: scale(1.1);
}

.partner-track {
  display: flex;
  gap: 50px;
  align-items: center;
  animation: slideRight 20s linear infinite;
  animation-play-state: running;
  /* default running */
}

.partner-track.paused {
  animation-play-state: paused;
  /* stop animation when class added */
}

/* ===== Animation Keyframes ===== */
@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* =========================
   Responsive Design
========================= */
@media (max-width: 992px) {
  .partner-track {
    gap: 50px;
  }

  .partner-track img {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .partner-track {
    gap: 40px;
  }

  .partner-track img {
    height: 40px;
  }
}

@media (max-width: 576px) {
  .partner-section {
    padding: 40px 0;
  }

  .partner-track {
    gap: 30px;
  }

  .partner-track img {
    height: 30px;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #72002c, #d50156, #EE007D);
  color: #fff;
  padding: 60px 25px 20px;
  line-height: 1.6;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #0a3a3f, #EE007D);
  display: block;
  margin-top: 8px;
}

.footer-col ul li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  color: #ffffff;
  flex-wrap: nowrap;
  overflow-wrap: anywhere;
}

.footer-col ul li i {
  margin-right: 10px;
  flex-shrink: 0;
}

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-col ul li a:hover {
  color: #95f5fe;
}

.footer-logo {
  max-width: 540px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 1rem;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ff4ba0;
}

.footer-legal {
  background: rgba(247, 249, 250, 0.9);
  color: #EE007D;
  padding: 32px;
  border-radius: 26px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.legal-navigation {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.legal-tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #EE007D;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 18px;
  text-align: left;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.legal-tab:hover,
.legal-tab.active {
  border-color: #ff4ba0;
  background: rgba(255, 0, 96, 0.15);
}

.legal-card {
  flex: 1;
  min-width: 300px;
  padding: 26px;
  border-radius: 20px;
  box-shadow: inset 0 0 50px rgba(255, 0, 96, 0.07);
}

.legal-card__content {
  margin: 0;
  display: none;
  color: #EE007D;
  font-size: 15px;
  line-height: 1.65;
}

.legal-card__content.active {
  display: block;
}

@media (max-width: 768px) {
  .footer-legal {
    flex-direction: column;
    padding: 20px;
  }

  .legal-navigation {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .legal-tab,
  .legal-card {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .legal-tab {
    font-size: 14px;
    padding: 10px 12px;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-copy {
  font-size: 13px;
  color: #dfe0e1;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-align: center;
}

.footer-bottom .partner-section {
  width: 100%;
}

.footer-bottom .partner-slider {
  padding: 0;
  background: transparent;
}

.footer-bottom .partner-track {
  animation-duration: 16s;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-col h4::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 500px) {
  .footer-logo {
    margin-left: 0;
    margin-right: auto;
    display: block;
    text-align: left;
  }
}


/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 70px;
  /* moved up so it doesn’t overlap */
  right: 30px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: black;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1100;
  box-shadow: 0 4px 12px rgba(38, 58, 47, 0.3);
}

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

.back-to-top:hover {

  transform: scale(1.1);
}

/* ========================
   FADE ANIMATIONS
======================== */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-section.show {
  opacity: 1;
  transform: translateY(0);
}

.logo img {
    height: 60px;           /* adjust as needed */
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo img {
        height: 40px;       /* smaller logo for mobile */
    }
}


/* ================= PLATFORM SECTION ================= */
.platform-layout {
  width: 100%;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fef5fb 0%, #fff0f8 50%, #ffe8f5 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

/* Animated background gradient */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Floating decorative elements */
.platform-layout::before,
.platform-layout::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatAround 20s ease-in-out infinite;
}

.platform-layout::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #EE007D, transparent);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.platform-layout::after {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ff3a8c, transparent);
  bottom: -80px;
  left: -80px;
  animation-delay: 5s;
}

@keyframes floatAround {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(20px, 30px) scale(1.05); }
}

.platform-layout .container {
  width: 100%;
  max-width: 100%;
  padding: 120px 40px 60px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.platform-left {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

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

.platform-section {
  width: 100%;
  padding: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  box-shadow: 
    0 20px 60px rgba(238, 0, 125, 0.15),
    0 0 0 1px rgba(238, 0, 125, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(238, 0, 125, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-section:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 30px 80px rgba(238, 0, 125, 0.25),
    0 0 0 1px rgba(238, 0, 125, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Decorative corner accents */
.platform-section::before,
.platform-section::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(238, 0, 125, 0.3);
  border-radius: 20px;
  animation: rotateBorder 10s linear infinite;
}

.platform-section::before {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}

.platform-section::after {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
  animation-direction: reverse;
}

@keyframes rotateBorder {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(5deg); }
}

.page-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 35px;
  line-height: 1.2;
  background: linear-gradient(135deg, #EE007D 0%, #ff3a8c 50%, #ff6ba8 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 5s ease infinite;
  position: relative;
  display: inline-block;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #EE007D, transparent);
  border-radius: 2px;
  animation: expandLine 2s ease-out;
}

@keyframes expandLine {
  from { width: 0; }
  to { width: 120px; }
}

.page-desc {
  font-size: 18px;
  line-height: 2;
  color: #444;
  text-align: justify;
  margin: 0;
  position: relative;
  padding-left: 20px;
  animation: fadeIn 1.5s ease-out 0.3s both;
}

.page-desc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #EE007D, #ff6ba8);
  border-radius: 2px;
  animation: slideDown 1s ease-out 0.5s both;
}

@keyframes slideDown {
  from { height: 0; }
  to { height: 100%; }
}

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

/* Large screens - add margin-top for hidden header */
@media (min-width: 1200px) {
  .platform-layout .container {
    padding-top: 130px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .platform-layout .container {
    padding: 110px 30px 50px;
  }
  
  .platform-section {
    padding: 40px;
  }
  
  .page-title {
    font-size: 38px;
  }
  
  .page-desc {
    font-size: 17px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .platform-layout .container {
    padding: 100px 20px 40px;
  }
  
  .platform-section {
    padding: 30px;
    border-radius: 20px;
  }
  
  .platform-section::before,
  .platform-section::after {
    width: 60px;
    height: 60px;
  }
  
  .page-title {
    font-size: 30px;
    margin-bottom: 25px;
  }
  
  .page-desc {
    font-size: 16px;
    line-height: 1.8;
    padding-left: 15px;
  }
}

@media (max-width: 480px) {
  .platform-layout .container {
    padding: 90px 15px 30px;
  }
  
  .platform-section {
    padding: 25px;
    border-radius: 15px;
  }
  
  .platform-section::before,
  .platform-section::after {
    display: none;
  }
  
  .page-title {
    font-size: 26px;
  }
  
  .page-desc {
    font-size: 15px;
    padding-left: 12px;
  }
}

/* ================= DOWNLOAD SECTION ================= */
.cta.download-full {
  width: 100%;
  padding: 60px 20px;
  background: linear-gradient(135deg, #EE007D, #ff3a8c);
  position: relative;
  overflow: hidden;
}

.cta.download-full::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  animation: rotate 20s linear infinite;
}

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

.cta__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta__subscribe h2 {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta__subscribe h2 span {
  color: #ffe8f5;
}

.store-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.store {
  transition: transform 0.3s ease;
}

.store:hover {
  transform: translateY(-10px) scale(1.05);
}

.store img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
  transition: filter 0.3s ease;
}

.store img:hover {
  filter: drop-shadow(0 6px 20px rgba(255, 255, 255, 0.5));
}

.store img.apk-img {
  height: 70px;
}

@media (max-width: 768px) {
  .cta__subscribe h2 {
    font-size: 32px;
  }
  
  .store img {
    height: 50px;
  }
  
  .store img.apk-img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .cta.download-full {
    padding: 40px 15px;
  }
  
  .cta__subscribe h2 {
    font-size: 26px;
  }
  
  .store-list {
    gap: 20px;
  }
  
  .store img {
    height: 45px;
  }
  
  .store img.apk-img {
    height: 55px;
  }
}
