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

html {
  scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

/* Button Styles */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  min-width: 180px;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
  background: linear-gradient(45deg, #f7931e 0%, #ff6b35 100%);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ff6b35;
}

.btn-secondary:hover {
  background: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

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

.feature-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

.feature-item i {
  font-size: 1.5rem;
  color: #ff6b35;
  width: 24px;
  text-align: center;
}

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

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  animation: pulse 2s infinite;
}

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

/* 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 pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn-primary, .btn-secondary {
    min-width: 160px;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .hero-section {
    padding: 40px 15px;
    min-height: 90vh;
  }
  
  .hero-content {
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-features {
    margin-bottom: 2rem;
  }
  
  .feature-item {
    padding: 0.75rem;
  }
  
  .feature-item i {
    font-size: 1.3rem;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    min-width: unset;
  }
  
  .hero-badge {
    position: static;
    margin-top: 1rem;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

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

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.logo-link i {
  font-size: 2rem;
  color: #ff6b35;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  transform: translateY(-2px);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

.cta-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  white-space: nowrap;
}

.cta-button:hover {
  background: linear-gradient(45deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 6px;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger-line {
  background: #ff6b35;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
}

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

.mobile-menu-content {
  width: 90%;
  max-width: 400px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  padding: 2rem;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

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

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

.mobile-logo span {
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.mobile-menu-close:hover {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-menu li:last-child {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  transform: translateX(10px);
}

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

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 2rem;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  text-align: center;
}

.mobile-cta-button:hover {
  background: linear-gradient(45deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
  }
  
  .header-content {
    height: 60px;
    gap: 1rem;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .logo-link i {
    font-size: 1.6rem;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .header-content {
    height: 55px;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .logo-link i {
    font-size: 1.4rem;
  }
  
  .mobile-menu-content {
    width: 95%;
    padding: 1.5rem;
  }
  
  .mobile-menu-header {
    margin-bottom: 1.5rem;
  }
  
  .mobile-logo {
    font-size: 1.1rem;
  }
  
  .mobile-nav-link {
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }
  
  .mobile-cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

/* Ensure body has top padding to account for fixed header */
body {
  padding-top: 70px;
}

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

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

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

.platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.platform-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

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

.platform-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.platform-description {
  margin-bottom: 3rem;
}

.platform-description p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.platform-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.highlight-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.highlight-item i {
  font-size: 2.5rem;
  color: #ff6b35;
  min-width: 60px;
  text-align: center;
}

.highlight-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

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

.platform-cta {
  text-align: left;
}

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

.platform-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 107, 53, 0.3);
}

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

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b35;
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

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

