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

body {
  font-family: 'Sarabun', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Container */
.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  line-height: 1.2;
  animation: gradientShift 3s ease-in-out infinite;
}

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

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

.feature-item i {
  color: #ffd700;
  font-size: 1.2rem;
  min-width: 20px;
}

.feature-item span {
  font-size: 0.95rem;
  font-weight: 600;
}

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffd700;
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

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

.hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-item {
  text-align: center;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-number {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
}

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

/* 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);
  }
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-container {
    padding: 0 30px;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 20px;
    margin-top: 40px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-container {
    padding: 0 20px;
  }
  
  .hero-section {
    padding: 40px 0;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
  }
  
  .feature-item {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 15px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

/* Header Styles */
.site-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.header-logo {
  z-index: 1001;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffd700;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.logo-link:hover {
  color: #ffed4e;
  transform: scale(1.05);
}

.logo-link i {
  font-size: 2rem;
  animation: rotate 4s linear infinite;
}

.logo-text {
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

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

/* Navigation Styles */
.header-nav {
  display: flex;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Sarabun', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  transition: width 0.3s ease;
}

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

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

/* CTA Button */
.header-cta {
  display: flex;
}

.cta-button {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  border: 2px solid transparent;
}

.cta-button:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-button i {
  font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #ffd700;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-left: 1px solid rgba(255, 215, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

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

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffd700;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

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

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

.mobile-menu-close:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: rotate(90deg);
}

.mobile-nav {
  padding: 20px 0;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  margin-bottom: 5px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Sarabun', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
  background: rgba(255, 215, 0, 0.1);
  border-left-color: #ffd700;
  color: #ffd700;
}

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

.mobile-cta {
  margin-top: 20px;
  padding: 0 20px;
}

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  padding: 15px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  width: 100%;
}

.mobile-cta-button:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.mobile-cta-button i {
  font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 30px;
  }
  
  .nav-menu {
    gap: 20px;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 990px) {
  .header-container {
    padding: 0 20px;
    height: 70px;
  }
  
  .header-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-link {
    font-size: 1.3rem;
  }
  
  .logo-link i {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 65px;
  }
  
  .mobile-menu {
    width: 280px;
  }
  
  .logo-link {
    font-size: 1.2rem;
  }
  
  .logo-link i {
    font-size: 1.6rem;
  }
  
  .mobile-nav-link {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .mobile-cta-button {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

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

.platform-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.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

.platform-header {
  text-align: center;
  margin-bottom: 60px;
}

.platform-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.3;
  animation: gradientShift 3s ease-in-out infinite;
}

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

.platform-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.platform-intro p,
.platform-description p,
.platform-features p,
.platform-mobile p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: justify;
}

.platform-intro strong,
.platform-description strong,
.platform-features strong,
.platform-mobile strong {
  color: #ffd700;
  font-weight: 700;
}

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

.inline-link:hover {
  color: #ffed4e;
}

.platform-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
}

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

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

.platform-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  animation: pulse 2s infinite;
}

.platform-overlay i {
  font-size: 1.1rem;
}

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

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

.highlight-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.highlight-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-icon {
  transform: rotate(360deg);
}

.highlight-icon i {
  font-size: 1.8rem;
  color: #000;
}

.highlight-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .platform-section {
    padding: 80px 0;
  }
  
  .platform-container {
    padding: 0 30px;
  }
  
  .platform-title {
    font-size: 2.3rem;
  }
  
  .platform-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .platform-text {
    gap: 25px;
  }
  
  .platform-intro p,
  .platform-description p,
  .platform-features p,
  .platform-mobile p {
    font-size: 1rem;
  }
  
  .platform-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .platform-section {
    padding: 60px 0;
  }
  
  .platform-container {
    padding: 0 20px;
  }
  
  .platform-header {
    margin-bottom: 40px;
  }
  
  .platform-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .platform-text {
    gap: 20px;
  }
  
  .platform-intro p,
  .platform-description p,
  .platform-features p,
  .platform-mobile p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .platform-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .highlight-item {
    padding: 25px 20px;
  }
  
  .highlight-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .highlight-icon i {
    font-size: 1.5rem;
  }
  
  .highlight-content h3 {
    font-size: 1.2rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .platform-title {
    font-size: 1.5rem;
  }
  
  .platform-intro p,
  .platform-description p,
  .platform-features p,
  .platform-mobile p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .platform-overlay {
    top: 15px;
    left: 15px;
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  .highlight-item {
    padding: 20px 15px;
  }
  
  .highlight-content h3 {
    font-size: 1.1rem;
  }
}

/* Auto System Section */
.auto-system-section {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #0d1421 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.auto-system-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 40%),
    linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.01) 50%, transparent 60%);
  pointer-events: none;
}

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

.auto-system-header {
  text-align: center;
  margin-bottom: 70px;
}

