/* 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, #0f0f23 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;
}

p {
  margin-bottom: 1rem;
}

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

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

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

.btn-primary:hover {
  background: linear-gradient(135deg, #e55a2b 0%, #e8851a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Hero Section */
.hero-section {
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.hero-text {
  animation: fadeInLeft 0.8s ease-out;
}

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

.hero-description {
  font-size: 1.2rem;
  color: #b8b8b8;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 2.5rem;
  justify-content: center;
}

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

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

.feature-item i {
  color: #ff6b35;
  font-size: 16px;
}

.feature-item span {
  font-size: 14px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.hero-img {
  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);
}

.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  padding: 10px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  animation: pulse 2s infinite;
}

.floating-badge i {
  color: #fff;
  font-size: 16px;
}

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

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .btn {
    min-width: 140px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 10px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-features {
    gap: 10px;
  }

  .feature-item {
    font-size: 12px;
    padding: 8px 12px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .floating-badge {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 12px;
  }
}

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

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

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

.header-logo a {
  text-decoration: none;
}

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

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

.header-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  margin: 0 40px;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 25px;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: -1;
}

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

.nav-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.nav-link i {
  font-size: 14px;
  color: #ff6b35;
}

.nav-link:hover i {
  color: #ffffff;
}

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

.cta-btn {
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
  padding: 0;
}

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  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: 300px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  transition: all 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, 255, 255, 0.1);
}

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

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

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

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

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

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

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

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: #ff6b35;
  padding-left: 25px;
}

.mobile-nav-link i {
  font-size: 16px;
  color: #ff6b35;
  width: 20px;
}

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

.mobile-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }

  .nav-list {
    gap: 20px;
  }

  .header-nav {
    margin: 0 20px;
  }
}

@media (max-width: 950px) {
  .header-nav,
  .header-cta {
    display: none;
  }

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

  .header-container {
    height: 60px;
    padding: 0 15px;
  }

  .logo-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .header-nav,
  .header-cta {
    display: none;
  }

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

  .header-container {
    height: 60px;
    padding: 0 15px;
  }

  .logo-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 10px;
    height: 55px;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .mobile-menu {
    width: 280px;
  }
}

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

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

/* About Section */
.about-section {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.about-image {
  position: relative;
  animation: fadeInLeft 0.8s ease-out;
}

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

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

.about-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 10px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.about-badge i {
  color: #fff;
  font-size: 16px;
}

.about-text {
  animation: fadeInRight 0.8s ease-out;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.3;
}

.about-description {
  margin-bottom: 2rem;
}

.about-description p {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

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

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 2rem;
}

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

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 20px;
  color: #ffffff;
}

.feature-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.feature-info p {
  font-size: 0.9rem;
  color: #b8b8b8;
  margin: 0;
}

.about-highlights {
  margin-bottom: 2.5rem;
}

.about-highlights p {
  font-size: 1.05rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-highlights strong {
  color: #667eea;
  font-weight: 600;
}

.about-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
  .about-content {
    gap: 40px;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 15px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-description p {
    font-size: 1rem;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-card {
    text-align: left;
  }

  .about-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 10px;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-description p {
    font-size: 0.95rem;
  }

  .feature-card {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-icon i {
    font-size: 18px;
  }

  .about-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .about-badge {
    top: 10px;
    left: 10px;
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Slots Section */
.slots-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(102, 126, 234, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.slots-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.slots-text {
  animation: fadeInLeft 0.8s ease-out;
}

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

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

.slots-description p {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.slots-description strong {
  color: #ff6b35;
  font-weight: 600;
}

.game-providers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 2.5rem;
}

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

.provider-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.provider-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.provider-icon i {
  font-size: 20px;
  color: #ffffff;
}

.provider-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.provider-info p {
  font-size: 0.9rem;
  color: #b8b8b8;
  margin: 0;
}

.slots-techniques {
  margin-bottom: 2.5rem;
}

.slots-techniques h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

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

.technique-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
}

.technique-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(5px);
}

.technique-number {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  flex-shrink: 0;
}

.technique-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.technique-content p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
}

.slots-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.slots-image {
  position: relative;
  animation: fadeInRight 0.8s ease-out;
}

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

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

.slots-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  padding: 10px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  animation: pulse 2s infinite;
}

.slots-badge i {
  color: #fff;
  font-size: 16px;
}

.tips-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.tips-section h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 2rem;
}

.tip-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
}

