/* Base Theme Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Sarabun', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* Container Styles */
.hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 105, 180, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: #cccccc;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  color: #000;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: linear-gradient(45deg, #ff69b4, #ff1493);
  color: #fff;
  box-shadow: 0 8px 32px rgba(255, 105, 180, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 105, 180, 0.4);
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.05);
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  color: #000;
  padding: 12px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
}

.feature-text h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}

.feature-text p {
  font-size: 0.95rem;
  color: #cccccc;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-badge {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Header Styles */
.main-header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header-logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.logo-link:hover {
  color: #ffd700;
}

.logo-link i {
  font-size: 2rem;
  color: #ffd700;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: #cccccc;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.nav-link i {
  font-size: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-container {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  width: 90%;
  max-width: 400px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-container {
  transform: scale(1);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.mobile-logo i {
  font-size: 1.5rem;
  color: #ffd700;
}

.mobile-logo span {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ff69b4;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  color: #cccccc;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.mobile-nav-link i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.mobile-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  color: #000;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 25px;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.mobile-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.mobile-cta-button:hover::before {
  left: 100%;
}

.mobile-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }
  
  .nav-list {
    gap: 30px;
  }
  
  .nav-link {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  
  .main-nav {
    display: none;
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-link i {
    font-size: 1.8rem;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
    height: 65px;
  }
  
  .logo-link i {
    font-size: 1.6rem;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .mobile-menu-container {
    padding: 30px 25px;
    width: 95%;
  }
  
  .mobile-nav-link {
    padding: 12px 16px;
    font-size: 1rem;
  }
  
  .mobile-cta-button {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

/* About Section Styles */
.about-section {
  background: #0f0f0f;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 69, 180, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text {
  animation: fadeInLeft 1s ease-out;
}

.about-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
}

.about-description p {
  margin-bottom: 20px;
}

.about-description strong {
  color: #ffd700;
  font-weight: 600;
}

.about-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.about-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.about-img:hover {
  transform: scale(1.02);
}

.about-stats {
  position: absolute;
  bottom: -30px;
  left: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.game-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 69, 180, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.game-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.game-card:hover .game-icon {
  transform: scale(1.1) rotate(10deg);
}

.game-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.game-description {
  font-size: 0.95rem;
  color: #cccccc;
  margin-bottom: 25px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.game-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(45deg, #ff69b4, #ff1493);
  color: #fff;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.game-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.game-btn:hover::before {
  left: 100%;
}

.game-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .about-section {
    padding: 80px 20px;
  }
  
  .about-content {
    gap: 50px;
    margin-bottom: 60px;
  }
  
  .about-title {
    font-size: 2.4rem;
  }
  
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .about-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .about-description {
    font-size: 1rem;
  }
  
  .about-stats {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 30px;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .game-card {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 15px;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .about-description {
    font-size: 0.95rem;
  }
  
  .about-stats {
    padding: 15px;
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .game-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  
  .game-title {
    font-size: 1.2rem;
  }
  
  .game-description {
    font-size: 0.9rem;
  }
  
  .game-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Hihuay Com Section Styles */
.hihuay-com-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hihuay-com-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(255, 69, 180, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hihuay-com-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 1s ease-out;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.content-text {
  animation: fadeInLeft 1s ease-out;
}

.text-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
}

.text-content p {
  margin-bottom: 25px;
}

.text-content strong {
  color: #ffd700;
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  animation: fadeInRight 1s ease-out;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 69, 180, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-box-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.feature-box:hover .feature-box-icon {
  transform: scale(1.1);
}

.feature-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.feature-box p {
  font-size: 0.9rem;
  color: #cccccc;
  position: relative;
  z-index: 2;
}

.security-banner {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 69, 180, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.security-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.security-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  flex-shrink: 0;
}

.security-text {
  flex: 1;
}

.security-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.security-text p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

.security-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(45deg, #ff69b4, #ff1493);
  color: #fff;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.security-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.security-btn:hover::before {
  left: 100%;
}

.security-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hihuay-com-section {
    padding: 80px 20px;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .content-grid {
    gap: 50px;
    margin-bottom: 60px;
  }
  
  .security-banner {
    padding: 30px;
  }
  
  .security-content {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hihuay-com-section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .text-content {
    font-size: 1rem;
  }
  
  .security-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  .security-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hihuay-com-section {
    padding: 40px 15px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .text-content {
    font-size: 0.95rem;
  }
  
  .feature-box {
    padding: 20px 15px;
  }
  
  .feature-box-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .feature-box h3 {
    font-size: 1rem;
  }
  
  .feature-box p {
    font-size: 0.85rem;
  }
  
  .security-banner {
    padding: 25px 20px;
  }
  
  .security-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .security-text h3 {
    font-size: 1.3rem;
  }
  
  .security-text p {
    font-size: 0.9rem;
  }
  
  .security-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

/* Web Hmee Hihuay Section Styles */
.web-hmee-section {
  background: #0a0a0a;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.web-hmee-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 40% 20%, rgba(255, 105, 180, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 192, 203, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.web-hmee-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.content-main {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.content-image {
  position: relative;
  animation: fadeInLeft 1s ease-out;
}

.section-img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.section-img:hover {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.9), rgba(255, 20, 147, 0.9));
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}

.overlay-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.overlay-text {
  display: flex;
  flex-direction: column;
}

.overlay-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.overlay-subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
}

.content-text {
  animation: fadeInRight 1s ease-out;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ff69b4, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.text-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
}

.text-description p {
  margin-bottom: 25px;
}

.text-description strong {
  color: #ff69b4;
  font-weight: 600;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.highlight-card {
  background: linear-gradient(145deg, rgba(255, 105, 180, 0.08), rgba(255, 20, 147, 0.05));
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 105, 180, 0.15), rgba(255, 192, 203, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.highlight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 105, 180, 0.4);
  box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
}

.highlight-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #ff69b4, #ff1493);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.1) rotate(10deg);
}

.highlight-content {
  position: relative;
  z-index: 2;
}

.highlight-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.highlight-content p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.5;
}

.cta-section {
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 215, 0, 0.1));
  border: 2px solid rgba(255, 105, 180, 0.3);
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-content {
  margin-bottom: 35px;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #ff69b4, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.2rem;
  color: #cccccc;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn.primary {
  background: linear-gradient(45deg, #ff69b4, #ff1493);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 105, 180, 0.5);
}

.cta-btn.secondary {
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  color: #000;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.cta-btn.secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .web-hmee-section {
    padding: 80px 20px;
  }
  
  .section-content {
    gap: 60px;
  }
  
  .content-main {
    gap: 40px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .web-hmee-section {
    padding: 60px 20px;
  }
  
  .section-content {
    gap: 50px;
  }
  
  .content-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-title {
    font-size: 1.9rem;
    text-align: center;
  }
  
  .text-description {
    font-size: 1rem;
  }
  
  .image-overlay {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 15px;
  }
  
  .overlay-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .overlay-title {
    font-size: 1rem;
  }
  
  .overlay-subtitle {
    font-size: 0.85rem;
  }
  
  .highlight-card {
    padding: 25px;
  }
  
  .highlight-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .cta-section {
    padding: 40px 30px;
  }
  
  .cta-content h3 {
    font-size: 1.7rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .web-hmee-section {
    padding: 40px 15px;
  }
  
  .section-content {
    gap: 40px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .text-description {
    font-size: 0.95rem;
  }
  
  .highlight-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .highlight-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .highlight-content h3 {
    font-size: 1.2rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
  
  .cta-section {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 16px 30px;
    font-size: 1rem;
  }
}

/* Reliability Section Styles */
.reliability-section {
  background: linear-gradient(135deg, #0f0f23 0%, #161829 50%, #1a1a2e 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.reliability-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(255, 105, 180, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(0, 123, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.reliability-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 1s ease-out;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ff69b4, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.reliability-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.content-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
}

.content-text {
  animation: fadeInLeft 1s ease-out;
}

.text-block {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
}

.text-block:last-child {
  margin-bottom: 0;
}

.text-block strong {
  color: #ffd700;
  font-weight: 600;
}

.trust-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
  align-self: center;
}

.trust-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.trust-img:hover {
  transform: scale(1.02);
}

.trust-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.9), rgba(0, 200, 0, 0.9));
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.badge-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.badge-subtitle {
  font-size: 0.8rem;
  opacity: 0.9;
}

.verification-steps {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.steps-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(45deg, #007bff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.step-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  display: grid;
  grid-template-areas: 
    "number content icon"
    "number content icon";
  grid-template-columns: 60px 1fr 60px;
  gap: 20px;
  align-items: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 123, 255, 0.1), rgba(255, 215, 0, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-item:hover::before {
  opacity: 1;
}

.step-item:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.step-number {
  grid-area: number;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 2;
}

.step-content {
  grid-area: content;
  position: relative;
  z-index: 2;
}

.step-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.step-content p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

.step-icon {
  grid-area: icon;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #000;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.step-item:hover .step-icon {
  transform: rotate(15deg) scale(1.1);
}

.warning-box {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 87, 34, 0.1));
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.warning-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ffc107, #ff8c00);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  flex-shrink: 0;
}

.warning-content {
  flex: 1;
}

.warning-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffc107;
}

.warning-content p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
}

.warning-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(45deg, #28a745, #20c997);
  color: #fff;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.warning-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.warning-btn:hover::before {
  left: 100%;
}

.warning-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .reliability-section {
    padding: 80px 20px;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .reliability-content {
    gap: 60px;
  }
  
  .content-main {
    gap: 40px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .reliability-section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .reliability-content {
    gap: 50px;
  }
  
  .content-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .text-block {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .trust-badge {
    top: 15px;
    right: 15px;
    padding: 12px 16px;
  }
  
  .steps-title {
    font-size: 1.8rem;
  }
  
  .step-item {
    padding: 25px;
    grid-template-areas: 
      "number content"
      "icon content";
    grid-template-columns: 60px 1fr;
  }
  
  .warning-box {
    padding: 30px;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .reliability-section {
    padding: 40px 15px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .text-block {
    font-size: 0.95rem;
  }
  
  .trust-badge {
    position: relative;
    top: auto;
    right: auto;
    margin: 20px auto 0;
    width: fit-content;
  }
  
  .steps-title {
    font-size: 1.6rem;
  }
  
  .step-item {
    padding: 20px;
    grid-template-areas: 
      "number content"
      "number content";
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .step-content h4 {
    font-size: 1.2rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .step-icon {
    display: none;
  }
  
  .warning-box {
    padding: 25px 20px;
  }
  
  .warning-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .warning-content h4 {
    font-size: 1.3rem;
  }
  
  .warning-content p {
    font-size: 0.9rem;
  }
  
  .warning-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

/* Contact Section Styles */
.contact-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(0, 230, 118, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 50% 80%, rgba(255, 105, 180, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 1s ease-out;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #00e676, #ffd700, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.content-main {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.content-image {
  position: relative;
  animation: fadeInLeft 1s ease-out;
}

.contact-img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.contact-img:hover {
  transform: scale(1.03);
}

.contact-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.9), rgba(0, 200, 83, 0.9));
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.overlay-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.overlay-item i {
  font-size: 1.5rem;
}

.content-text {
  animation: fadeInRight 1s ease-out;
}

.text-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
}

.text-content p {
  margin-bottom: 25px;
}

.text-content strong {
  color: #00e676;
  font-weight: 600;
}

.text-content a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.text-content a:hover {
  color: #ff69b4;
}

.contact-channels {
  animation: fadeInUp 1s ease-out 0.3s both;
}

.channels-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(45deg, #00e676, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.channel-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.channel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 230, 118, 0.1), rgba(255, 215, 0, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.channel-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 230, 118, 0.3);
  box-shadow: 0 20px 40px rgba(0, 230, 118, 0.15);
}

.channel-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #00e676, #00c853);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.channel-card:hover .channel-icon {
  transform: scale(1.1) rotate(10deg);
}

.channel-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.channel-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.channel-content p {
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.5;
}

.channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(45deg, #ff69b4, #ff1493);
  color: #fff;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.channel-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.channel-btn:hover::before {
  left: 100%;
}

.channel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.service-highlight {
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(255, 215, 0, 0.1));
  border: 2px solid rgba(0, 230, 118, 0.3);
  border-radius: 25px;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.service-content {
  flex: 1;
}

.service-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #00e676, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-text p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 25px;
}

.service-text strong {
  color: #00e676;
  font-weight: 600;
}

.service-text a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.service-text a:hover {
  color: #ff69b4;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 15px;
  border-radius: 20px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.feature i {
  color: #ffd700;
}

.service-cta {
  flex-shrink: 0;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(45deg, #00e676, #00c853);
  color: #fff;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.service-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.service-btn:hover::before {
  left: 100%;
}

.service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 230, 118, 0.4);
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-section {
    padding: 80px 20px;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .contact-content {
    gap: 60px;
  }
  
  .content-main {
    gap: 40px;
  }
  
  .channels-grid {
    grid-template-columns: 1fr;
  }
  
  .service-highlight {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-content {
    gap: 50px;
  }
  
  .content-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .text-content {
    font-size: 1rem;
  }
  
  .contact-overlay {
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 15px;
    flex-direction: column;
    gap: 10px;
  }
  
  .channels-title {
    font-size: 1.8rem;
  }
  
  .channel-card {
    padding: 25px;
  }
  
  .channel-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .service-highlight {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 15px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .text-content {
    font-size: 0.95rem;
  }
  
  .contact-overlay {
    padding: 12px 15px;
  }
  
  .overlay-item {
    font-size: 0.9rem;
  }
  
  .overlay-item i {
    font-size: 1.3rem;
  }
  
  .channels-title {
    font-size: 1.6rem;
  }
  
  .channel-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .channel-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .channel-content h4 {
    font-size: 1.2rem;
  }
  
  .channel-content p {
    font-size: 0.9rem;
  }
  
  .channel-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .service-highlight {
    padding: 30px 20px;
  }
  
  .service-text h3 {
    font-size: 1.5rem;
  }
  
  .service-text p {
    font-size: 0.9rem;
  }
  
  .service-features {
    justify-content: center;
  }
  
  .feature {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
  
  .service-btn {
    padding: 16px 30px;
    font-size: 1rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 105, 180, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-section {
  animation: fadeInUp 1s ease-out;
}

.footer-brand {
  padding-right: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 2.5rem;
  color: #ffd700;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cccccc;
  font-size: 0.95rem;
}

.contact-item i {
  width: 20px;
  color: #ffd700;
  text-align: center;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cccccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.footer-links a:hover {
  color: #ffd700;
  transform: translateX(5px);
}

.footer-links a i {
  width: 16px;
  font-size: 0.9rem;
  color: #ff69b4;
  text-align: center;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.footer-social h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #cccccc;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.footer-security {
  display: flex;
  align-items: center;
}

.security-badges {
  display: flex;
  gap: 20px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 20px;
  color: #00ff00;
  font-size: 0.85rem;
  font-weight: 600;
}

.security-badge i {
  font-size: 1rem;
}

.footer-copyright {
  background: rgba(0, 0, 0, 0.3);
  margin: 0 -20px;
  padding: 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.copyright-content p {
  color: #cccccc;
  font-size: 0.9rem;
  margin: 0;
}

.copyright-notice {
  text-align: right;
}

.copyright-notice p {
  color: #ff9800;
  font-size: 0.85rem;
  font-weight: 600;
}

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

.footer-disclaimer p {
  color: #ff5722;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-disclaimer i {
  font-size: 1rem;
}

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

/* Responsive Design - Improved */

/* Large Tablets */
@media (max-width: 1024px) {
  .main-footer {
    padding: 60px 0 0;
  }
  
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .footer-brand {
    padding-right: 20px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .security-badges {
    gap: 15px;
  }
  
  .security-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* Medium Tablets */
@media (max-width: 896px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-description {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-section:not(.footer-brand) {
    text-align: left;
  }
  
  .footer-bottom {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
  
  .footer-social {
    order: -1;
    width: 100%;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Small Tablets and Large Phones */
@media (max-width: 768px) {
  .main-footer {
    padding: 50px 0 0;
    margin-top: 40px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 40px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .footer-logo i {
    font-size: 2.2rem;
  }
  
  .footer-logo-text {
    font-size: 1.5rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
  }
  
  .footer-contact {
    align-items: center;
    gap: 12px;
  }
  
  .contact-item {
    justify-content: center;
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .footer-links {
    align-items: center;
    gap: 10px;
  }
  
  .footer-links a {
    justify-content: center;
    font-size: 0.9rem;
    padding: 6px 0;
  }
  
  .footer-links a:hover {
    transform: translateX(0) scale(1.05);
  }
  
  .footer-bottom {
    padding: 25px 0;
    margin-bottom: 30px;
  }
  
  .footer-social h4 {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .social-link {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
  
  .footer-security {
    width: 100%;
    justify-content: center;
  }
  
  .security-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  .copyright-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .copyright-content p {
    font-size: 0.85rem;
  }
  
  .copyright-notice {
    text-align: center;
  }
  
  .copyright-notice p {
    font-size: 0.8rem;
  }
  
  .footer-disclaimer p {
    font-size: 0.85rem;
    flex-wrap: wrap;
  }
}

/* Medium Phones */
@media (max-width: 480px) {
  .main-footer {
    padding: 40px 0 0;
    margin-top: 30px;
  }
  
  .footer-content {
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-logo {
    gap: 12px;
  }
  
  .footer-logo i {
    font-size: 2rem;
  }
  
  .footer-logo-text {
    font-size: 1.3rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .footer-contact {
    gap: 10px;
  }
  
  .contact-item {
    font-size: 0.85rem;
    gap: 10px;
  }
  
  .contact-item i {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .footer-links {
    gap: 8px;
  }
  
  .footer-links a {
    font-size: 0.85rem;
    padding: 5px 0;
  }
  
  .footer-links a i {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    padding: 20px 0;
    margin-bottom: 25px;
    gap: 25px;
  }
  
  .footer-social h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .social-links {
    gap: 12px;
  }
  
  .social-link {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  
  .security-badge {
    padding: 5px 10px;
    font-size: 0.7rem;
    gap: 6px;
  }
  
  .security-badge i {
    font-size: 0.85rem;
  }
  
  .footer-copyright {
    padding: 20px 12px;
    margin: 0 -12px;
  }
  
  .copyright-content {
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .copyright-content p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  
  .copyright-notice p {
    font-size: 0.75rem;
  }
  
  .footer-disclaimer p {
    font-size: 0.8rem;
    gap: 6px;
  }
  
  .footer-disclaimer i {
    font-size: 0.9rem;
  }
}

/* Small Phones */
@media (max-width: 360px) {
  .footer-container {
    padding: 0 12px;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .footer-logo {
    gap: 10px;
  }
  
  .footer-logo i {
    font-size: 1.8rem;
  }
  
  .footer-logo-text {
    font-size: 1.2rem;
  }
  
  .footer-description {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }
  
  .contact-item {
    font-size: 0.8rem;
    gap: 8px;
  }
  
  .contact-item i {
    font-size: 0.85rem;
    width: 18px;
  }
  
  .footer-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .footer-links a {
    font-size: 0.8rem;
    gap: 8px;
  }
  
  .footer-links a i {
    font-size: 0.8rem;
    width: 14px;
  }
  
  .footer-bottom {
    padding: 18px 0;
    gap: 20px;
  }
  
  .footer-social h4 {
    font-size: 0.9rem;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 0.95rem;
  }
  
  .security-badge {
    padding: 4px 8px;
    font-size: 0.65rem;
    gap: 5px;
  }
  
  .security-badge i {
    font-size: 0.8rem;
  }
  
  .footer-copyright {
    padding: 18px 10px;
    margin: 0 -10px;
  }
  
  .copyright-content p {
    font-size: 0.75rem;
  }
  
  .copyright-notice p {
    font-size: 0.7rem;
  }
  
  .footer-disclaimer p {
    font-size: 0.75rem;
  }
  
  .footer-disclaimer i {
    font-size: 0.85rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 65px;
  gap: 4px;
}

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.sticky-btn:hover::before {
  left: 100%;
}

.sticky-btn i {
  font-size: 1.2rem;
  margin-bottom: 2px;
  transition: transform 0.3s ease;
}

.sticky-btn span {
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2;
}

.sticky-btn:hover {
  transform: translateY(-3px);
}

.sticky-btn:hover i {
  transform: scale(1.1);
}

/* Individual Button Styles */
.login-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.login-btn:hover {
  box-shadow: 0 -8px 30px rgba(0, 123, 255, 0.4);
}

.register-btn {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.register-btn:hover {
  box-shadow: 0 -8px 30px rgba(40, 167, 69, 0.4);
}

.credit-btn {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #000;
  animation: pulse 2s infinite;
}

.credit-btn:hover {
  box-shadow: 0 -8px 30px rgba(255, 215, 0, 0.4);
}

/* Pulse Animation for Credit Button */
@keyframes pulse {
  0% {
    box-shadow: 0 -4px 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 -8px 30px rgba(255, 215, 0, 0.5);
  }
  100% {
    box-shadow: 0 -4px 20px rgba(255, 215, 0, 0.3);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.75rem;
    min-height: 60px;
    gap: 3px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .sticky-buttons {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.7rem;
    min-height: 55px;
    gap: 2px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    padding: 6px 2px;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 0.95rem;
  }
  
  .sticky-btn span {
    font-size: 0.65rem;
  }
}

/* Ensure main content has bottom padding to avoid overlap */
body {
  padding-bottom: 65px;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  body {
    padding-bottom: 55px;
  }
}

@media (max-width: 360px) {
  body {
    padding-bottom: 50px;
  }
}

/* Login Section Styles */
.login-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 50px;
  position: relative;
  overflow: hidden;
}

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 105, 180, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.login-container {
  max-width: 450px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px 35px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

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

.login-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.login-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-subtitle {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.5;
}

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 25px;
  display: none;
  align-items: center;
  gap: 12px;
  color: #dc3545;
  font-size: 0.9rem;
  animation: slideInDown 0.3s ease-out;
}

.error-message.show {
  display: flex;
}

.error-message i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

.form-group {
  position: relative;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-label i {
  color: #ffd700;
  width: 16px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: #888;
}

.form-input:focus {
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input.error {
  border-color: rgba(220, 53, 69, 0.5);
  background: rgba(220, 53, 69, 0.05);
}

.form-input.success {
  border-color: rgba(40, 167, 69, 0.5);
  background: rgba(40, 167, 69, 0.05);
}

.password-input-container {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.password-toggle:hover {
  color: #ffd700;
  background: rgba(255, 255, 255, 0.05);
}

.input-feedback {
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-feedback.show {
  opacity: 1;
}

.input-feedback.error {
  color: #dc3545;
}

.input-feedback.success {
  color: #28a745;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
}

.remember-me input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.remember-me input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  border-color: #ffd700;
}

.remember-me input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 12px;
  font-weight: bold;
}

.forgot-password {
  color: #ffd700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #ff69b4;
}

.login-button {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.login-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.login-button:hover::before {
  left: 100%;
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.login-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.button-loader {
  display: none;
}

.login-button.loading .button-text {
  display: none;
}

.login-button.loading .button-loader {
  display: inline-block;
}

.form-divider {
  position: relative;
  text-align: center;
  margin: 25px 0;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.form-divider span {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 20px;
  color: #888;
  font-size: 0.9rem;
  position: relative;
}

.register-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(45deg, #ff69b4, #ff1493);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.register-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.register-button:hover::before {
  left: 100%;
}

.register-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.login-security {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #00ff00;
  font-size: 0.8rem;
}

.security-item i {
  font-size: 1.2rem;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 80px 15px 30px;
  }
  
  .login-card {
    padding: 30px 25px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .login-security {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 70px 10px 20px;
  }
  
  .login-card {
    padding: 25px 20px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  
  .login-button,
  .register-button {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .security-item {
    font-size: 0.75rem;
  }
  
  .security-item i {
    font-size: 1rem;
  }
}

/* Register Section Styles */
.register-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 50px;
  position: relative;
  overflow: hidden;
}

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 105, 180, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.register-container {
  max-width: 450px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px 35px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.register-header {
  text-align: center;
  margin-bottom: 40px;
}

.register-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.register-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ff69b4, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register-subtitle {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.5;
}

.success-message {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 25px;
  display: none;
  align-items: center;
  gap: 12px;
  color: #28a745;
  font-size: 0.9rem;
  animation: slideInDown 0.3s ease-out;
}

.success-message.show {
  display: flex;
}

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 25px;
  display: none;
  align-items: center;
  gap: 12px;
  color: #dc3545;
  font-size: 0.9rem;
  animation: slideInDown 0.3s ease-out;
}

.error-message.show {
  display: flex;
}

.success-message i,
.error-message i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

.form-group {
  position: relative;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-label i {
  color: #ff69b4;
  width: 16px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: #888;
}

.form-input:focus {
  border-color: rgba(255, 105, 180, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.form-input.error {
  border-color: rgba(220, 53, 69, 0.5);
  background: rgba(220, 53, 69, 0.05);
}

.form-input.success {
  border-color: rgba(40, 167, 69, 0.5);
  background: rgba(40, 167, 69, 0.05);
}

.input-feedback {
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.input-feedback.show {
  opacity: 1;
}

.input-feedback.error {
  color: #dc3545;
}

.input-feedback.success {
  color: #28a745;
}

.input-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.8rem;
  color: #888;
}

.input-hint i {
  color: #007bff;
}

.terms-agreement {
  margin: 10px 0;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cccccc;
  font-size: 0.9rem;
  cursor: pointer;
  line-height: 1.5;
}

.terms-checkbox input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(45deg, #ff69b4, #ff1493);
  border-color: #ff69b4;
}

.terms-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.terms-text a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms-text a:hover {
  color: #ff69b4;
  text-decoration: underline;
}

.register-button {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(45deg, #ff69b4, #ff1493);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.register-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.register-button:hover::before {
  left: 100%;
}

.register-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.register-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.button-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.button-loader {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.register-button.loading .button-text {
  display: none;
}

.register-button.loading .button-loader {
  display: flex;
}

.form-divider {
  position: relative;
  text-align: center;
  margin: 25px 0;
}

.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.form-divider span {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 20px;
  color: #888;
  font-size: 0.9rem;
  position: relative;
}

.login-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: transparent;
  color: #ffd700;
  text-decoration: none;
  border: 2px solid #ffd700;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.login-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  transition: left 0.6s ease;
}

.login-button:hover::before {
  left: 100%;
}

.login-button:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.register-features {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #00ff00;
  font-size: 0.8rem;
  text-align: center;
}

.feature-item i {
  font-size: 1.2rem;
  color: #ff69b4;
  margin-bottom: 2px;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 15px 30px;
  }
  
  .register-card {
    padding: 30px 25px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .feature-item {
    flex-direction: row;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 70px 10px 20px;
  }
  
  .register-card {
    padding: 25px 20px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  
  .register-button,
  .login-button {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .terms-checkbox {
    font-size: 0.85rem;
  }
  
  .feature-item {
    font-size: 0.75rem;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
}

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 105, 180, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ff69b4, #ff1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 50px 0 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: #cccccc;
  font-size: 1rem;
  font-weight: 600;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  color: #000;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5);
}

/* Promotion Section Styles */
.promotion-section {
  background: #0f0f0f;
  padding: 80px 20px;
  position: relative;
}

.promotion-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.promotion-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 105, 180, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.promotion-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.promotion-card.featured {
  border: 2px solid rgba(255, 215, 0, 0.4);
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 105, 180, 0.1));
}

.promotion-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.promotion-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #ffd700, #ff69b4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.promotion-card:hover .promotion-icon {
  transform: scale(1.1) rotate(10deg);
}

.promotion-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
  line-height: 1.3;
}

.promotion-badge {
  padding: 8px 16px;
  background: linear-gradient(45deg, #ff69b4, #ff1493);
  color: #fff;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.promotion-badge.cashback {
  background: linear-gradient(45deg, #28a745, #20c997);
}

.promotion-badge.daily {
  background: linear-gradient(45deg, #007bff, #0056b3);
}

.promotion-badge.weekly {
  background: linear-gradient(45deg, #6f42c1, #5a2d91);
}

.promotion-content {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.promotion-features {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
}

.promotion-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
}

.promotion-features li:last-child {
  margin-bottom: 0;
}

.promotion-features i {
  color: #00ff00;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.promotion-highlight {
  display: flex;
  justify-content: space-around;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin-top: 25px;
}

.highlight-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.highlight-label {
  color: #888;
  font-size: 0.85rem;
  font-weight: 600;
}

.highlight-value {
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: 700;
}

.promotion-footer {
  text-align: center;
  position: relative;
  z-index: 2;
}

.promotion-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promotion-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.promotion-cta:hover::before {
  left: 100%;
}

.promotion-cta:hover {
  transform: translateY(-3px);
}

.promotion-cta.primary {
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  color: #000;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.promotion-cta.primary:hover {
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

.promotion-cta.secondary {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: #fff;
  box-shadow: 0 8px 30px rgba(40, 167, 69, 0.4);
}

.promotion-cta.secondary:hover {
  box-shadow: 0 12px 40px rgba(40, 167, 69, 0.5);
}

.promotion-cta.tertiary {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.4);
}

.promotion-cta.tertiary:hover {
  box-shadow: 0 12px 40px rgba(0, 123, 255, 0.5);
}

.promotion-cta.quaternary {
  background: linear-gradient(45deg, #6f42c1, #5a2d91);
  color: #fff;
  box-shadow: 0 8px 30px rgba(111, 66, 193, 0.4);
}

.promotion-cta.quaternary:hover {
  box-shadow: 0 12px 40px rgba(111, 66, 193, 0.5);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 20px 60px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    gap: 40px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .promotion-section {
    padding: 60px 20px;
  }
  
  .promotion-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 20px 50px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 30px;
    margin: 40px 0 50px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .hero-cta {
    padding: 16px 32px;
    font-size: 1.2rem;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .promotion-highlight {
    flex-direction: column;
    gap: 15px;
  }
  
  .highlight-item {
    flex-direction: row;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .highlight-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 15px 40px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .hero-cta {
    padding: 14px 28px;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 40px 15px;
  }
  
  .promotion-card {
    padding: 25px 20px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .promotion-features li {
    font-size: 0.95rem;
  }
  
  .promotion-cta {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .highlight-value {
    font-size: 1.1rem;
  }
  
  .highlight-label {
    font-size: 0.8rem;
  }
}