.auto-system-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #00ff88, #00cc6a, #00ff88);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.3;
  animation: gradientShift 3s ease-in-out infinite;
}

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

.auto-system-image {
  position: relative;
  animation: fadeInLeft 1s ease-out 0.3s both;
}

.auto-system-img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(0, 255, 136, 0.2);
  border: 3px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
}

.auto-system-img:hover {
  transform: scale(1.02) rotateY(5deg);
  box-shadow: 0 30px 80px rgba(0, 255, 136, 0.3);
}

.auto-system-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: linear-gradient(45deg, #00ff88, #00cc6a);
  padding: 15px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #000;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
  animation: float 3s ease-in-out infinite;
}

.auto-system-badge i {
  font-size: 1.2rem;
  animation: rotate 2s linear infinite;
}

.auto-system-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInRight 1s ease-out 0.5s both;
}

.auto-system-intro p,
.auto-system-description p,
.auto-system-features p,
.auto-system-betting p,
.auto-system-advanced p,
.auto-system-integration p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: justify;
}

.auto-system-intro strong,
.auto-system-description strong,
.auto-system-features strong,
.auto-system-betting strong,
.auto-system-advanced strong,
.auto-system-integration strong {
  color: #00ff88;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

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

.system-highlight-item {
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

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

.system-highlight-item:hover::before {
  left: 100%;
}

.system-highlight-item:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.5);
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.system-highlight-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(45deg, #00ff88, #00cc6a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.system-highlight-item:hover .system-highlight-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.5);
}

.system-highlight-icon i {
  font-size: 2rem;
  color: #000;
}

.system-highlight-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #00ff88;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.system-highlight-content p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.6;
}

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

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

@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);
  }
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .auto-system-section {
    padding: 80px 0;
  }
  
  .auto-system-container {
    padding: 0 30px;
  }
  
  .auto-system-title {
    font-size: 2.3rem;
  }
  
  .auto-system-content {
    gap: 50px;
    margin-bottom: 60px;
  }
  
  .auto-system-text {
    gap: 25px;
  }
  
  .auto-system-intro p,
  .auto-system-description p,
  .auto-system-features p,
  .auto-system-betting p,
  .auto-system-advanced p,
  .auto-system-integration p {
    font-size: 1rem;
  }
  
  .auto-system-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .system-highlight-item {
    padding: 30px 20px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .auto-system-section {
    padding: 60px 0;
  }
  
  .auto-system-container {
    padding: 0 20px;
  }
  
  .auto-system-header {
    margin-bottom: 50px;
  }
  
  .auto-system-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .auto-system-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .auto-system-text {
    gap: 20px;
    order: 2;
  }
  
  .auto-system-image {
    order: 1;
  }
  
  .auto-system-intro p,
  .auto-system-description p,
  .auto-system-features p,
  .auto-system-betting p,
  .auto-system-advanced p,
  .auto-system-integration p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .auto-system-badge {
    top: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 0.85rem;
  }
  
  .auto-system-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .system-highlight-item {
    padding: 25px 20px;
  }
  
  .system-highlight-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }
  
  .system-highlight-icon i {
    font-size: 1.7rem;
  }
  
  .system-highlight-content h3 {
    font-size: 1.2rem;
  }
  
  .system-highlight-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .auto-system-title {
    font-size: 1.5rem;
  }
  
  .auto-system-intro p,
  .auto-system-description p,
  .auto-system-features p,
  .auto-system-betting p,
  .auto-system-advanced p,
  .auto-system-integration p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .auto-system-badge {
    top: 15px;
    right: 15px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }
  
  .system-highlight-item {
    padding: 20px 15px;
  }
  
  .system-highlight-content h3 {
    font-size: 1.1rem;
  }
}

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

.wallet-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 70% 20%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(0, 191, 255, 0.04) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="hexagon" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,5 50,20 50,40 30,55 10,40 10,20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.03"/></pattern></defs><rect width="60" height="60" fill="url(%23hexagon)"/></svg>') repeat;
  pointer-events: none;
}

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

.wallet-header {
  text-align: center;
  margin-bottom: 70px;
}

.wallet-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #00bfff, #0099cc, #00bfff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.3;
  animation: gradientShift 3s ease-in-out infinite;
}

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

.wallet-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInLeft 1s ease-out 0.3s both;
}

.wallet-intro p,
.wallet-truewallet p,
.wallet-systems p,
.wallet-features p,
.wallet-advanced p,
.wallet-versions p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: justify;
}

.wallet-intro strong,
.wallet-truewallet strong,
.wallet-systems strong,
.wallet-features strong,
.wallet-advanced strong,
.wallet-versions strong {
  color: #00bfff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

.inline-link {
  color: #ffd700;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.inline-link:hover {
  color: #ffed4e;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.wallet-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.5s both;
}

.wallet-img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(0, 191, 255, 0.2);
  border: 3px solid rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
}