.tip-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tip-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.tip-icon i {
  font-size: 24px;
  color: #ffffff;
}

.tip-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.tip-card p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
}

.tip-card strong {
  color: #ff6b35;
  font-weight: 600;
}

.external-link {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.external-link p {
  font-size: 1.1rem;
  color: #b8b8b8;
  margin: 0;
}

.external-link a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.external-link a:hover {
  color: #ff6b35;
  text-decoration: underline;
}

/* Responsive Design for Slots Section */
@media (max-width: 1024px) {
  .slots-content {
    gap: 40px;
  }

  .slots-title {
    font-size: 2.2rem;
  }

  .game-providers {
    grid-template-columns: 1fr;
  }

  .tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .slots-section {
    padding: 60px 15px;
  }

  .slots-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .slots-title {
    font-size: 2rem;
    text-align: center;
  }

  .slots-description p {
    font-size: 1rem;
  }

  .game-providers {
    gap: 15px;
  }

  .technique-item {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .slots-actions {
    justify-content: center;
  }

  .tips-section h3 {
    font-size: 1.8rem;
  }

  .tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .slots-section {
    padding: 40px 10px;
  }

  .slots-title {
    font-size: 1.8rem;
  }

  .slots-description p {
    font-size: 0.95rem;
  }

  .provider-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .provider-icon {
    width: 40px;
    height: 40px;
  }

  .provider-icon i {
    font-size: 18px;
  }

  .technique-item {
    padding: 15px;
  }

  .technique-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .slots-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .tip-card {
    padding: 20px;
  }

  .tip-icon {
    width: 50px;
    height: 50px;
  }

  .tip-icon i {
    font-size: 20px;
  }

  .slots-badge {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* System Section */
.system-section {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.system-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(102, 126, 234, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.system-text {
  animation: fadeInLeft 0.8s ease-out;
}

.system-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

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

.system-description p {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.system-description strong {
  color: #667eea;
  font-weight: 600;
}

.system-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 2.5rem;
}

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

.feature-highlight:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-highlight .feature-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-highlight .feature-icon i {
  font-size: 20px;
  color: #ffffff;
}

.feature-highlight .feature-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.feature-highlight .feature-info p {
  font-size: 0.9rem;
  color: #b8b8b8;
  margin: 0;
}

.deposit-withdraw-info {
  margin-bottom: 2rem;
}

.deposit-withdraw-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.deposit-withdraw-info p {
  font-size: 1.05rem;
  color: #b8b8b8;
  line-height: 1.7;
}

.deposit-withdraw-info strong {
  color: #ff6b35;
  font-weight: 600;
}

.transaction-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin-bottom: 2.5rem;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid #ff6b35;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(5px);
}

.highlight-item i {
  color: #ff6b35;
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.highlight-item span {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
}

.system-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.system-image {
  position: relative;
  animation: fadeInRight 0.8s ease-out;
}

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

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

.system-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 10px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  animation: pulse 2s infinite;
}

.system-badge i {
  color: #fff;
  font-size: 16px;
}

.additional-info {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 3rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-icon {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.info-icon i {
  font-size: 24px;
  color: #ffffff;
}

.info-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
}

.info-card strong {
  color: #ff6b35;
  font-weight: 600;
}

.registration-info {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.registration-info h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

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

.step-content strong {
  color: #667eea;
  font-weight: 600;
}

/* Responsive Design for System Section */
@media (max-width: 1024px) {
  .system-content {
    gap: 40px;
  }

  .system-title {
    font-size: 2.2rem;
  }

  .transaction-highlights {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .steps-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .system-section {
    padding: 60px 15px;
  }

  .system-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .system-title {
    font-size: 2rem;
    text-align: center;
  }

  .system-description p {
    font-size: 1rem;
  }

  .system-features {
    gap: 15px;
  }

  .system-actions {
    justify-content: center;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .registration-info {
    padding: 25px;
  }

  .registration-info h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .system-section {
    padding: 40px 10px;
  }

  .system-title {
    font-size: 1.8rem;
  }

  .system-description p {
    font-size: 0.95rem;
  }

  .feature-highlight {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .feature-highlight .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-highlight .feature-icon i {
    font-size: 18px;
  }

  .highlight-item {
    padding: 12px 15px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .highlight-item span {
    font-size: 0.9rem;
  }

  .system-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .info-card {
    padding: 20px;
  }

  .info-icon {
    width: 50px;
    height: 50px;
  }

  .info-icon i {
    font-size: 20px;
  }

  .registration-info {
    padding: 20px;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .system-badge {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Access Section */
.access-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.access-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 10%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 90%, rgba(102, 126, 234, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.access-image {
  position: relative;
  animation: fadeInLeft 0.8s ease-out;
}

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

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

.access-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  padding: 10px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.access-badge i {
  color: #fff;
  font-size: 16px;
}

.access-text {
  animation: fadeInRight 0.8s ease-out;
}

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

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

.access-description p {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.access-description strong {
  color: #ff6b35;
  font-weight: 600;
}

.link-info {
  margin-bottom: 2.5rem;
}

.link-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.link-info p {
  font-size: 1.05rem;
  color: #b8b8b8;
  line-height: 1.7;
}

.link-info strong {
  color: #667eea;
  font-weight: 600;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 2.5rem;
}

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

.security-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.security-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-icon i {
  font-size: 20px;
  color: #ffffff;
}

.security-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.security-info p {
  font-size: 0.9rem;
  color: #b8b8b8;
  margin: 0;
}

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

.registration-steps h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

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

.step-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(5px);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.step-num {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  flex-shrink: 0;
}

.step-header h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.step-card p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
  padding-left: 50px;
}

.step-card strong {
  color: #ff6b35;
  font-weight: 600;
}

.access-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.benefits-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.benefits-section h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 2.5rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.benefit-icon i {
  font-size: 24px;
  color: #ffffff;
}

.benefit-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
}

.benefit-card a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
}

.benefit-card a:hover {
  color: #667eea;
  text-decoration: underline;
}

.additional-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
}

.benefit-highlight {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.benefit-highlight:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.highlight-icon {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 24px;
  color: #ffffff;
}

.highlight-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.highlight-content p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin: 0;
}

.highlight-content a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.highlight-content a:hover {
  color: #ff6b35;
  text-decoration: underline;
}

/* Responsive Design for Access Section */
@media (max-width: 1024px) {
  .access-content {
    gap: 40px;
  }

  .access-title {
    font-size: 2.2rem;
  }

  .security-features {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .additional-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .access-section {
    padding: 60px 15px;
  }

  .access-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .access-title {
    font-size: 2rem;
    text-align: center;
  }

  .access-description p {
    font-size: 1rem;
  }

  .security-features {
    gap: 15px;
  }

  .step-card p {
    padding-left: 0;
    margin-top: 10px;
  }

  .access-actions {
    justify-content: center;
  }

  .benefits-section h3 {
    font-size: 1.8rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .access-section {
    padding: 40px 10px;
  }

  .access-title {
    font-size: 1.8rem;
  }

  .access-description p {
    font-size: 0.95rem;
  }

  .security-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .security-icon {
    width: 40px;
    height: 40px;
  }

  .security-icon i {
    font-size: 18px;
  }

  .step-card {
    padding: 20px;
  }

  .step-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .step-num {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .access-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .benefit-card {
    padding: 20px;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
  }

  .benefit-icon i {
    font-size: 20px;
  }

  .benefit-highlight {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .highlight-icon {
    width: 50px;
    height: 50px;
  }

  .highlight-icon i {
    font-size: 20px;
  }

  .access-badge {
    top: 10px;
    left: 10px;
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Promotions Section */
.promotions-section {
  padding: 80px 20px;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.promotions-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.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(102, 126, 234, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.promotions-text {
  animation: fadeInLeft 0.8s ease-out;
}

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

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

.promotions-description p {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.promotions-description strong {
  color: #ff6b35;
  font-weight: 600;
}

.review-section {
  margin-bottom: 2.5rem;
}

.review-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.review-section p {
  font-size: 1.05rem;
  color: #b8b8b8;
  line-height: 1.7;
}

.review-section strong {
  color: #667eea;
  font-weight: 600;
}

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

.promo-item {
  display: flex;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.promo-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(5px);
}

.promo-number {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  flex-shrink: 0;
}

.promo-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.credit-section {
  margin-bottom: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.credit-section p {
  font-size: 1.05rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin: 0;
}

.credit-section a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
}

.credit-section a:hover {
  color: #667eea;
  text-decoration: underline;
}

.promotions-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.promotions-image {
  position: relative;
  animation: fadeInRight 0.8s ease-out;
}

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

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

.promotions-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  padding: 10px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  animation: pulse 2s infinite;
}

.promotions-badge i {
  color: #fff;
  font-size: 16px;
}

.additional-promotions {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.additional-promotions h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}

.promo-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
  margin-bottom: 2.5rem;
}

.feature-group {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-group:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-group h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 15px;
}

.feature-group p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin: 0;
}

.tournaments-section,
.referral-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.tournaments-section h4,
.referral-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 15px;
}

.tournaments-section p,
.referral-section p {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin: 0;
}

.tournaments-section strong,
.referral-section strong {
  color: #ff6b35;
  font-weight: 600;
}

.vip-tiers {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-tiers h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 20px;
  text-align: center;
}

.vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
}

.vip-tier {
  text-align: center;
  transition: transform 0.3s ease;
}

.vip-tier:hover {
  transform: scale(1.05);
}

.tier-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  transition: all 0.3s ease;
}

.tier-icon.bronze {
  background: linear-gradient(135deg, #cd7f32 0%, #b8860b 100%);
}

.tier-icon.silver {
  background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
}

.tier-icon.gold {
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
}

.tier-icon.platinum {
  background: linear-gradient(135deg, #e5e4e2 0%, #d3d3d3 100%);
}

.tier-icon.diamond {
  background: linear-gradient(135deg, #b9f2ff 0%, #00bfff 100%);
}

.tier-icon i {
  font-size: 24px;
  color: #ffffff;
}

.vip-tier h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* Responsive Design for Promotions Section */
@media (max-width: 1024px) {
  .promotions-content {
    gap: 40px;
  }

  .promotions-title {
    font-size: 2.2rem;
  }

  .promo-features {
    grid-template-columns: 1fr;
  }

  .vip-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }
}

@media (max-width: 768px) {
  .promotions-section {
    padding: 60px 15px;
  }

  .promotions-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .promotions-title {
    font-size: 2rem;
    text-align: center;
  }

  .promotions-description p {
    font-size: 1rem;
  }

  .promo-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .promotions-actions {
    justify-content: center;
  }

  .additional-promotions h3 {
    font-size: 1.8rem;
  }

  .promo-features {
    gap: 20px;
  }

  .vip-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .promotions-section {
    padding: 40px 10px;
  }

  .promotions-title {
    font-size: 1.8rem;
  }

  .promotions-description p {
    font-size: 0.95rem;
  }

  .promo-item {
    padding: 15px;
  }

  .promo-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .promotions-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .feature-group,
  .tournaments-section,
  .referral-section,
  .vip-tiers {
    padding: 20px;
  }

  .tier-icon {
    width: 50px;
    height: 50px;
  }

  .tier-icon i {
    font-size: 20px;
  }

  .vip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .vip-tier h5 {
    font-size: 0.9rem;
  }

  .promotions-badge {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 12px;
  }
}

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

.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(102, 126, 234, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

.footer-about {
  padding-right: 20px;
}

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

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

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

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

.footer-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-feature i {
  color: #ff6b35;
  font-size: 14px;
  width: 16px;
}

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-nav-item {
  margin-bottom: 12px;
}

.footer-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-nav-link:hover {
  color: #ff6b35;
  padding-left: 8px;
}

.footer-nav-link i {
  color: #667eea;
  font-size: 14px;
  width: 16px;
  transition: color 0.3s ease;
}

.footer-nav-link:hover i {
  color: #ff6b35;
}

.footer-contact-info {
  margin-bottom: 25px;
}

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

.contact-item i {
  color: #667eea;
  font-size: 14px;
  width: 18px;
}

.contact-link {
  color: #b8b8b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #ff6b35;
}

.contact-text {
  color: #b8b8b8;
}

.footer-cta {
  margin-top: 20px;
}

.footer-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 600;
}

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

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-link {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  padding: 5px 10px;
  border-radius: 4px;
}

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

.footer-copyright {
  color: #888;
  font-size: 0.9rem;
}

.footer-copyright p {
  margin: 0;
}

.footer-disclaimer {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 8px;
  padding: 15px;
  margin-top: 10px;
}

.disclaimer-text {
  color: #ff6b35;
  font-size: 0.85rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
}

.disclaimer-text i {
  color: #f7931e;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
  .footer {
    padding: 50px 15px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-about {
    padding-right: 0;
  }

  .footer-legal-links {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 15px 20px;
    margin-top: 60px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-features {
    justify-content: center;
    align-items: center;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom-content {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 10px 15px;
    margin-top: 40px;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-logo-text {
    font-size: 1.8rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .footer-nav-link,
  .contact-item {
    font-size: 0.85rem;
  }

  .footer-cta-btn {
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

  .disclaimer-text {
    font-size: 0.8rem;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .legal-link {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}

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

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

.sticky-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  z-index: -1;
}

.sticky-btn-login {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.sticky-btn-login::before {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.sticky-btn-register::before {
  background: linear-gradient(135deg, #e55a2b 0%, #e8851a 100%);
}

.sticky-btn-credit {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  animation: pulseGlow 2s infinite;
}

.sticky-btn-credit::before {
  background: linear-gradient(135deg, #23923d 0%, #1ca085 100%);
}

.sticky-btn:hover::before {
  left: 0;
}

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

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

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

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

.sticky-btn span {
  font-size: 0.8rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.3);
  }

  50% {
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.6), 0 0 30px rgba(40, 167, 69, 0.4);
  }
}

/* Responsive Design for Sticky Buttons */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }

  .sticky-btn {
    padding: 10px 6px;
    min-height: 55px;
    font-size: 0.8rem;
  }

  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 3px;
  }

  .sticky-btn span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .sticky-buttons {
    background: rgba(15, 15, 35, 0.98);
  }

  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
    font-size: 0.75rem;
  }

  .sticky-btn i {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }

  .sticky-btn span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

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

  .sticky-btn i {
    font-size: 0.85rem;
  }
}

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

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.login-logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

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

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

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

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

.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: none;
  align-items: center;
  gap: 10px;
  animation: slideDown 0.3s ease-out;
}

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

.error-message i {
  color: #dc3545;
  font-size: 16px;
}

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

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

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

.form-label {
  display: block;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

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

.input-icon {
  position: absolute;
  left: 16px;
  color: #667eea;
  font-size: 16px;
  z-index: 2;
}

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

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

.form-input:focus {
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

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

.password-toggle {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.3s ease;
  z-index: 2;
}

.password-toggle:hover {
  color: #667eea;
}

.field-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.checkbox-input {
  display: none;
}

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

.checkbox-input:checked+.checkbox-custom {
  background: #667eea;
  border-color: #667eea;
}

.checkbox-input:checked+.checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label {
  color: #b8b8b8;
  font-size: 0.9rem;
}

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

.forgot-password:hover {
  color: #ff6b35;
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

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

.login-btn .btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.login-btn.loading .btn-loader {
  opacity: 1;
}

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

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

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

.divider-text {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 15px;
  color: #888;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.register-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 20px;
}

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

.security-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #28a745;
  font-size: 0.85rem;
  font-weight: 500;
}

.security-badge i {
  font-size: 14px;
}

.login-help {
  color: #b8b8b8;
  font-size: 0.9rem;
  margin: 0;
}

.help-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.help-link:hover {
  color: #ff6b35;
  text-decoration: underline;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 15px;
  }

  .login-card {
    padding: 30px;
    border-radius: 16px;
  }

  .logo-img {
    width: 70px;
    height: 70px;
  }

  .login-title {
    font-size: 1.8rem;
  }

  .login-subtitle {
    font-size: 0.95rem;
  }

  .form-input {
    padding: 12px 16px 12px 44px;
  }

  .security-badges {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 20px 10px;
  }

  .login-card {
    padding: 25px;
    border-radius: 12px;
  }

  .logo-img {
    width: 60px;
    height: 60px;
  }

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

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .login-btn {
    padding: 14px;
    font-size: 1rem;
  }

  .register-btn {
    padding: 12px;
    font-size: 0.95rem;
  }
}

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

.register-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.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.register-logo {
  text-align: center;
  margin-bottom: 30px;
}

.logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

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

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

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

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

.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: none;
  align-items: center;
  gap: 10px;
  animation: slideDown 0.3s ease-out;
}

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

.success-message i {
  color: #28a745;
  font-size: 16px;
}

.success-text {
  color: #28a745;
  font-size: 0.9rem;
  font-weight: 500;
}

.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: none;
  align-items: center;
  gap: 10px;
  animation: slideDown 0.3s ease-out;
}

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

.error-message i {
  color: #dc3545;
  font-size: 16px;
}

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

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

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

.form-label {
  display: block;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

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

.input-icon {
  position: absolute;
  left: 16px;
  color: #667eea;
  font-size: 16px;
  z-index: 2;
}

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

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

.form-input:focus {
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

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

.field-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.field-help {
  color: #b8b8b8;
  font-size: 0.8rem;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.field-help i {
  color: #667eea;
  font-size: 12px;
}

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

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.checkbox-input {
  display: none;
}

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

.checkbox-input:checked+.checkbox-custom {
  background: #667eea;
  border-color: #667eea;
}

.checkbox-input:checked+.checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label {
  color: #b8b8b8;
  font-size: 0.9rem;
  line-height: 1.4;
}

.terms-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: #ff6b35;
  text-decoration: underline;
}

.register-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.register-btn .btn-text {
  transition: opacity 0.3s ease;
}

.register-btn .btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.register-btn.loading .btn-loader {
  opacity: 1;
}

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

.register-divider {
  position: relative;
  text-align: center;
  margin: 20px 0;
}

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

.divider-text {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 15px;
  color: #888;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.login-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  margin-bottom: 20px;
}

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.benefit-item i {
  color: #ff6b35;
  font-size: 14px;
}

.register-help {
  color: #b8b8b8;
  font-size: 0.9rem;
  margin: 0;
}

.help-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.help-link:hover {
  color: #ff6b35;
  text-decoration: underline;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 15px;
  }

  .register-card {
    padding: 30px;
    border-radius: 16px;
  }

  .logo-img {
    width: 70px;
    height: 70px;
  }

  .register-title {
    font-size: 1.8rem;
  }

  .register-subtitle {
    font-size: 0.95rem;
  }

  .form-input {
    padding: 12px 16px 12px 44px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 20px 10px;
  }

  .register-card {
    padding: 25px;
    border-radius: 12px;
  }

  .logo-img {
    width: 60px;
    height: 60px;
  }

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

  .checkbox-wrapper {
    gap: 8px;
  }

  .checkbox-label {
    font-size: 0.85rem;
  }

  .register-btn {
    padding: 14px;
    font-size: 1rem;
  }

  .login-btn {
    padding: 12px;
    font-size: 0.95rem;
  }

  .benefit-item {
    padding: 10px 8px;
    font-size: 0.8rem;
  }

  .benefit-item i {
    font-size: 12px;
  }
}

/* Hero Section */
.hero-section {
  padding: 100px 20px 80px;
  background: linear-gradient(135deg, #0f0f23 0%, #ff6b35 100%);
  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 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  animation: pulse 2s infinite;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Promotion Section */
.promotion-section {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

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

.promotion-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  padding: 10px 20px;
  border-radius: 25px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.deposit-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.birthday-badge {
  background: linear-gradient(135deg, #e83e8c 0%, #fd7e14 100%);
  box-shadow: 0 4px 15px rgba(232, 62, 140, 0.3);
}

.cashback-badge {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.promotion-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.promotion-description {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
}

/* Bonus Highlight */
.bonus-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
}

.bonus-amount {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.bonus-amount i {
  color: #ff6b35;
  font-size: 2rem;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #ff6b35;
}

.currency {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 600;
}

.bonus-label {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Steps List */
.steps-list {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  padding: 15px 20px;
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(5px);
}

.step-number {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.step-item span {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

/* Bonus Calculation */
.bonus-calculation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

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

.calc-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
  line-height: 1;
}

.calc-label {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 500;
  margin-top: 5px;
}

.calc-item.total .calc-number {
  color: #ff6b35;
  font-size: 3rem;
}

.calc-plus,
.calc-equals {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Conditions List */
.conditions-list {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.condition-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 1rem;
  padding: 10px 0;
}

.condition-item i {
  color: #28a745;
  font-size: 16px;
  width: 20px;
  flex-shrink: 0;
}

/* Birthday Bonus */
.birthday-bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(232, 62, 140, 0.1);
  border: 1px solid rgba(232, 62, 140, 0.3);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
}

.birthday-icon {
  background: linear-gradient(135deg, #e83e8c 0%, #fd7e14 100%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(232, 62, 140, 0.3);
}

.birthday-icon i {
  font-size: 2.5rem;
  color: #ffffff;
}

.bonus-amount.special {
  flex-direction: row;
  gap: 5px;
}

.bonus-amount.special .amount {
  color: #e83e8c;
}

/* Requirements List */
.requirements-list {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 1rem;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid #e83e8c;
  transition: all 0.3s ease;
}

.requirement-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.requirement-item i {
  color: #e83e8c;
  font-size: 16px;
  width: 20px;
  flex-shrink: 0;
}

/* Cashback Info */
.cashback-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cashback-percentage {
  text-align: center;
}

.percentage-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.percentage-text {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

.percentage-label {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.cashback-limit {
  text-align: center;
}

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

.limit-amount i {
  color: #28a745;
  font-size: 1.2rem;
}

/* Cashback Features */
.cashback-features {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 1rem;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid #28a745;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.feature-item i {
  color: #28a745;
  font-size: 16px;
  width: 20px;
  flex-shrink: 0;
}

/* Promotion Footer */
.promotion-footer {
  text-align: center;
}

.promotion-cta {
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.promotion-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
  background: linear-gradient(135deg, #e55a2b 0%, #e8851a 100%);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .promotion-card {
    padding: 30px;
  }

  .bonus-calculation {
    gap: 15px;
  }

  .cashback-info {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px 60px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .promotion-section {
    padding: 30px 15px;
  }

  .promotion-card {
    padding: 25px;
    border-radius: 16px;
  }

  .promotion-title {
    font-size: 1.8rem;
  }

  .bonus-calculation {
    flex-direction: column;
    gap: 15px;
  }

  .calc-plus,
  .calc-equals {
    display: none;
  }

  .cashback-info {
    flex-direction: column;
    gap: 20px;
  }

  .birthday-bonus {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 10px 40px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .promotion-section {
    padding: 20px 10px;
  }

  .promotion-card {
    padding: 20px;
    border-radius: 12px;
  }

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

  .promotion-description {
    font-size: 1rem;
  }

  .bonus-highlight,
  .bonus-calculation,
  .birthday-bonus,
  .cashback-info {
    padding: 20px;
  }

  .amount {
    font-size: 2.5rem;
  }

  .calc-number {
    font-size: 2rem;
  }

  .calc-item.total .calc-number {
    font-size: 2.5rem;
  }

  .percentage-circle {
    width: 80px;
    height: 80px;
  }

  .percentage-text {
    font-size: 1.5rem;
  }

  .birthday-icon {
    width: 60px;
    height: 60px;
  }

  .birthday-icon i {
    font-size: 2rem;
  }

  .step-item,
  .condition-item,
  .requirement-item,
  .feature-item {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }

  .promotion-cta {
    padding: 14px 30px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }
}