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

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

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

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

a:hover {
  color: #ffed4a;
}

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

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

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  color: #000;
}

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

.btn-secondary:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

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

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 500px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero-description {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  border-left: 4px solid #ffd700;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: translateX(5px);
}

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

.feature-item span {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
  }
  
  .btn {
    padding: 14px 20px;
    font-size: 14px;
    width: 100%;
  }
  
  .feature-item {
    padding: 10px 12px;
  }
  
  .feature-item span {
    font-size: 13px;
  }
}

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

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 20px;
}

/* Logo Styles */
.logo-link {
  text-decoration: none;
}

.logo-text {
  font-family: 'Prompt', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  transition: all 0.3s ease;
}

.logo-link:hover .logo-text {
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop Navigation */
.nav-desktop {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-item {
  position: relative;
}

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

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

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

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

.btn-cta {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  white-space: nowrap;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
  color: #000;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid #ffd700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffed4a;
}

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-left: 2px solid rgba(255, 215, 0, 0.3);
  padding: 0;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
  right: 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-menu-logo {
  font-family: 'Prompt', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

/* Mobile Navigation */
.mobile-nav {
  padding: 20px 0;
}

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

.mobile-nav-item {
  margin: 0;
}

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

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

.mobile-nav-link i {
  color: #ffd700;
  font-size: 1.1rem;
  min-width: 20px;
}

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

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  border: none;
}

.mobile-cta-btn:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
  color: #000;
}

.mobile-cta-btn i {
  color: #000;
}

/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-list {
    gap: 24px;
  }
  
  .nav-link {
    font-size: 0.95rem;
    padding: 6px 12px;
  }
  
  .btn-cta {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

@media (max-width: 800px) {
  .nav-desktop,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-content {
    padding: 12px 0;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-menu-logo {
    font-size: 1.3rem;
  }
  
  .mobile-cta-item {
    margin: 15px;
  }
}

/* Fox88bet Overview Section */
.fox88bet-overview-section {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.fox88bet-overview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.overview-text {
  max-width: 100%;
}

.overview-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 32px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.overview-description {
  margin-bottom: 40px;
}

.overview-description p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.overview-description p:last-child {
  margin-bottom: 0;
}

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

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

.overview-description a:hover {
  color: #ffed4a;
  text-decoration: none;
}

.overview-benefits {
  background: rgba(255, 215, 0, 0.05);
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid #ffd700;
}

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

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-item:hover {
  transform: translateX(8px);
}

.benefit-item i {
  color: #ffd700;
  font-size: 18px;
  min-width: 18px;
  margin-top: 2px;
}

.benefit-item span {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.5;
}

.benefit-item strong {
  color: #ffd700;
  font-weight: 700;
}

.overview-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overview-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.overview-img:hover {
  transform: scale(1.02) rotate(1deg);
}

/* Responsive Design for Overview Section */
@media (max-width: 1024px) {
  .overview-content {
    gap: 40px;
  }
  
  .overview-title {
    font-size: 2.2rem;
  }
  
  .overview-description p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .fox88bet-overview-section {
    padding: 60px 0;
  }
  
  .overview-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .overview-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .overview-description p {
    font-size: 0.9rem;
    text-align: left;
  }
  
  .benefits-title {
    font-size: 1.1rem;
  }
  
  .benefit-item span {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .overview-container {
    padding: 0 15px;
  }
  
  .fox88bet-overview-section {
    padding: 40px 0;
  }
  
  .overview-title {
    font-size: 1.7rem;
    margin-bottom: 24px;
  }
  
  .overview-description {
    margin-bottom: 30px;
  }
  
  .overview-description p {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
  
  .overview-benefits {
    padding: 20px;
  }
  
  .benefits-title {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  
  .benefit-item {
    margin-bottom: 12px;
    padding: 8px 0;
  }
  
  .benefit-item i {
    font-size: 16px;
    min-width: 16px;
  }
  
  .benefit-item span {
    font-size: 0.85rem;
  }
}

/* Fox88 Platform Section */
.fox88-platform-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.fox88-platform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
  z-index: 1;
}

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

.platform-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.platform-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  order: 1;
}

.platform-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.platform-text {
  max-width: 100%;
  order: 2;
}

.platform-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 32px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.platform-description {
  margin-bottom: 40px;
}

.platform-description p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.platform-description p:last-child {
  margin-bottom: 0;
}

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

.platform-features {
  margin-bottom: 40px;
}

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

.feature-card {
  background: rgba(255, 215, 0, 0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.feature-card:hover {
  background: rgba(255, 215, 0, 0.12);
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.3);
}

.feature-card i {
  font-size: 28px;
  color: #ffd700;
  margin-bottom: 12px;
  display: block;
}

.feature-card h4 {
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 8px;
  font-weight: 700;
}

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

.platform-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design for Platform Section */
@media (max-width: 1024px) {
  .platform-content {
    gap: 40px;
  }
  
  .platform-title {
    font-size: 2.2rem;
  }
  
  .platform-description p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .fox88-platform-section {
    padding: 60px 0;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .platform-image {
    order: 1;
  }
  
  .platform-text {
    order: 2;
    text-align: center;
  }
  
  .platform-title {
    font-size: 2rem;
  }
  
  .platform-description {
    text-align: left;
  }
  
  .platform-description p {
    font-size: 0.9rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .platform-cta {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .platform-container {
    padding: 0 15px;
  }
  
  .fox88-platform-section {
    padding: 40px 0;
  }
  
  .platform-title {
    font-size: 1.7rem;
    margin-bottom: 24px;
  }
  
  .platform-description {
    margin-bottom: 30px;
  }
  
  .platform-description p {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
  
  .feature-card {
    padding: 16px;
  }
  
  .feature-card i {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .feature-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .feature-card p {
    font-size: 0.85rem;
  }
  
  .platform-cta {
    flex-direction: column;
    gap: 12px;
  }
  
  .platform-cta .btn {
    width: 100%;
  }
}

/* Fox888bet Security Section */
.fox888bet-security-section {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.fox888bet-security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

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

.security-text {
  max-width: 100%;
}

.security-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 32px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.security-description {
  margin-bottom: 40px;
}

.security-description p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.security-description p:last-child {
  margin-bottom: 0;
}

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

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

.security-description a:hover {
  color: #ffed4a;
  text-decoration: none;
}

.security-highlights {
  background: rgba(255, 215, 0, 0.05);
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid #ffd700;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.highlight-item:last-child {
  margin-bottom: 0;
}

.highlight-item:hover {
  transform: translateX(8px);
}

.highlight-number {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  min-width: 32px;
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.highlight-content h4 {
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
}

.security-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
}

.security-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.security-img:hover {
  transform: scale(1.02) rotate(1deg);
}

.security-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.security-feature {
  background: rgba(255, 215, 0, 0.08);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.security-feature:hover {
  background: rgba(255, 215, 0, 0.12);
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.3);
}

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

.feature-info h5 {
  font-size: 0.9rem;
  color: #ffd700;
  margin: 0 0 4px 0;
  font-weight: 700;
}

.feature-info p {
  font-size: 0.8rem;
  color: #cccccc;
  margin: 0;
  line-height: 1.3;
}

/* Responsive Design for Security Section */
@media (max-width: 1024px) {
  .security-content {
    gap: 40px;
  }
  
  .security-title {
    font-size: 2.2rem;
  }
  
  .security-description p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .fox888bet-security-section {
    padding: 60px 0;
  }
  
  .security-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .security-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .security-description p {
    font-size: 0.9rem;
    text-align: left;
  }
  
  .security-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .security-container {
    padding: 0 15px;
  }
  
  .fox888bet-security-section {
    padding: 40px 0;
  }
  
  .security-title {
    font-size: 1.7rem;
    margin-bottom: 24px;
  }
  
  .security-description {
    margin-bottom: 30px;
  }
  
  .security-description p {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
  
  .security-highlights {
    padding: 20px;
  }
  
  .highlight-item {
    margin-bottom: 16px;
    gap: 12px;
  }
  
  .highlight-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
    min-width: 28px;
  }
  
  .highlight-content h4 {
    font-size: 0.9rem;
  }
  
  .security-image {
    gap: 20px;
  }
  
  .security-feature {
    padding: 12px;
    gap: 8px;
  }
  
  .security-feature i {
    font-size: 20px;
    min-width: 20px;
  }
  
  .feature-info h5 {
    font-size: 0.85rem;
  }
  
  .feature-info p {
    font-size: 0.75rem;
  }
}

/* Fox88bet Website Section */
.fox88bet-website-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.fox88bet-website-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
  z-index: 1;
}

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

.website-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.website-text {
  max-width: 100%;
}

.website-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 32px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.website-description {
  margin-bottom: 40px;
}

.website-description p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.website-description p:last-child {
  margin-bottom: 0;
}

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

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

.website-description a:hover {
  color: #ffed4a;
  text-decoration: none;
}

.website-services {
  background: rgba(255, 215, 0, 0.05);
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid #ffd700;
}

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

.service-card {
  background: rgba(255, 215, 0, 0.08);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.service-card:hover {
  background: rgba(255, 215, 0, 0.12);
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.3);
}

.service-card i {
  font-size: 24px;
  color: #ffd700;
  margin-bottom: 8px;
  display: block;
}

.service-card h4 {
  font-size: 0.95rem;
  color: #ffd700;
  margin-bottom: 4px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.8rem;
  color: #cccccc;
  line-height: 1.3;
  margin: 0;
}

.website-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
}

.website-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.website-img:hover {
  transform: scale(1.02) rotate(-1deg);
}

.payment-methods {
  background: rgba(255, 215, 0, 0.05);
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.payment-title {
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 700;
}

.payment-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.payment-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.payment-icon:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: translateY(-2px);
}

.payment-icon i {
  font-size: 20px;
  color: #ffd700;
}

.payment-icon span {
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  width: 100%;
}

.cta-buttons .btn {
  flex: 1;
  justify-content: center;
}

/* Responsive Design for Website Section */
@media (max-width: 1024px) {
  .website-content {
    gap: 40px;
  }
  
  .website-title {
    font-size: 2.2rem;
  }
  
  .website-description p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .fox88bet-website-section {
    padding: 60px 0;
  }
  
  .website-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .website-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .website-description p {
    font-size: 0.9rem;
    text-align: left;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .payment-icons {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  
  .payment-icon {
    padding: 8px;
  }
  
  .payment-icon span {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .website-container {
    padding: 0 15px;
  }
  
  .fox88bet-website-section {
    padding: 40px 0;
  }
  
  .website-title {
    font-size: 1.7rem;
    margin-bottom: 24px;
  }
  
  .website-description {
    margin-bottom: 30px;
  }
  
  .website-description p {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
  
  .website-services {
    padding: 20px;
  }
  
  .service-card {
    padding: 12px;
  }
  
  .service-card i {
    font-size: 20px;
    margin-bottom: 6px;
  }
  
  .service-card h4 {
    font-size: 0.85rem;
    margin-bottom: 3px;
  }
  
  .service-card p {
    font-size: 0.75rem;
  }
  
  .website-image {
    gap: 20px;
  }
  
  .payment-methods {
    padding: 16px;
  }
  
  .payment-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .payment-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .payment-icon {
    padding: 8px;
  }
  
  .payment-icon i {
    font-size: 16px;
  }
  
  .payment-icon span {
    font-size: 0.75rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

/* Fox88b Platform Section */
.fox88b-platform-section {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.fox88b-platform-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.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
  z-index: 1;
}

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

.fox88b-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.fox88b-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  order: 1;
}

.fox88b-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.fox88b-img:hover {
  transform: scale(1.02) rotate(1deg);
}

.fox88b-text {
  max-width: 100%;
  order: 2;
}

.fox88b-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 32px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.fox88b-description {
  margin-bottom: 40px;
}

.fox88b-description p {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.fox88b-description p:last-child {
  margin-bottom: 0;
}

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

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

.fox88b-description a:hover {
  color: #ffed4a;
  text-decoration: none;
}

.fox88b-features {
  margin-bottom: 40px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid #ffd700;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.feature-item:hover {
  background: rgba(255, 215, 0, 0.12);
  transform: translateX(10px);
  border-color: rgba(255, 215, 0, 0.3);
}

.feature-item i {
  color: #ffd700;
  font-size: 24px;
  min-width: 24px;
  margin-top: 2px;
}

.feature-content h4 {
  font-size: 1.1rem;
  color: #ffd700;
  margin: 0 0 6px 0;
  font-weight: 700;
  line-height: 1.3;
}

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

.fox88b-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design for Fox88b Section */
@media (max-width: 1024px) {
  .fox88b-content {
    gap: 40px;
  }
  
  .fox88b-title {
    font-size: 2.2rem;
  }
  
  .fox88b-description p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .fox88b-platform-section {
    padding: 60px 0;
  }
  
  .fox88b-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .fox88b-image {
    order: 1;
  }
  
  .fox88b-text {
    order: 2;
    text-align: center;
  }
  
  .fox88b-title {
    font-size: 2rem;
  }
  
  .fox88b-description {
    text-align: left;
  }
  
  .fox88b-description p {
    font-size: 0.9rem;
  }
  
  .fox88b-cta {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .fox88b-container {
    padding: 0 15px;
  }
  
  .fox88b-platform-section {
    padding: 40px 0;
  }
  
  .fox88b-title {
    font-size: 1.7rem;
    margin-bottom: 24px;
  }
  
  .fox88b-description {
    margin-bottom: 30px;
  }
  
  .fox88b-description p {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
  
  .fox88b-features {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .feature-list {
    gap: 16px;
  }
  
  .feature-item {
    padding: 12px;
    gap: 12px;
  }
  
  .feature-item i {
    font-size: 20px;
    min-width: 20px;
  }
  
  .feature-content h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  
  .feature-content p {
    font-size: 0.8rem;
  }
  
  .fox88b-cta {
    flex-direction: column;
    gap: 12px;
  }
  
  .fox88b-cta .btn {
    width: 100%;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  padding: 60px 0 20px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

/* Footer Sections */
.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-about {
  max-width: 100%;
}

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

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

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

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item i {
  color: #ffd700;
  font-size: 1rem;
  min-width: 16px;
}

.contact-item a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ffd700;
}

/* Footer Titles */
.footer-title {
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Prompt', Arial, sans-serif;
}

/* Footer Navigation */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav li {
  padding: 0;
}

.footer-nav a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 4px 0;
  position: relative;
  display: inline-block;
}

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

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

.footer-nav a:hover::after {
  width: 100%;
}

/* Footer Social */
.footer-social {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.social-title {
  color: #ffd700;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Prompt', Arial, sans-serif;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  color: #ffd700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

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

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

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

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

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

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

.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cccccc;
  font-size: 0.8rem;
}

.security-badge i {
  color: #ffd700;
  font-size: 0.9rem;
}

.footer-disclaimer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
  color: #999999;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
  }
  
  .footer-legal {
    grid-column: span 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .footer-legal .footer-title {
    grid-column: span 3;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .footer-legal .footer-nav {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-about {
    grid-column: span 2;
    text-align: center;
  }
  
  .footer-legal {
    grid-column: span 2;
    display: block;
  }
  
  .footer-legal .footer-title {
    text-align: center;
  }
  
  .footer-legal .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-security {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer {
    padding: 30px 0 15px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .footer-about {
    grid-column: span 1;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .footer-contact {
    align-items: center;
    gap: 10px;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .footer-legal .footer-nav {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    gap: 12px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .footer-security {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .footer-disclaimer p {
    font-size: 0.75rem;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 215, 0, 0.2);
  min-height: 60px;
  gap: 4px;
}

.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, 215, 0, 0.1), transparent);
  transition: left 0.3s ease;
}

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

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

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

/* Individual button styles */
.sticky-btn-login {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(0, 86, 179, 0.8) 100%);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, rgba(0, 123, 255, 1) 0%, rgba(0, 86, 179, 1) 100%);
  transform: translateY(-2px);
  color: #ffffff;
}

.sticky-btn-register {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.8) 0%, rgba(32, 134, 55, 0.8) 100%);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, rgba(40, 167, 69, 1) 0%, rgba(32, 134, 55, 1) 100%);
  transform: translateY(-2px);
  color: #ffffff;
}

.sticky-btn-bonus {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 237, 74, 0.9) 100%);
  color: #000;
  font-weight: 700;
}

.sticky-btn-bonus:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 1) 0%, rgba(255, 237, 74, 1) 100%);
  transform: translateY(-2px);
  color: #000;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

.sticky-btn-bonus i,
.sticky-btn-bonus .sticky-btn-text {
  color: #000;
}

/* Animation effects */
.sticky-btn:active {
  transform: translateY(1px);
}

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

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

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

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 4px 0;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    min-height: 52px;
    gap: 2px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .sticky-btn-text {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    padding: 6px 2px;
    min-height: 48px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .sticky-btn-text {
    font-size: 0.65rem;
    line-height: 1;
  }
}

/* Ensure sticky buttons don't interfere with content */
body {
  padding-bottom: 60px;
}

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

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

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

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

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

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

.login-card {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.login-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 215, 0, 0.3);
}

/* Login Header */
.login-header {
  text-align: center;
  margin-bottom: 32px;
}

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

.login-logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.login-title {
  font-family: 'Prompt', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0 0 8px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* Error Message */
.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ff6b6b;
  font-size: 0.9rem;
  animation: slideDown 0.3s ease;
}

.error-message i {
  font-size: 1rem;
  color: #ff6b6b;
}

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

/* Form Styles */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-label {
  color: #ffd700;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

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

.input-icon {
  position: absolute;
  left: 12px;
  color: #ffd700;
  font-size: 0.9rem;
  z-index: 2;
}

.input-field {
  width: 100%;
  padding: 12px 16px 12px 40px;
  background: rgba(45, 45, 45, 0.8);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.input-field::placeholder {
  color: #999999;
}

.input-field:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
  background: rgba(45, 45, 45, 0.9);
}

.input-field:valid {
  border-color: rgba(40, 167, 69, 0.5);
}

.input-field:invalid:not(:focus):not(:placeholder-shown) {
  border-color: rgba(220, 53, 69, 0.5);
}

.password-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #cccccc;
  cursor: pointer;
  padding: 4px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  z-index: 2;
}

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

.input-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  padding-left: 4px;
  min-height: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* Buttons */
.login-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #000;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.login-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

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

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

.loading-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.register-btn {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.register-btn:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Login Footer */
.login-footer {
  margin-top: 24px;
  text-align: center;
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #cccccc;
  font-size: 0.8rem;
  padding: 8px 12px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 70px 15px 15px 15px;
  }
  
  .login-card {
    padding: 24px;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 60px 10px 10px 10px;
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-card {
    padding: 20px;
  }
  
  .login-header {
    margin-bottom: 24px;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .input-field {
    padding: 10px 14px 10px 36px;
  }
  
  .login-btn {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

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

.register-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.1) 0%, transparent 50%),
              radial-gradient(circle at 30% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

.register-card {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.register-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 215, 0, 0.3);
}

/* Register Header */
.register-header {
  text-align: center;
  margin-bottom: 32px;
}

.logo-container {
  margin-bottom: 20px;
}

.register-logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.register-title {
  font-family: 'Prompt', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0 0 8px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* Messages */
.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ff6b6b;
  font-size: 0.9rem;
  animation: slideDown 0.3s ease;
}

.error-message i {
  font-size: 1rem;
  color: #ff6b6b;
}

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

.success-message i {
  font-size: 1rem;
  color: #28a745;
}

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

/* Form Styles */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-label {
  color: #ffd700;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

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

.input-icon {
  position: absolute;
  left: 12px;
  color: #ffd700;
  font-size: 0.9rem;
  z-index: 2;
}

.input-field {
  width: 100%;
  padding: 14px 16px 14px 40px;
  background: rgba(45, 45, 45, 0.8);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.input-field::placeholder {
  color: #999999;
}

.input-field:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
  background: rgba(45, 45, 45, 0.9);
}

.input-field:valid {
  border-color: rgba(40, 167, 69, 0.5);
}

.input-field:invalid:not(:focus):not(:placeholder-shown) {
  border-color: rgba(220, 53, 69, 0.5);
}

.input-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  padding-left: 4px;
  min-height: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* Buttons */
.register-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #000;
  border: none;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.register-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

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

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

.loading-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.login-btn {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.login-btn:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Register Footer */
.register-footer {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.terms-info,
.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #cccccc;
  font-size: 0.8rem;
  padding: 8px 12px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
}

.terms-info i,
.security-info i {
  color: #ffd700;
  font-size: 0.9rem;
  min-width: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 70px 15px 15px 15px;
  }
  
  .register-card {
    padding: 24px;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 60px 10px 10px 10px;
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-card {
    padding: 20px;
  }
  
  .register-header {
    margin-bottom: 24px;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .input-field {
    padding: 12px 14px 12px 36px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .register-footer {
    margin-top: 20px;
  }
  
  .terms-info,
  .security-info {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
  padding: 120px 0 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-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.15) 0%, transparent 70%);
  z-index: 1;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Prompt', Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  margin: 0;
}

.hero-description {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  max-width: 600px;
}

.hero-cta-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #000;
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.hero-cta-btn:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5);
  color: #000;
  text-decoration: none;
}

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

/* Promotion Sections */
.promotion-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
}

.promotion-section:nth-child(odd) {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 50%, #2d2d2d 100%);
}

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

.promo-card {
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
  z-index: 1;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.3);
}

.promo-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.promo-icon {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
  flex-shrink: 0;
}

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

.promo-title {
  font-family: 'Prompt', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

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

.promo-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.promo-item:hover {
  transform: translateX(8px);
}

.promo-item i {
  color: #28a745;
  font-size: 1rem;
  margin-top: 2px;
  min-width: 16px;
}

.promo-item span {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.5;
}

.promo-cta-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #000;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.3);
  border: none;
  cursor: pointer;
}

.promo-cta-btn:hover {
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  color: #000;
  text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-cta-btn {
    font-size: 1.1rem;
    padding: 16px 28px;
  }
  
  .promo-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-cta-btn {
    font-size: 1rem;
    padding: 14px 24px;
  }
  
  .promotion-section {
    padding: 30px 0;
  }
  
  .promo-card {
    padding: 24px;
  }
  
  .promo-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .promo-icon {
    width: 50px;
    height: 50px;
  }
  
  .promo-icon i {
    font-size: 1.3rem;
  }
  
  .promo-title {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .promo-item span {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promo-container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 80px 0 50px 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .hero-cta-btn {
    font-size: 0.95rem;
    padding: 12px 20px;
  }
  
  .promotion-section {
    padding: 25px 0;
  }
  
  .promo-card {
    padding: 20px;
  }
  
  .promo-header {
    margin-bottom: 20px;
  }
  
  .promo-icon {
    width: 45px;
    height: 45px;
  }
  
  .promo-icon i {
    font-size: 1.1rem;
  }
  
  .promo-title {
    font-size: 1.3rem;
  }
  
  .promo-list {
    margin-bottom: 20px;
    gap: 10px;
  }
  
  .promo-item {
    padding: 6px 0;
  }
  
  .promo-item span {
    font-size: 0.9rem;
  }
  
  .promo-cta-btn {
    font-size: 0.9rem;
    padding: 12px 20px;
    width: 100%;
    justify-content: center;
  }
}