.wallet-img:hover {
  transform: scale(1.02) rotateY(-5deg);
  box-shadow: 0 30px 80px rgba(0, 191, 255, 0.3);
}

.wallet-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background: linear-gradient(45deg, #00bfff, #0099cc);
  padding: 15px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #000;
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.4);
  animation: pulse 2s infinite;
}

.wallet-badge i {
  font-size: 1.2rem;
  animation: bounce 1.5s infinite;
}

.wallet-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.step-item {
  background: rgba(0, 191, 255, 0.05);
  border: 2px solid rgba(0, 191, 255, 0.2);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.step-item:hover {
  background: rgba(0, 191, 255, 0.1);
  border-color: rgba(0, 191, 255, 0.5);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #00bfff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

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

.step-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #00bfff;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.step-content p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.wallet-footer {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.wallet-footer p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.7;
}

.wallet-footer strong {
  color: #00bfff;
  font-weight: 700;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .wallet-section {
    padding: 80px 0;
  }
  
  .wallet-container {
    padding: 0 30px;
  }
  
  .wallet-title {
    font-size: 2.3rem;
  }
  
  .wallet-content {
    gap: 50px;
    margin-bottom: 60px;
  }
  
  .wallet-text {
    gap: 25px;
  }
  
  .wallet-intro p,
  .wallet-truewallet p,
  .wallet-systems p,
  .wallet-features p,
  .wallet-advanced p,
  .wallet-versions p {
    font-size: 1rem;
  }
  
  .wallet-steps {
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .step-item {
    padding: 35px 25px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .wallet-section {
    padding: 60px 0;
  }
  
  .wallet-container {
    padding: 0 20px;
  }
  
  .wallet-header {
    margin-bottom: 50px;
  }
  
  .wallet-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .wallet-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .wallet-text {
    gap: 20px;
  }
  
  .wallet-intro p,
  .wallet-truewallet p,
  .wallet-systems p,
  .wallet-features p,
  .wallet-advanced p,
  .wallet-versions p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .wallet-badge {
    top: 20px;
    left: 20px;
    padding: 12px 18px;
    font-size: 0.85rem;
  }
  
  .wallet-steps {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .step-item {
    padding: 30px 20px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .step-content h3 {
    font-size: 1.2rem;
  }
  
  .step-content p {
    font-size: 0.9rem;
  }
  
  .wallet-footer {
    padding: 25px 20px;
  }
  
  .wallet-footer p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .wallet-title {
    font-size: 1.5rem;
  }
  
  .wallet-intro p,
  .wallet-truewallet p,
  .wallet-systems p,
  .wallet-features p,
  .wallet-advanced p,
  .wallet-versions p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .wallet-badge {
    top: 15px;
    left: 15px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }
  
  .step-item {
    padding: 25px 15px;
  }
  
  .step-content h3 {
    font-size: 1.1rem;
  }
  
  .wallet-footer {
    padding: 20px 15px;
  }
  
  .wallet-footer p {
    font-size: 0.95rem;
  }
}

/* Professional Features Section */
.features-section {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #0d1421 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 20, 147, 0.06) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="80" cy="40" r="1.5" fill="%23ffd700" opacity="0.03"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>') repeat;
  pointer-events: none;
}

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

.features-header {
  text-align: center;
  margin-bottom: 70px;
}

.features-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff1493, #ff69b4, #ff1493);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.3;
  animation: gradientShift 3s ease-in-out infinite;
}

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

.features-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInLeft 1s ease-out 0.3s both;
}

.features-intro p,
.features-truewallet p,
.features-advanced p,
.features-games p,
.features-questions p,
.features-benefits p,
.features-access p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: justify;
}

.features-intro strong,
.features-truewallet strong,
.features-advanced strong,
.features-games strong,
.features-questions strong,
.features-benefits strong,
.features-access strong {
  color: #ff69b4;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.inline-link {
  color: #ffd700;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.inline-link:hover {
  color: #ffed4e;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.features-image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.5s both;
}

.features-img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(255, 20, 147, 0.2);
  border: 3px solid rgba(255, 20, 147, 0.3);
  transition: all 0.3s ease;
}

.features-img:hover {
  transform: scale(1.02) rotateY(5deg);
  box-shadow: 0 30px 80px rgba(255, 20, 147, 0.3);
}

.features-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: linear-gradient(45deg, #ff1493, #ff69b4);
  padding: 15px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #000;
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
  animation: sparkle 2s infinite;
}

.features-badge i {
  font-size: 1.2rem;
  animation: spin 3s linear infinite;
}

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

.feature-highlight-item {
  background: rgba(255, 20, 147, 0.05);
  border: 1px solid rgba(255, 20, 147, 0.2);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

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

.feature-highlight-item:hover::before {
  left: 100%;
}

.feature-highlight-item:hover {
  background: rgba(255, 20, 147, 0.1);
  border-color: rgba(255, 20, 147, 0.5);
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 20, 147, 0.2);
}

.feature-highlight-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(45deg, #ff1493, #ff69b4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
}

.feature-highlight-item:hover .feature-highlight-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 15px 35px rgba(255, 20, 147, 0.5);
}