/* Tablet Responsive */
@media (max-width: 768px) {
  .platform-section {
    padding: 80px 20px;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .platform-title {
    font-size: 2rem;
  }
  
  .platform-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .platform-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .highlight-item {
    padding: 1.2rem;
  }
  
  .highlight-item i {
    font-size: 2rem;
    min-width: 50px;
  }
  
  .highlight-content h3 {
    font-size: 1.1rem;
  }
  
  .platform-cta {
    text-align: center;
  }
  
  .platform-stats {
    position: static;
    margin-top: 2rem;
    padding: 1.2rem 1rem;
  }
  
  .stat-number {
    font-size: 1.7rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .platform-section {
    padding: 60px 15px;
  }
  
  .platform-content {
    gap: 2rem;
  }
  
  .platform-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .platform-description {
    margin-bottom: 2rem;
  }
  
  .platform-description p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .platform-highlights {
    margin-bottom: 2rem;
  }
  
  .highlight-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .highlight-item i {
    font-size: 2.2rem;
    min-width: auto;
  }
  
  .highlight-content h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
  
  .platform-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .stat-number {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
}

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

.payment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

.payment-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

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

.payment-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 107, 53, 0.3);
}

.payment-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(45deg, #00ff88 0%, #00cc6a 100%);
  color: #ffffff;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
  animation: pulse 2s infinite;
}

.payment-security {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #4285f4 0%, #1a73e8 100%);
  color: #ffffff;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}

.payment-text {
  animation: fadeInRight 1s ease-out 0.3s both;
}

.payment-title {
  font-size: 2.3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.payment-description {
  margin-bottom: 2.5rem;
}

.payment-description p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.payment-description a {
  color: #ff6b35;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.payment-description a:hover {
  color: #f7931e;
}

.payment-benefits {
  margin-bottom: 2.5rem;
}

.benefits-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefits-title::before {
  content: '';
  width: 4px;
  height: 30px;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 2px;
}

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

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.benefits-list li:hover {
  background: rgba(255, 107, 53, 0.05);
  padding-left: 1rem;
  border-radius: 8px;
  border-bottom-color: transparent;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li i {
  font-size: 1.2rem;
  color: #00ff88;
  min-width: 20px;
}

.benefits-list li span {
  font-size: 1rem;
  color: #cccccc;
  font-weight: 500;
}

.payment-additional {
  margin-bottom: 2.5rem;
}

.payment-additional p {
  font-size: 1.05rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.method-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.method-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-5px);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.method-item i {
  font-size: 2rem;
  color: #ff6b35;
}

.method-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.payment-cta {
  text-align: left;
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .payment-section {
    padding: 80px 20px;
  }
  
  .payment-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .payment-title {
    font-size: 1.9rem;
    text-align: center;
  }
  
  .payment-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .benefits-title {
    font-size: 1.3rem;
  }
  
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .method-item {
    padding: 1.2rem 0.8rem;
  }
  
  .method-item i {
    font-size: 1.8rem;
  }
  
  .payment-cta {
    text-align: center;
  }
  
  .payment-badge {
    top: 15px;
    left: 15px;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  
  .payment-security {
    bottom: 15px;
    right: 15px;
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .payment-section {
    padding: 60px 15px;
  }
  
  .payment-content {
    gap: 2rem;
  }
  
  .payment-title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  .payment-description {
    margin-bottom: 2rem;
  }
  
  .payment-description p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .benefits-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .benefits-list li {
    padding: 0.8rem 0;
  }
  
  .benefits-list li span {
    font-size: 0.9rem;
  }
  
  .payment-additional {
    margin-bottom: 2rem;
  }
  
  .payment-additional p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .payment-methods {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 2rem;
  }
  
  .method-item {
    padding: 1rem 0.5rem;
  }
  
  .method-item i {
    font-size: 1.6rem;
  }
  
  .method-item span {
    font-size: 0.8rem;
  }
  
  .payment-badge {
    top: 10px;
    left: 10px;
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .payment-security {
    bottom: 10px;
    right: 10px;
    padding: 0.5rem 0.8rem;
    font-size: 0.7rem;
  }
}

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

.technology-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(66, 133, 244, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.technology-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: center;
}

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

.technology-title {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(45deg, #4285f4 0%, #1a73e8 50%, #00bcd4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.technology-description {
  margin-bottom: 3rem;
}

.technology-description p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.technology-description a {
  color: #4285f4;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.technology-description a:hover {
  color: #1a73e8;
}

.technology-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.tech-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(66, 133, 244, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tech-feature:hover {
  background: rgba(66, 133, 244, 0.1);
  transform: translateY(-5px);
  border-color: rgba(66, 133, 244, 0.4);
  box-shadow: 0 15px 40px rgba(66, 133, 244, 0.15);
}

.tech-feature i {
  font-size: 2.2rem;
  color: #4285f4;
  min-width: 50px;
  text-align: center;
}

.feature-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.feature-content p {
  font-size: 0.95rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

.technology-cta {
  text-align: left;
}

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

.tech-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(66, 133, 244, 0.3);
}

.tech-badges {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.tech-badge.pwa {
  background: linear-gradient(45deg, #9c27b0 0%, #e91e63 100%);
  color: #ffffff;
}

.tech-badge.html5 {
  background: linear-gradient(45deg, #ff5722 0%, #ff9800 100%);
  color: #ffffff;
}

.tech-badge.ai {
  background: linear-gradient(45deg, #4caf50 0%, #8bc34a 100%);
  color: #ffffff;
}

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

/* Animation for tech badges */
.tech-badge {
  animation: float 3s ease-in-out infinite;
}

.tech-badge:nth-child(2) {
  animation-delay: 1s;
}

.tech-badge:nth-child(3) {
  animation-delay: 2s;
}

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

/* Tablet Responsive */
@media (max-width: 768px) {
  .technology-section {
    padding: 80px 20px;
  }
  
  .technology-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .technology-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .technology-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .technology-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .tech-feature {
    padding: 1.2rem;
  }
  
  .tech-feature i {
    font-size: 2rem;
    min-width: 45px;
  }
  
  .feature-content h3 {
    font-size: 1rem;
  }
  
  .technology-cta {
    text-align: center;
  }
  
  .tech-badges {
    top: 15px;
    right: 15px;
    gap: 0.8rem;
  }
  
  .tech-badge {
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .technology-section {
    padding: 60px 15px;
  }
  
  .technology-content {
    gap: 2rem;
  }
  
  .technology-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .technology-description {
    margin-bottom: 2rem;
  }
  
  .technology-description p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .technology-features {
    margin-bottom: 2rem;
  }
  
  .tech-feature {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .tech-feature i {
    font-size: 2.5rem;
    min-width: auto;
  }
  
  .feature-content h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  
  .feature-content p {
    font-size: 0.85rem;
  }
  
  .tech-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
  
  .tech-badge {
    padding: 0.5rem 0.7rem;
    font-size: 0.7rem;
  }
  
  .tech-badge i {
    font-size: 0.9rem;
  }
}

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(34, 193, 195, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(253, 187, 45, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.login-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

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

.login-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(34, 193, 195, 0.3);
}

.login-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.time-badge, .security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  backdrop-filter: blur(20px);
  width: fit-content;
}

.time-badge {
  background: linear-gradient(45deg, #22c1c3 0%, #fdbb2d 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(34, 193, 195, 0.3);
  align-self: flex-start;
}

.security-badge {
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  align-self: flex-end;
}

.login-text {
  animation: fadeInRight 1s ease-out 0.3s both;
}

.login-title {
  font-size: 2.3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #22c1c3 0%, #fdbb2d 50%, #667eea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.login-description {
  margin-bottom: 3rem;
}

.login-description p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.login-description a {
  color: #22c1c3;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-description a:hover {
  color: #fdbb2d;
}

.registration-steps {
  margin-bottom: 3rem;
}

.steps-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.steps-title::before {
  content: '';
  width: 6px;
  height: 35px;
  background: linear-gradient(45deg, #22c1c3 0%, #fdbb2d 100%);
  border-radius: 3px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(34, 193, 195, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.step-item:hover {
  background: rgba(34, 193, 195, 0.08);
  border-color: rgba(34, 193, 195, 0.4);
  transform: translateX(10px);
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 32px;
  bottom: -24px;
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, #22c1c3 0%, rgba(34, 193, 195, 0.2) 100%);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #22c1c3 0%, #fdbb2d 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.step-content p {
  font-size: 0.95rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

.login-additional {
  margin-bottom: 3rem;
}

.login-additional p {
  font-size: 1.05rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.login-additional a {
  color: #22c1c3;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-additional a:hover {
  color: #fdbb2d;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.2);
  transition: all 0.3s ease;
}

.security-item:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-3px);
  border-color: rgba(102, 126, 234, 0.4);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.security-item i {
  font-size: 1.8rem;
  color: #667eea;
  min-width: 40px;
  text-align: center;
}

.security-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

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

.login-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .login-section {
    padding: 80px 20px;
  }
  
  .login-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .login-title {
    font-size: 1.9rem;
    text-align: center;
  }
  
  .login-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .security-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .login-cta {
    justify-content: center;
  }
  
  .steps-title {
    font-size: 1.3rem;
  }
  
  .step-item {
    padding: 1.2rem;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .time-badge, .security-badge {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .login-section {
    padding: 60px 15px;
  }
  
  .login-content {
    gap: 2rem;
  }
  
  .login-title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  .login-description {
    margin-bottom: 2rem;
  }
  
  .login-description p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .registration-steps {
    margin-bottom: 2rem;
  }
  
  .steps-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .steps-list {
    gap: 1rem;
  }
  
  .step-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .step-item:not(:last-child)::after {
    display: none;
  }
  
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .step-content {
    text-align: center;
  }
  
  .step-content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  
  .step-content p {
    font-size: 0.85rem;
  }
  
  .login-additional {
    margin-bottom: 2rem;
  }
  
  .login-additional p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .security-features {
    margin-bottom: 2rem;
  }
  
  .security-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .security-item i {
    font-size: 2rem;
    min-width: auto;
  }
  
  .security-content h4 {
    font-size: 0.9rem;
  }
  
  .security-content p {
    font-size: 0.8rem;
  }
  
  .login-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .login-cta .btn-primary,
  .login-cta .btn-secondary {
    width: 100%;
  }
  
  .time-badge, .security-badge {
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .login-overlay {
    padding: 15px;
  }
}

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

.providers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(247, 147, 30, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
  z-index: 1;
}

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

.providers-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

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

.providers-title {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 30%, #ffd700 70%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.providers-description {
  margin-bottom: 3rem;
}

.providers-description p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.game-providers {
  margin-bottom: 3rem;
}

.providers-list-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.providers-list-title::before {
  content: '';
  width: 6px;
  height: 35px;
  background: linear-gradient(45deg, #ff6b35 0%, #ffd700 100%);
  border-radius: 3px;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.provider-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.provider-card:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.provider-card i {
  font-size: 2.5rem;
  color: #ffd700;
  min-width: 60px;
  text-align: center;
}

.provider-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.provider-content p {
  font-size: 0.95rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

.additional-info {
  margin-bottom: 3rem;
}

.additional-info p {
  font-size: 1.05rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.promotions-list {
  margin-bottom: 3rem;
}

.promotions-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.promotions-title::before {
  content: '';
  width: 6px;
  height: 35px;
  background: linear-gradient(45deg, #f7931e 0%, #ffd700 100%);
  border-radius: 3px;
}

.promo-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.promo-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(247, 147, 30, 0.2);
  transition: all 0.3s ease;
}

.promo-item:hover {
  background: rgba(247, 147, 30, 0.1);
  transform: translateY(-5px);
  border-color: rgba(247, 147, 30, 0.4);
  box-shadow: 0 10px 30px rgba(247, 147, 30, 0.15);
}

.promo-item i {
  font-size: 2rem;
  color: #f7931e;
  min-width: 50px;
  text-align: center;
}

.promo-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.promo-content p {
  font-size: 0.9rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.4;
}

.providers-cta {
  text-align: left;
}

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

.providers-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 107, 53, 0.3);
}

.image-overlays {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.live-badge, .vip-badge, .bonus-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  backdrop-filter: blur(20px);
  width: fit-content;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.live-badge {
  background: linear-gradient(45deg, #ff4757 0%, #ff3742 100%);
  color: #ffffff;
  align-self: flex-start;
  animation: pulse 2s infinite;
}

.vip-badge {
  background: linear-gradient(45deg, #6c5ce7 0%, #a29bfe 100%);
  color: #ffffff;
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
}

.bonus-badge {
  background: linear-gradient(45deg, #00b894 0%, #00cec9 100%);
  color: #ffffff;
  align-self: flex-end;
}

.live-badge i, .vip-badge i, .bonus-badge i {
  font-size: 1rem;
}

/* Badge Animation */
.vip-badge {
  animation: float 4s ease-in-out infinite;
}

.bonus-badge {
  animation: float 3.5s ease-in-out infinite 1s;
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .providers-section {
    padding: 80px 20px;
  }
  
  .providers-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .providers-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .providers-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .providers-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .provider-card {
    padding: 1.5rem;
  }
  
  .provider-card i {
    font-size: 2.2rem;
    min-width: 55px;
  }
  
  .promo-items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .promo-item {
    padding: 1.3rem;
  }
  
  .providers-cta {
    text-align: center;
  }
  
  .image-overlays {
    padding: 15px;
  }
  
  .live-badge, .vip-badge, .bonus-badge {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .providers-section {
    padding: 60px 15px;
  }
  
  .providers-content {
    gap: 2rem;
  }
  
  .providers-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .providers-description {
    margin-bottom: 2rem;
  }
  
  .providers-description p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .game-providers {
    margin-bottom: 2rem;
  }
  
  .providers-list-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  
  .providers-grid {
    gap: 1rem;
  }
  
  .provider-card {
    padding: 1.2rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .provider-card i {
    font-size: 2.5rem;
    min-width: auto;
  }
  
  .provider-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .provider-content p {
    font-size: 0.85rem;
  }
  
  .additional-info {
    margin-bottom: 2rem;
  }
  
  .additional-info p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .promotions-list {
    margin-bottom: 2rem;
  }
  
  .promotions-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .promo-items {
    gap: 0.8rem;
  }
  
  .promo-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .promo-item i {
    font-size: 2.2rem;
    min-width: auto;
  }
  
  .promo-content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  
  .promo-content p {
    font-size: 0.8rem;
  }
  
  .image-overlays {
    padding: 10px;
    position: static;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 1rem;
  }
  
  .live-badge, .vip-badge, .bonus-badge {
    padding: 0.6rem 0.8rem;
    font-size: 0.7rem;
  }
  
  .live-badge i, .vip-badge i, .bonus-badge i {
    font-size: 0.9rem;
  }
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  border-top: 2px solid rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.03) 0%, transparent 50%);
  z-index: 1;
}

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

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

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

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo i {
  font-size: 2.5rem;
  color: #ff6b35;
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

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

.footer-description {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: justify;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #ffffff;
  font-weight: 600;
}

.contact-item i {
  font-size: 1.2rem;
  color: #ff6b35;
  width: 20px;
  text-align: center;
}

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 2px;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

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

.footer-link:hover {
  color: #ff6b35;
  transform: translateX(5px);
}

.footer-link::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #ff6b35;
  transition: all 0.3s ease;
}

.footer-link:hover::before {
  width: 6px;
}

.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 107, 53, 0.05);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-3px);
}

.feature-item i {
  font-size: 2rem;
  color: #ff6b35;
  min-width: 40px;
  text-align: center;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.feature-text p {
  font-size: 0.85rem;
  color: #cccccc;
  margin: 0;
}

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

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

.disclaimer {
  font-size: 0.8rem !important;
  color: #999999 !important;
  margin-top: 0.5rem !important;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

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

.social-link:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.5);
  color: #ff6b35;
  transform: translateY(-2px);
}

.footer-badges {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  color: #cccccc;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.badge-item:hover {
  background: rgba(255, 107, 53, 0.08);
  color: #ff6b35;
  transform: scale(1.05);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    padding: 40px 20px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-brand {
    max-width: 100%;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .footer-title {
    text-align: center;
    font-size: 1.2rem;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-nav {
    text-align: center;
  }
  
  .footer-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .security-badges {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 30px 15px 15px;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-logo-text {
    font-size: 1.5rem;
  }
  
  .footer-logo i {
    font-size: 2rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-item {
    padding: 1.2rem;
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .feature-item i {
    font-size: 2.5rem;
    min-width: auto;
  }
  
  .feature-text {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .security-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .badge-item {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .footer-copyright {
    text-align: center;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 70px;
  gap: 0.3rem;
}

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

.sticky-btn i {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
  transition: all 0.3s ease;
}

.btn-text {
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.2;
  transition: all 0.3s ease;
}

/* Login Button */
.login-btn {
  background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
  color: #ffffff;
}

.login-btn:hover {
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
}

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

/* Register Button */
.register-btn {
  background: linear-gradient(135deg, #34a853 0%, #0f9d58 100%);
  color: #ffffff;
}

.register-btn:hover {
  background: linear-gradient(135deg, #0f9d58 0%, #34a853 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 168, 83, 0.4);
}

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

/* Credit Button */
.credit-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.credit-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

.credit-btn:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

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

/* Shimmer animation for credit button */
@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .sticky-buttons {
    border-top-width: 1px;
  }
  
  .sticky-btn {
    padding: 0.8rem 0.3rem;
    font-size: 0.85rem;
    min-height: 65px;
  }
  
  .sticky-btn i {
    font-size: 1.3rem;
  }
  
  .btn-text {
    font-size: 0.7rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .sticky-buttons {
    border-top-width: 1px;
  }
  
  .sticky-btn {
    padding: 0.7rem 0.2rem;
    font-size: 0.8rem;
    min-height: 60px;
    gap: 0.2rem;
  }
  
  .sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
  }
  
  .btn-text {
    font-size: 0.65rem;
    line-height: 1.1;
  }
}

/* Very Small Mobile */
@media (max-width: 360px) {
  .sticky-btn {
    padding: 0.6rem 0.1rem;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .btn-text {
    font-size: 0.6rem;
  }
}

/* Ensure content doesn't get hidden behind sticky buttons */
body {
  padding-bottom: 70px;
}

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

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

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

/* Ensure sticky buttons appear above other fixed elements */
.sticky-buttons {
  z-index: 1500;
}

/* Add hover effect scaling for better user feedback */
.sticky-btn:hover i {
  transform: scale(1.1);
}

.sticky-btn:hover .btn-text {
  transform: scale(1.05);
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .sticky-btn:hover {
    transform: none;
    box-shadow: none;
  }
  
  .sticky-btn:active {
    transform: scale(0.98);
    opacity: 0.8;
  }
}

/* Accessibility improvements */
.sticky-btn:focus {
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}

.sticky-btn:focus:not(:focus-visible) {
  outline: none;
}

.sticky-btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}

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

.login-page-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(34, 193, 195, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 70%, rgba(247, 147, 30, 0.06) 0%, transparent 50%);
  z-index: 1;
}

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

.login-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.login-logo {
  text-align: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.login-form-container {
  padding: 2rem;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

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

/* Error and Success Messages */
.error-message, .success-message {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.error-message {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #ff5252;
}

.success-message {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #66bb6a;
}

.error-message i, .success-message i {
  font-size: 1.1rem;
}

/* Form Styles */
.login-form {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.form-label i {
  color: #ff6b35;
  font-size: 1rem;
}

.input-wrapper {
  position: relative;
}

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

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-input:valid {
  border-color: #66bb6a;
}

.form-input.error {
  border-color: #ff5252;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b35;
  font-size: 1.1rem;
  pointer-events: none;
}

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

.password-toggle:hover {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
}

.field-error {
  color: #ff5252;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 1rem;
}

.field-error:before {
  content: '⚠';
  font-size: 0.9rem;
}

.field-error:empty {
  display: none;
}

/* Login Submit Button */
.login-submit-btn {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.login-submit-btn:hover:not(:disabled) {
  background: linear-gradient(45deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

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

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

.login-submit-btn .btn-text {
  transition: all 0.3s ease;
}

.login-submit-btn.loading .btn-text {
  opacity: 0;
}

.login-submit-btn.loading .loading-spinner {
  display: flex !important;
  position: absolute;
  align-items: center;
  justify-content: center;
}

/* Login Divider */
.login-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

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

.login-divider span {
  background: rgba(255, 255, 255, 0.05);
  color: #cccccc;
  padding: 0 1rem;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

/* Register Button */
.register-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid #ff6b35;
  border-radius: 12px;
  color: #ff6b35;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.register-btn:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.register-btn i {
  font-size: 1.1rem;
}

/* Login Footer */
.login-footer {
  text-align: center;
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #999999;
  font-size: 0.8rem;
}

.security-info i {
  color: #66bb6a;
  font-size: 0.9rem;
}

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

.shake {
  animation: shake 0.5s ease-in-out;
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .login-page-section {
    padding: 20px 15px;
  }
  
  .login-container {
    max-width: 400px;
  }
  
  .login-form-container, .login-logo {
    padding: 1.5rem;
  }
  
  .login-title {
    font-size: 1.7rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 1rem 3rem 1rem 3.2rem;
    font-size: 0.95rem;
  }
  
  .login-submit-btn {
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .login-page-section {
    padding: 15px 10px;
  }
  
  .login-container {
    max-width: 100%;
    margin: 0 10px;
  }
  
  .login-form-container, .login-logo {
    padding: 1.2rem;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-group {
    margin-bottom: 1.2rem;
  }
  
  .form-input {
    padding: 0.9rem 2.8rem 0.9rem 3rem;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 0.8rem;
    font-size: 1rem;
  }
  
  .password-toggle {
    right: 0.8rem;
    font-size: 1rem;
  }
  
  .login-submit-btn {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .error-message, .success-message {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }
  
  .security-info {
    font-size: 0.75rem;
  }
}

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

.register-page-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(34, 193, 195, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 70%, rgba(247, 147, 30, 0.06) 0%, transparent 50%);
  z-index: 1;
}

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

.register-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.register-logo {
  text-align: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.register-form-container {
  padding: 2rem;
}

.register-header {
  text-align: center;
  margin-bottom: 2rem;
}

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

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

/* Error and Success Messages */
.error-message, .success-message {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.error-message {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #ff5252;
}

.success-message {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #66bb6a;
}

.error-message i, .success-message i {
  font-size: 1.1rem;
}

/* Form Styles */
.register-form {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.form-label i {
  color: #ff6b35;
  font-size: 1rem;
}

.input-wrapper {
  position: relative;
}

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

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-input:valid {
  border-color: #66bb6a;
}

.form-input.error {
  border-color: #ff5252;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #ff6b35;
  font-size: 1.1rem;
  pointer-events: none;
}

.field-error {
  color: #ff5252;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 1rem;
}

.field-error:before {
  content: '⚠';
  font-size: 0.9rem;
}

.field-error:empty {
  display: none;
}

/* Register Submit Button */
.register-submit-btn {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.register-submit-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

.register-submit-btn:hover:not(:disabled) {
  background: linear-gradient(45deg, #f7931e 0%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

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

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

.register-submit-btn .btn-text {
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.register-submit-btn.loading .btn-text {
  opacity: 0;
}

.register-submit-btn.loading .loading-spinner {
  display: flex !important;
  position: absolute;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Shimmer animation for register button */
@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Register Divider */
.register-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

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

.register-divider span {
  background: rgba(255, 255, 255, 0.05);
  color: #cccccc;
  padding: 0 1rem;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

/* Login Button */
.login-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid #4285f4;
  border-radius: 12px;
  color: #4285f4;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.login-btn:hover {
  background: rgba(66, 133, 244, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.2);
}

.login-btn i {
  font-size: 1.1rem;
}

/* Register Footer */
.register-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.security-info, .terms-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #999999;
  font-size: 0.8rem;
}

.security-info i {
  color: #66bb6a;
  font-size: 0.9rem;
}

.terms-info i {
  color: #4285f4;
  font-size: 0.9rem;
}

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

.shake {
  animation: shake 0.5s ease-in-out;
}

/* Success animation */
@keyframes successPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.success {
  animation: successPulse 0.6s ease-in-out;
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .register-page-section {
    padding: 20px 15px;
  }
  
  .register-container {
    max-width: 400px;
  }
  
  .register-form-container, .register-logo {
    padding: 1.5rem;
  }
  
  .register-title {
    font-size: 1.7rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 1.1rem 1rem 1.1rem 3.2rem;
    font-size: 0.95rem;
  }
  
  .register-submit-btn {
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .register-page-section {
    padding: 15px 10px;
  }
  
  .register-container {
    max-width: 100%;
    margin: 0 10px;
  }
  
  .register-form-container, .register-logo {
    padding: 1.2rem;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-group {
    margin-bottom: 1.2rem;
  }
  
  .form-input {
    padding: 1rem 1rem 1rem 3rem;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 0.8rem;
    font-size: 1rem;
  }
  
  .register-submit-btn {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .error-message, .success-message {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }
  
  .register-footer {
    gap: 0.6rem;
  }
  
  .security-info, .terms-info {
    font-size: 0.75rem;
  }
}

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

.hero-promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(34, 193, 195, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 60%, rgba(247, 147, 30, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.hero-content {
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 30%, #ffd700 60%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.badge-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.badge-item i {
  font-size: 1.5rem;
  color: #ff6b35;
}

.badge-item span {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
}

.hero-cta {
  text-align: center;
}

.hero-btn {
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
  border-radius: 50px;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.5);
}

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

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

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

.promotion-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.promotion-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.promotion-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.main-promo {
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 215, 0, 0.05);
}

.main-promo:hover {
  border-color: rgba(255, 215, 0, 0.7);
  background: rgba(255, 215, 0, 0.08);
}

.vip-promo {
  border-color: rgba(138, 43, 226, 0.5);
  background: rgba(138, 43, 226, 0.05);
}

.vip-promo:hover {
  border-color: rgba(138, 43, 226, 0.7);
  background: rgba(138, 43, 226, 0.08);
}

.promotion-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.main-promo .promotion-icon {
  background: linear-gradient(45deg, #ffd700 0%, #ffed4e 100%);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.vip-promo .promotion-icon {
  background: linear-gradient(45deg, #8a2be2 0%, #9370db 100%);
  box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4);
}

.promotion-icon i {
  font-size: 3rem;
  color: #ffffff;
}

.promotion-content {
  flex: 1;
}

.promotion-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
}

.promotion-features {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 2.5rem;
}

.promotion-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.promotion-features li:hover {
  background: rgba(255, 107, 53, 0.05);
  padding-left: 1rem;
  border-radius: 8px;
  border-bottom-color: transparent;
}

.promotion-features li:last-child {
  border-bottom: none;
}

.promotion-features li i {
  font-size: 1.2rem;
  color: #00ff88;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.promotion-features li span {
  color: #cccccc;
  font-size: 1.05rem;
  line-height: 1.6;
}

.promotion-cta {
  text-align: left;
}

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

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .hero-promotion-section {
    padding: 100px 20px 80px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .hero-badges {
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  
  .badge-item {
    padding: 0.8rem 1.5rem;
  }
  
  .badge-item i {
    font-size: 1.3rem;
  }
  
  .badge-item span {
    font-size: 1rem;
  }
  
  .hero-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .promotion-card {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem;
    gap: 1.5rem;
  }
  
  .promotion-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }
  
  .promotion-icon i {
    font-size: 2.5rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  
  .promotion-features li {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 0.8rem;
  }
  
  .promotion-cta {
    text-align: center;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .hero-promotion-section {
    padding: 80px 15px 60px;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-badges {
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }
  
  .badge-item {
    padding: 0.7rem 1.2rem;
    justify-content: center;
  }
  
  .badge-item i {
    font-size: 1.2rem;
  }
  
  .badge-item span {
    font-size: 0.9rem;
  }
  
  .hero-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }
  
  .promotion-section {
    padding: 40px 15px;
  }
  
  .section-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .promotion-card {
    padding: 2rem 1.5rem;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
  }
  
  .promotion-icon i {
    font-size: 2rem;
  }
  
  .promotion-title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
  
  .promotion-features {
    margin-bottom: 2rem;
  }
  
  .promotion-features li {
    padding: 0.8rem 0;
  }
  
  .promotion-features li i {
    font-size: 1rem;
  }
  
  .promotion-features li span {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .btn-primary {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
}