:root {
  --purple: #900099;
  --light-purple: #a100a6;
  --black: #181818;
  --white: #fff;
  --gray: #f5f5f5;
  --footer-bg: #181818;
  --footer-link: #fff;
  --footer-link-hover: #a100a6;
  --btn-purple: #900099;
  --btn-purple-hover: #a100a6;
  --btn-black: #181818;
  --btn-black-hover: #333;
  --text-main: #181818;
  --text-light: #fff;
  --text-gray: #666;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--white);
  color: var(--text-main);
  font-size: 18px;
  line-height: 1.6;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  color: var(--white);
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  flex: 1;
}

.cookie-content a {
  color: var(--purple);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 4px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.cookie-settings {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

.cookie-accept {
  background: var(--purple);
  color: var(--white);
}

.cookie-accept:hover {
  background: var(--light-purple);
}

/* Header */
.header {
  width: 100%;
  background: #f5f5f5;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-menu {
  font-size: 22px;
  margin-right: 24px;
  color: #181818;
  cursor: pointer;
}

.header-logo {
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--black);
}

.header-logo i {
  margin-right: 8px;
  font-size: 16px;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-lang {
  font-size: 16px;
  margin-right: 16px;
  color: #181818;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
}

.header-login {
  background: none;
  border: 1px solid #181818;
  color: #181818;
  font-size: 16px;
  padding: 6px 18px;
  border-radius: 4px;
  margin-right: 12px;
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.header-register {
  background: var(--purple);
  color: #fff;
  border: none;
  font-size: 16px;
  padding: 6px 18px;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black);
  padding: 20px;
  position: fixed;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 99;
}

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

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #333;
  font-size: 16px;
}

/* Hero */
.hero-section {
  background: var(--purple);
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1200px;
  max-width: 100%;
  gap: 48px;
}

.hero-text {
  color: #fff;
  max-width: 480px;
}

.hero-text h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.hero-text ul {
  margin: 0 0 24px 0;
  padding-left: 18px;
  font-size: 1rem;
}

.hero-text ul li {
  margin-bottom: 4px;
}

.hero-btn {
  background: #00e6c0;
  color: #181818;
  border: none;
  padding: 10px 28px;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.hero-btn:hover {
  background: #00d4b0;
}

.hero-img {
  width: 340px;
  height: 260px;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Transfer Section */
.transfer-section {
  width: 1200px;
  max-width: 100%;
  margin: 64px auto 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px;
  gap: 32px;
}

.transfer-left {
  max-width: 420px;
  margin-top: 32px;
}

.transfer-dots {
  margin-bottom: 16px;
}

.transfer-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #900099;
  margin-right: 4px;
}

.transfer-dots span:nth-child(2),
.transfer-dots span:nth-child(3) {
  background: #e0e0e0;
}

.transfer-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.transfer-desc {
  font-size: 1rem;
  margin-bottom: 24px;
  color: #181818;
}

.transfer-btn {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.transfer-btn:hover {
  background: var(--light-purple);
}

.transfer-img {
  width: 420px;
  height: 280px;
  overflow: hidden;
}

.transfer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Benefit Section */
.benefit-section {
  width: 1200px;
  max-width: 100%;
  margin: 64px auto 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 20px;
  gap: 64px;
}

.benefit-left {
  max-width: 420px;
  margin-top: 16px;
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.benefit-btn {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.benefit-btn:hover {
  background: var(--light-purple);
}

.benefit-right {
  flex: 1;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  margin-bottom: 18px;
  font-size: 1rem;
}

.benefit-list li i {
  color: var(--purple);
  margin-right: 8px;
}

.benefit-label {
  font-weight: 700;
  color: var(--purple);
  margin-right: 8px;
}

.benefit-desc {
  color: #181818;
  font-weight: 400;
}

/* Products Section */
.products-section {
  width: 1200px;
  max-width: 100%;
  margin: 64px auto 0 auto;
  padding: 0 20px;
}

.products-container {
  width: 100%;
}

.products-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.products-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 48px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
  border-color: var(--purple);
  box-shadow: 0 4px 16px rgba(144, 0, 153, 0.2);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--purple);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  z-index: 1;
}

.product-header {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 24px;
}

.product-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.product-desc {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.product-price {
  margin-bottom: 20px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--purple);
}

.price-period {
  font-size: 1rem;
  color: var(--text-gray);
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.product-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.product-features li i {
  color: var(--purple);
  margin-right: 8px;
}

.product-btn {
  width: 100%;
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.product-btn:hover {
  background: var(--light-purple);
}

/* VIP Section */
.vip-section {
  background: var(--black);
  width: 100%;
  padding: 64px 20px;
  margin-top: 64px;
}

.vip-content {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.vip-img {
  width: 320px;
  height: 200px;
  overflow: hidden;
  margin-right: 10px;
}

.vip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vip-text {
  background: var(--purple);
  color: #fff;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.vip-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.vip-desc {
  font-size: 1rem;
  margin-bottom: 24px;
}

.vip-btn {
  background: #00e6c0;
  color: #181818;
  border: none;
  padding: 10px 28px;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}

.vip-btn:hover {
  background: #00d4b0;
}

/* App Section */
.app-section {
  width: 1200px;
  max-width: 100%;
  margin: 64px auto 0 auto;
  padding: 0 20px;
}

.app-banner {
  background: #eaf6fd;
  border-radius: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 32px;
  min-height: 120px;
  gap: 32px;
}

.app-banner-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-qr {
  margin-bottom: 8px;
}

.app-store-btns {
  display: flex;
  gap: 8px;
}

.app-banner-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.app-banner-right img {
  width: 340px;
  height: 120px;
  object-fit: cover;
}

/* Confidence Section */
.confidence-section {
  width: 1200px;
  max-width: 100%;
  margin: 64px auto 0 auto;
  padding: 0 20px;
}

.confidence-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.confidence-desc {
  font-size: 1rem;
  color: #181818;
  margin-bottom: 24px;
  line-height: 1.5;
}

.confidence-btn {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.confidence-btn:hover {
  background: var(--light-purple);
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: var(--footer-link);
  width: 100%;
  padding: 48px 20px;
  margin-top: 64px;
}

.footer-content {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer-left {
  flex: 1;
}

.footer-social {
  margin-bottom: 24px;
}

.footer-social span {
  font-size: 1rem;
  margin-right: 12px;
}

.footer-social a {
  color: #fff;
  font-size: 22px;
  margin-right: 16px;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--footer-link-hover);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--footer-link-hover);
}

.footer-legal {
  font-size: 11px;
  color: #bdbdbd;
  margin-top: 24px;
  line-height: 1.5;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 220px;
}

.footer-apps {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 24px;
}

.footer-qr {
  margin-bottom: 8px;
}

.footer-store-btns {
  display: flex;
  gap: 8px;
}

.footer-logo {
  margin-top: 24px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.footer-logo i {
  margin-right: 8px;
  font-size: 16px;
}

/* Login Page */
.login-section {
  min-height: calc(100vh - 48px - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

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

.login-box {
  background: var(--white);
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.login-header p {
  color: var(--text-gray);
  margin: 0;
}

.login-form {
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 16px;
  color: var(--text-gray);
}

.input-wrapper input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  transition: border-color 0.2s;
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--purple);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label input {
  margin-right: 8px;
}

.forgot-link {
  font-size: 14px;
  color: var(--purple);
  text-decoration: none;
}

.login-submit-btn {
  width: 100%;
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.login-submit-btn:hover {
  background: var(--light-purple);
}

.login-divider {
  text-align: center;
  margin: 24px 0;
  position: relative;
}

.login-divider::before,
.login-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #e0e0e0;
}

.login-divider::before {
  left: 0;
}

.login-divider::after {
  right: 0;
}

.login-divider span {
  background: var(--white);
  padding: 0 16px;
  color: var(--text-gray);
  font-size: 14px;
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.social-btn {
  width: 100%;
  padding: 12px 24px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.2s;
}

.social-btn:hover {
  background: #f5f5f5;
}

.social-btn.facebook {
  color: #1877f2;
}

.social-btn.google {
  color: #ea4335;
}

.login-footer {
  text-align: center;
  font-size: 14px;
}

.login-footer a {
  color: var(--purple);
  text-decoration: none;
  font-weight: 500;
}

/* Page Hero */
.page-hero {
  background: var(--purple);
  padding: 64px 20px;
  text-align: center;
}

.page-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px 0;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: var(--white);
  margin: 0;
}

/* Products Page */
.products-page-section {
  padding: 64px 20px;
}

.comparison-section {
  margin-top: 64px;
}

.comparison-section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.comparison-table {
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
  background: var(--purple);
  color: var(--white);
  font-weight: 700;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* FAQ Page */
.faq-section {
  padding: 64px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: var(--white);
  border: none;
  text-align: left;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 20px 20px 20px;
  margin: 0;
  line-height: 1.6;
}

.contact-section {
  background: #f5f5f5;
  padding: 64px 20px;
  text-align: center;
}

.contact-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-container p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.contact-btn {
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-btn:hover {
  background: var(--light-purple);
}

/* Legal Pages */
.legal-section {
  padding: 64px 20px;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 32px 0 16px 0;
  color: var(--purple);
}

.legal-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 24px 0 12px 0;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 32px;
}

.legal-content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-content,
  .transfer-section,
  .benefit-section,
  .vip-content,
  .app-banner,
  .footer-content {
    flex-direction: column;
  }

  .hero-img,
  .transfer-img {
    width: 100%;
    height: 200px;
  }

  .vip-img {
    width: 100%;
    height: 180px;

  }

  .vip-text {
    width: 100%;
    padding: 24px;
  }

  .app-banner {
    padding: 24px;
  }

  .app-banner-right {
    width: 100%;
    justify-content: center;
  }

  .app-banner-right img {
    width: 100%;
  }

  .footer-content {
    align-items: flex-start;
  }

  .footer-right {
    align-items: flex-start;
    margin-top: 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .login-box {
    padding: 32px 24px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .header {
    padding: 0 16px;
  }

  .products-title {
    font-size: 1.6rem;
  }

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