.feature-highlight-icon i {
  font-size: 2rem;
  color: #000;
}

.feature-highlight-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ff69b4;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

.feature-highlight-content p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.6;
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.6);
  }
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .features-section {
    padding: 80px 0;
  }
  
  .features-container {
    padding: 0 30px;
  }
  
  .features-title {
    font-size: 2.3rem;
  }
  
  .features-content {
    gap: 50px;
    margin-bottom: 60px;
  }
  
  .features-text {
    gap: 25px;
  }
  
  .features-intro p,
  .features-truewallet p,
  .features-advanced p,
  .features-games p,
  .features-questions p,
  .features-benefits p,
  .features-access p {
    font-size: 1rem;
  }
  
  .features-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .feature-highlight-item {
    padding: 30px 20px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .features-section {
    padding: 60px 0;
  }
  
  .features-container {
    padding: 0 20px;
  }
  
  .features-header {
    margin-bottom: 50px;
  }
  
  .features-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .features-text {
    gap: 20px;
    order: 2;
  }
  
  .features-image {
    order: 1;
  }
  
  .features-intro p,
  .features-truewallet p,
  .features-advanced p,
  .features-games p,
  .features-questions p,
  .features-benefits p,
  .features-access p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .features-badge {
    top: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 0.85rem;
  }
  
  .features-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-highlight-item {
    padding: 25px 20px;
  }
  
  .feature-highlight-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }
  
  .feature-highlight-icon i {
    font-size: 1.7rem;
  }
  
  .feature-highlight-content h3 {
    font-size: 1.2rem;
  }
  
  .feature-highlight-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .features-title {
    font-size: 1.5rem;
  }
  
  .features-intro p,
  .features-truewallet p,
  .features-advanced p,
  .features-games p,
  .features-questions p,
  .features-benefits p,
  .features-access p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .features-badge {
    top: 15px;
    right: 15px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }
  
  .feature-highlight-item {
    padding: 20px 15px;
  }
  
  .feature-highlight-content h3 {
    font-size: 1.1rem;
  }
}

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

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(34, 139, 34, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="secure" width="80" height="80" patternUnits="userSpaceOnUse"><rect x="35" y="35" width="10" height="10" fill="%23ffffff" opacity="0.02"/><circle cx="20" cy="60" r="2" fill="%2332CD32" opacity="0.03"/></pattern></defs><rect width="80" height="80" fill="url(%23secure)"/></svg>') repeat;
  pointer-events: none;
}

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

.security-header {
  text-align: center;
  margin-bottom: 70px;
}

.security-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #32cd32, #228b22, #32cd32);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.3;
  animation: gradientShift 3s ease-in-out infinite;
}

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

.security-image {
  position: relative;
  animation: fadeInLeft 1s ease-out 0.3s both;
}

.security-img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(50, 205, 50, 0.2);
  border: 3px solid rgba(50, 205, 50, 0.3);
  transition: all 0.3s ease;
}

.security-img:hover {
  transform: scale(1.02) rotateY(-5deg);
  box-shadow: 0 30px 80px rgba(50, 205, 50, 0.3);
}

.security-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background: linear-gradient(45deg, #32cd32, #228b22);
  padding: 15px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #000;
  box-shadow: 0 10px 30px rgba(50, 205, 50, 0.4);
  animation: secureGlow 3s ease-in-out infinite;
}

.security-badge i {
  font-size: 1.2rem;
  animation: lockShake 2s ease-in-out infinite;
}

.security-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: fadeInRight 1s ease-out 0.5s both;
}

.security-intro p,
.security-features p,
.security-games p,
.security-bonuses p,
.security-system p,
.security-support p,
.security-development p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: justify;
}

.security-intro strong,
.security-features strong,
.security-games strong,
.security-bonuses strong,
.security-system strong,
.security-support strong,
.security-development strong {
  color: #32cd32;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(50, 205, 50, 0.3);
}

.security-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.security-feature-item {
  background: rgba(50, 205, 50, 0.05);
  border: 1px solid rgba(50, 205, 50, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

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

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

.security-feature-item:hover {
  background: rgba(50, 205, 50, 0.1);
  border-color: rgba(50, 205, 50, 0.5);
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(50, 205, 50, 0.2);
}

.security-feature-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(45deg, #32cd32, #228b22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(50, 205, 50, 0.3);
}

.security-feature-item:hover .security-feature-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(50, 205, 50, 0.5);
}

.security-feature-icon i {
  font-size: 1.6rem;
  color: #000;
}

.security-feature-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #32cd32;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(50, 205, 50, 0.3);
}

.security-feature-content p {
  font-size: 0.9rem;
  color: #cccccc;
  line-height: 1.5;
}

@keyframes secureGlow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(50, 205, 50, 0.4);
  }
  50% {
    box-shadow: 0 15px 40px rgba(50, 205, 50, 0.6);
  }
}

@keyframes lockShake {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .security-section {
    padding: 80px 0;
  }
  
  .security-container {
    padding: 0 30px;
  }
  
  .security-title {
    font-size: 2.3rem;
  }
  
  .security-content {
    gap: 50px;
    margin-bottom: 60px;
  }
  
  .security-text {
    gap: 25px;
  }
  
  .security-intro p,
  .security-features p,
  .security-games p,
  .security-bonuses p,
  .security-system p,
  .security-support p,
  .security-development p {
    font-size: 1rem;
  }
  
  .security-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .security-feature-item {
    padding: 25px 15px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .security-section {
    padding: 60px 0;
  }
  
  .security-container {
    padding: 0 20px;
  }
  
  .security-header {
    margin-bottom: 50px;
  }
  
  .security-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .security-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .security-text {
    gap: 20px;
    order: 2;
  }
  
  .security-image {
    order: 1;
  }
  
  .security-intro p,
  .security-features p,
  .security-games p,
  .security-bonuses p,
  .security-system p,
  .security-support p,
  .security-development p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .security-badge {
    top: 20px;
    left: 20px;
    padding: 12px 18px;
    font-size: 0.85rem;
  }
  
  .security-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .security-feature-item {
    padding: 20px 15px;
  }
  
  .security-feature-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }
  
  .security-feature-icon i {
    font-size: 1.4rem;
  }
  
  .security-feature-content h3 {
    font-size: 1.1rem;
  }
  
  .security-feature-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .security-title {
    font-size: 1.5rem;
  }
  
  .security-intro p,
  .security-features p,
  .security-games p,
  .security-bonuses p,
  .security-system p,
  .security-support p,
  .security-development p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .security-badge {
    top: 15px;
    left: 15px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }
  
  .security-features-grid {
    grid-template-columns: 1fr;
  }
  
  .security-feature-item {
    padding: 18px 12px;
  }
  
  .security-feature-content h3 {
    font-size: 1rem;
  }
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #0d1421 100%);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.footer-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="footerPattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="15" cy="15" r="0.5" fill="%23ffd700" opacity="0.03"/></pattern></defs><rect width="60" height="60" fill="url(%23footerPattern)"/></svg>') repeat;
  pointer-events: none;
}

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

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.footer-logo i {
  font-size: 2.5rem;
  color: #ffd700;
  animation: rotate 6s linear infinite;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

.footer-description {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 10px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #e0e0e0;
}

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

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

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

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

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

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 2px 0;
  position: relative;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #ffd700;
  padding-left: 5px;
}

.footer-link:hover::before {
  width: 100%;
}

.footer-payment {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.payment-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

.payment-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

.payment-item i {
  color: #ffd700;
  font-size: 1.2rem;
  min-width: 20px;
}

.payment-item span {
  font-size: 0.85rem;
  color: #e0e0e0;
  font-weight: 600;
}

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

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

.footer-legal {
  display: flex;
  align-items: center;
  gap: 15px;
}

.legal-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

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

.separator {
  color: #666;
  font-size: 0.8rem;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .footer-container {
    padding: 50px 30px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .footer-container {
    padding: 40px 20px 0;
  }
  
  .footer-content {
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo-text {
    font-size: 1.5rem;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-menu {
    align-items: center;
  }
  
  .footer-payment {
    text-align: center;
  }
  
  .payment-methods {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .payment-item {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 25px 0;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 30px 15px 0;
  }
  
  .footer-logo i {
    font-size: 2rem;
  }
  
  .footer-logo-text {
    font-size: 1.3rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .contact-item {
    font-size: 0.85rem;
  }
  
  .footer-title {
    font-size: 1rem;
  }
  
  .footer-link {
    font-size: 0.85rem;
  }
  
  .payment-title {
    font-size: 1rem;
  }
  
  .payment-item {
    padding: 10px;
  }
  
  .payment-item span {
    font-size: 0.8rem;
  }
  
  .footer-copyright p {
    font-size: 0.8rem;
  }
  
  .legal-link {
    font-size: 0.8rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  z-index: 1000;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.sticky-btn:last-child {
  border-right: none;
}

.sticky-btn::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;
}

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

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

.sticky-btn span {
  font-size: 0.8rem;
  line-height: 1;
  text-align: center;
  transition: transform 0.3s ease;
}

.sticky-btn:hover i {
  transform: scale(1.2) translateY(-2px);
}

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

/* Login Button */
.login-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
}

.login-btn:hover {
  background: linear-gradient(135deg, #0056b3, #007bff);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.login-btn i {
  color: #ffffff;
}

/* Register Button */
.register-btn {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: #ffffff;
}

.register-btn:hover {
  background: linear-gradient(135deg, #1e7e34, #28a745);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.register-btn i {
  color: #ffffff;
}

/* Credit Button */
.credit-btn {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000;
  animation: pulse 2s infinite;
}

.credit-btn:hover {
  background: linear-gradient(135deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.credit-btn i {
  color: #000000;
}

.credit-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 3s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  50%, 100% {
    transform: translateX(100%);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 12px 8px;
    font-size: 0.85rem;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 10px 5px;
    font-size: 0.8rem;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    padding: 8px 3px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .sticky-btn span {
    font-size: 0.65rem;
  }
}

/* Add bottom padding to body to prevent content being hidden behind sticky buttons */
body {
  padding-bottom: 70px;
}

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.06) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="loginPattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="20" cy="20" r="0.5" fill="%23ffd700" opacity="0.02"/></pattern></defs><rect width="80" height="80" fill="url(%23loginPattern)"/></svg>') repeat;
  pointer-events: none;
}

.login-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out;
}

.login-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

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

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.1) rotate(5deg);
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  animation: gradientShift 3s ease-in-out infinite;
}

.login-subtitle {
  color: #cccccc;
  font-size: 1rem;
  margin: 0;
}

.login-form-wrapper {
  margin-bottom: 30px;
}

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: shake 0.5s ease-in-out;
}

.error-message i {
  color: #dc3545;
  font-size: 1.1rem;
}

.error-text {
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.form-label {
  display: block;
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffd700;
  font-size: 1.1rem;
  z-index: 2;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 15px 45px 15px 45px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.form-input::placeholder {
  color: #cccccc;
  opacity: 0.8;
}

.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #cccccc;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: #ffd700;
}

.field-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  margin-left: 5px;
  display: none;
}

.field-error.show {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-btn {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  border: none;
  border-radius: 15px;
  padding: 15px 20px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.login-btn:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

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

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

.btn-loader {
  position: absolute;
  right: 15px;
}

.register-btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffd700;
  border-radius: 15px;
  padding: 12px 20px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.register-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffed4e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.login-features {
  display: flex;
  justify-content: space-around;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  flex: 1;
}

.feature-item i {
  color: #ffd700;
  font-size: 1.2rem;
}

.feature-item span {
  color: #cccccc;
  font-size: 0.8rem;
  font-weight: 600;
}

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

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

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

/* Input validation states */
.form-input.error {
  border-color: #dc3545;
  box-shadow: 0 0 15px rgba(220, 53, 69, 0.3);
}

.form-input.success {
  border-color: #28a745;
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 0;
  }
  
  .login-container {
    padding: 0 15px;
  }
  
  .login-card {
    padding: 30px 25px;
    border-radius: 20px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 40px 12px 40px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .login-features {
    gap: 10px;
  }
  
  .feature-item span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 25px 20px;
    margin: 0 10px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .form-input {
    padding: 10px 35px 10px 35px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 1rem;
  }
  
  .password-toggle {
    right: 12px;
    font-size: 1rem;
  }
  
  .login-btn,
  .register-btn {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
  
  .login-features {
    flex-direction: column;
    gap: 12px;
  }
  
  .feature-item {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="registerPattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="20" cy="20" r="0.5" fill="%2300ff88" opacity="0.02"/></pattern></defs><rect width="80" height="80" fill="url(%23registerPattern)"/></svg>') repeat;
  pointer-events: none;
}

.register-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 25px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out;
}

.register-card:hover {
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

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

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

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.1) rotate(5deg);
}

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #00ff88, #00cc6a, #00ff88);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  animation: gradientShift 3s ease-in-out infinite;
}

.register-subtitle {
  color: #cccccc;
  font-size: 1rem;
  margin: 0;
}

.register-form-wrapper {
  margin-bottom: 30px;
}

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: shake 0.5s ease-in-out;
}

.error-message i {
  color: #dc3545;
  font-size: 1.1rem;
}

.error-text {
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.form-label {
  display: block;
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #00ff88;
  font-size: 1.1rem;
  z-index: 2;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 15px 45px;
  color: #ffffff;
  font-size: 1rem;
  font-family: 'Sarabun', sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-input:focus {
  outline: none;
  border-color: #00ff88;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.form-input::placeholder {
  color: #cccccc;
  opacity: 0.8;
}

.field-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  margin-left: 5px;
  display: none;
}

.field-error.show {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.register-btn {
  background: linear-gradient(45deg, #00ff88, #00cc6a);
  color: #000;
  border: none;
  border-radius: 15px;
  padding: 15px 20px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
  position: relative;
  overflow: hidden;
}

.register-btn:hover {
  background: linear-gradient(45deg, #00cc6a, #00ff88);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
}

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

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

.btn-loader {
  position: absolute;
  right: 15px;
}

.login-btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid #00ff88;
  border-radius: 15px;
  padding: 12px 20px;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: #00cc6a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.2);
}

.register-features {
  display: flex;
  justify-content: space-around;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  flex: 1;
}

.feature-item i {
  color: #00ff88;
  font-size: 1.2rem;
}

.feature-item span {
  color: #cccccc;
  font-size: 0.8rem;
  font-weight: 600;
}

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

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

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

/* Input validation states */
.form-input.error {
  border-color: #dc3545;
  box-shadow: 0 0 15px rgba(220, 53, 69, 0.3);
}

.form-input.success {
  border-color: #28a745;
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 0;
  }
  
  .register-container {
    padding: 0 15px;
  }
  
  .register-card {
    padding: 30px 25px;
    border-radius: 20px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px 40px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .register-features {
    gap: 10px;
  }
  
  .feature-item span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .register-card {
    padding: 25px 20px;
    margin: 0 10px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .form-input {
    padding: 10px 35px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 1rem;
  }
  
  .register-btn,
  .login-btn {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
  
  .register-features {
    flex-direction: column;
    gap: 12px;
  }
  
  .feature-item {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
}

/* Promotion Hero Section */
.promotion-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.promotion-hero::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, 20, 147, 0.08) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heroPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="25" cy="75" r="0.5" fill="%23ffd700" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23heroPattern)"/></svg>') repeat;
  pointer-events: none;
}

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

.hero-content {
  margin: 0 auto;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ff69b4);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  line-height: 1.2;
  animation: gradientShift 3s ease-in-out infinite;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  margin-top: 40px;
}

/* Promotion Sections */
.promotion-section {
  padding: 80px 0;
  position: relative;
}

.promotion-section:nth-child(even) {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 100%);
}

.promotion-section:nth-child(odd) {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.promotion-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.promotion-header {
  text-align: center;
  margin-bottom: 50px;
}

.promotion-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.promotion-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.promotion-list {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promotion-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 20px 25px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.promotion-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.promotion-item i {
  color: #ffd700;
  font-size: 1.3rem;
  min-width: 20px;
}

.promotion-item span {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
}

.promotion-cta {
  margin-top: 30px;
}

/* CTA Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 35px;
  border-radius: 25px;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-button::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;
}

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

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

.cta-button i {
  font-size: 1.2rem;
}

/* Button Variants */
.cta-button.primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-button.primary:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

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

.cta-button.secondary:hover {
  background: linear-gradient(45deg, #20c997, #28a745);
  box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
}

.cta-button.truewallet {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.cta-button.truewallet:hover {
  background: linear-gradient(45deg, #0056b3, #007bff);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.5);
}

.cta-button.daily {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cta-button.daily:hover {
  background: linear-gradient(45deg, #f7931e, #ff6b35);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.cta-button.referral {
  background: linear-gradient(45deg, #e83e8c, #d63384);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(232, 62, 140, 0.4);
}

.cta-button.referral:hover {
  background: linear-gradient(45deg, #d63384, #e83e8c);
  box-shadow: 0 12px 35px rgba(232, 62, 140, 0.5);
}

.cta-button.large {
  padding: 22px 45px;
  font-size: 1.3rem;
}

/* Summary Section */
.summary-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.summary-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="summaryPattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="60" height="60" fill="url(%23summaryPattern)"/></svg>') repeat;
  pointer-events: none;
}

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

.summary-content {
  max-width: 900px;
  margin: 0 auto;
}

.summary-text {
  font-size: 1.3rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

.summary-cta {
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .promotion-hero {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-title {
    font-size: 2.2rem;
  }
  
  .promotion-item {
    padding: 18px 20px;
  }
  
  .promotion-item span {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 16px 30px;
    font-size: 1rem;
  }
  
  .cta-button.large {
    padding: 20px 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .promotion-hero {
    padding: 80px 0 50px;
  }
  
  .hero-container,
  .promotion-container,
  .summary-container {
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 50px 0;
  }
  
  .promotion-title {
    font-size: 1.9rem;
  }
  
  .promotion-header {
    margin-bottom: 40px;
  }
  
  .promotion-list {
    gap: 15px;
  }
  
  .promotion-item {
    padding: 15px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }
  
  .promotion-item i {
    font-size: 1.2rem;
  }
  
  .promotion-item span {
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 14px 25px;
    font-size: 0.95rem;
  }
  
  .cta-button.large {
    padding: 18px 35px;
    font-size: 1.1rem;
  }
  
  .summary-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .promotion-hero {
    padding: 60px 0 40px;
  }
  
  .hero-container,
  .promotion-container,
  .summary-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 40px 0;
  }
  
  .promotion-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .promotion-item {
    padding: 12px 15px;
    gap: 10px;
  }
  
  .promotion-item i {
    font-size: 1.1rem;
  }
  
  .promotion-item span {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .cta-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .cta-button.large {
    padding: 16px 30px;
    font-size: 1rem;
  }
  
  .summary-text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* Enhanced Index Page Styles */

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

.system-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
  pointer-events: none;
}

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

.system-content {
  text-align: center;
}

.system-header {
  margin-bottom: 60px;
}

.system-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  line-height: 1.3;
  animation: gradientShift 3s ease-in-out infinite;
}

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

.system-text {
  text-align: left;
}

.system-description p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 24px;
  line-height: 1.8;
}

.system-description strong {
  color: #ffd700;
  font-weight: 700;
}

.system-benefits {
  margin: 40px 0;
}

.benefits-title {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 24px;
  font-weight: 700;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid #ffd700;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(10px);
}

.benefit-item i {
  color: #ffd700;
  font-size: 1.2rem;
  min-width: 20px;
}

.benefit-item span {
  color: #cccccc;
  font-size: 1rem;
}

.system-image {
  position: relative;
}

.system-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.system-img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.system-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
}

.tech-badge {
  background: linear-gradient(45deg, #00ff88, #00cc6a);
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #000;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
  animation: pulse 2s infinite;
}

.tech-badge i {
  font-size: 1.1rem;
}

.system-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.system-btn:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.system-btn i {
  font-size: 1.3rem;
}

.system-cta {
  text-align: center;
  margin-top: 60px;
}

.system-final {
  margin-top: 30px;
}

.system-final p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
}

/* Football Section Styles */
.football-section {
  background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.football-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.football-header {
  text-align: center;
  margin-bottom: 60px;
}

.football-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.3;
}

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

.football-image {
  position: relative;
}

.football-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.football-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
}

.prediction-badge {
  background: linear-gradient(45deg, #ff6b6b, #ee5a52);
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.football-text {
  color: #ffffff;
}

.football-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #e0e0e0;
}

.football-description strong {
  color: #ffd700;
  font-weight: 700;
}

.football-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 60px 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #000;
}

.feature-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 12px;
}

.feature-content p {
  color: #e0e0e0;
  line-height: 1.6;
}

.football-security {
  background: rgba(0, 0, 0, 0.3);
  padding: 40px;
  border-radius: 20px;
  margin: 60px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-title {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 20px;
  font-weight: 700;
}

.security-content p {
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

.login-link:hover {
  color: #ffed4e;
}

.football-advanced {
  margin: 60px 0;
}

.advanced-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.advanced-title {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 20px;
  font-weight: 700;
}

.advanced-text p {
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 20px;
}

.advanced-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advanced-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid #ffd700;
  transition: all 0.3s ease;
}

.advanced-feature:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(10px);
}

.advanced-feature i {
  font-size: 1.5rem;
  color: #ffd700;
  min-width: 24px;
}

.advanced-feature h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.advanced-feature span {
  font-size: 0.9rem;
  color: #cccccc;
}

.football-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(45deg, #00ff88, #00cc6a);
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.football-btn:hover {
  background: linear-gradient(45deg, #00cc6a, #00ff88);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
}

.football-cta {
  text-align: center;
  margin-top: 60px;
}

/* Header Enhancement for ufabetautor1-com */
.header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.header-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
}

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

.header-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000;
  border-radius: 25px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  text-decoration: none;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Hero Enhancement for ufabetautor1-com */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}

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

.hero-btn--primary:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.hero-btn--secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffd700;
}

.hero-btn--secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-feature:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}

.hero-feature i {
  color: #ffd700;
  font-size: 1.2rem;
}

.hero-feature span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Responsive Design Enhancements */
@media (max-width: 1024px) {
  .system-grid,
  .football-grid,
  .advanced-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .system-title,
  .football-title {
    font-size: 2.2rem;
  }
  
  .football-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  
  .system-section,
  .football-section {
    padding: 60px 0;
  }
  
  .system-title,
  .football-title {
    font-size: 1.8rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero-feature {
    justify-content: center;
    width: 100%;
    max-width: 300px;
  }
  
  .system-btn,
  .football-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 25px;
  }
  
  .football-security {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .system-title,
  .football-title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .football-security {
    padding: 25px 15px;
  }
  
  .hero-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .system-btn,
  .football-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .benefit-item,
  .advanced-feature {
    padding: 10px;
  }
  
  .hero-feature {
    padding: 10px 15px;
  }
}