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

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

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

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

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

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

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

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

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

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

.hero-title .highlight {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.btn i {
  font-size: 1.2rem;
}

.btn-primary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
}

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

.btn-secondary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #ffffff;
}

.btn-secondary:hover {
  background: linear-gradient(45deg, #764ba2, #667eea);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

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

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

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

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

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

.hero-image {
  position: relative;
  animation: fadeInUp 1s ease-out 0.2s both;
  max-width: 500px;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1) saturate(1.1);
}

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

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

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

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

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

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

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

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

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

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

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

  .hero-content {
    gap: 30px;
  }

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

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

@media (max-width: 768px) {
  #hero {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-content {
    gap: 30px;
  }

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

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

  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

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

  .hero-content {
    gap: 25px;
  }

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

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .hero-image {
    max-width: 400px;
  }

  .feature-item {
    padding: 12px 15px;
  }

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(22, 33, 62, 0.95) 100%);
  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;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  z-index: 1001;
}

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

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

.logo-link i {
  font-size: 2rem;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-menu {
  display: flex;
}

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

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

.nav-link:hover::before {
  left: 0;
}

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

.header-cta {
  display: flex;
  align-items: center;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  z-index: 1001;
}

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  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: 320px;
  height: 100%;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.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 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.mobile-logo i {
  font-size: 1.8rem;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-logo span {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -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: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

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

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

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

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

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

.mobile-cta-item {
  border-bottom: none;
  padding: 20px;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
}

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

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

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

  .nav-list {
    gap: 20px;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 8px 12px;
  }

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

@media (max-width: 768px) {

  .nav-menu,
  .header-cta {
    display: none;
  }

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

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

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

  .logo-link i {
    font-size: 1.8rem;
  }

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

  .mobile-menu {
    width: 100%;
  }

  .mobile-menu-header {
    padding: 15px;
  }

  .mobile-nav-link {
    padding: 18px 15px;
    font-size: 1rem;
  }

  .mobile-cta-item {
    padding: 15px;
  }

  .mobile-cta-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* About G2G778 Section */
#about-g2g778 {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  position: relative;
  overflow: hidden;
}

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

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

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

.about-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-title .highlight {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.about-description {
  margin-bottom: 50px;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e0e0e0;
  text-align: justify;
}

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

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

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

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

.feature-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.feature-content i {
  font-size: 1.5rem;
  color: #ffd700;
  flex-shrink: 0;
}

.feature-content span {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.feature-content strong {
  color: #ffffff;
  font-weight: 700;
}

.about-footer p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: justify;
  padding: 25px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.about-footer strong {
  color: #ffd700;
  font-weight: 700;
}

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

.about-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) saturate(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 237, 78, 0.8) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.about-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #000000;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: bounce 2s infinite;
}

.overlay-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.overlay-content p {
  font-size: 1.1rem;
  font-weight: 600;
}

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

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

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

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

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

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

  .feature-content span {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  #about-g2g778 {
    padding: 80px 0;
  }

  .about-container {
    padding: 0 15px;
  }

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

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

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

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

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

  .about-footer p {
    font-size: 0.95rem;
    text-align: left;
  }
}

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

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

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

  .feature-point {
    padding: 15px;
  }

  .feature-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .feature-content i {
    font-size: 1.3rem;
  }

  .feature-content span {
    font-size: 0.9rem;
  }

  .about-footer p {
    font-size: 0.9rem;
    padding: 20px;
  }
}

/* Gaming Experience Section */
#gaming-experience {
  padding: 100px 0;
  background: linear-gradient(135deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

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

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

.gaming-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

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

.gaming-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) saturate(1.1);
  transition: transform 0.3s ease;
}

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

.gaming-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  animation: slideIn 1s ease-out;
}

.gaming-badge i {
  font-size: 1.3rem;
}

.gaming-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gaming-title .highlight {
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.gaming-description {
  margin-bottom: 50px;
}

.gaming-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e0e0e0;
  text-align: justify;
}

.gaming-description strong {
  color: #667eea;
  font-weight: 700;
}

.gaming-features {
  margin-bottom: 50px;
}

.gaming-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.gaming-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.gaming-feature i {
  font-size: 2rem;
  color: #667eea;
  flex-shrink: 0;
  margin-top: 5px;
}

.feature-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
  text-align: justify;
}

.feature-info strong {
  color: #667eea;
  font-weight: 700;
}

.gaming-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.gaming-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.gaming-actions .btn i {
  font-size: 1.2rem;
}

.gaming-actions .btn-primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #ffffff;
}

.gaming-actions .btn-primary:hover {
  background: linear-gradient(45deg, #764ba2, #667eea);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.gaming-actions .btn-secondary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
}

.gaming-actions .btn-secondary:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

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

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

  .gaming-title {
    font-size: 2.4rem;
  }

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

  .feature-info h3 {
    font-size: 1.2rem;
  }

  .feature-info p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  #gaming-experience {
    padding: 80px 0;
  }

  .gaming-container {
    padding: 0 15px;
  }

  .gaming-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .gaming-description p {
    font-size: 0.95rem;
    text-align: left;
  }

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

  .gaming-feature i {
    margin-top: 0;
  }

  .feature-info {
    text-align: center;
  }

  .feature-info p {
    text-align: center;
  }

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

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

  .gaming-title {
    font-size: 1.7rem;
  }

  .gaming-description p {
    font-size: 0.9rem;
  }

  .gaming-feature {
    padding: 20px;
  }

  .gaming-feature i {
    font-size: 1.8rem;
  }

  .feature-info h3 {
    font-size: 1.1rem;
  }

  .feature-info p {
    font-size: 0.9rem;
  }

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

  .gaming-actions .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

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

#baccarat-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 99, 132, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.baccarat-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}

.baccarat-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.baccarat-title .highlight {
  background: linear-gradient(45deg, #ff6384, #ff9f40);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.baccarat-description {
  margin-bottom: 50px;
}

.baccarat-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e0e0e0;
  text-align: justify;
}

.baccarat-description strong {
  color: #ff6384;
  font-weight: 700;
}

.baccarat-description a {
  color: #ff9f40;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.baccarat-description a:hover {
  color: #ffd700;
}

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

.baccarat-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 99, 132, 0.1);
  border-radius: 15px;
  border-left: 4px solid #ff6384;
  transition: all 0.3s ease;
}

.baccarat-feature:hover {
  background: rgba(255, 99, 132, 0.15);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 99, 132, 0.2);
}

.baccarat-feature i {
  font-size: 2rem;
  color: #ff6384;
  flex-shrink: 0;
  margin-top: 5px;
}

.feature-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
  text-align: justify;
}

.feature-content strong {
  color: #ff6384;
  font-weight: 700;
}

.feature-content a {
  color: #ff9f40;
  font-weight: 700;
  text-decoration: underline;
}

.feature-content a:hover {
  color: #ffd700;
}

.baccarat-guide {
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.guide-content {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.guide-content i {
  font-size: 2.5rem;
  color: #ffd700;
  flex-shrink: 0;
  margin-top: 5px;
}

.guide-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.guide-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin: 0;
  text-align: justify;
}

.guide-text strong {
  color: #ff6384;
  font-weight: 700;
}

.baccarat-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.baccarat-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.baccarat-actions .btn i {
  font-size: 1.2rem;
}

.baccarat-actions .btn-primary {
  background: linear-gradient(45deg, #ff6384, #ff9f40);
  color: #ffffff;
}

.baccarat-actions .btn-primary:hover {
  background: linear-gradient(45deg, #ff9f40, #ff6384);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 99, 132, 0.4);
}

.baccarat-actions .btn-secondary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
}

.baccarat-actions .btn-secondary:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

.baccarat-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) saturate(1.1);
  transition: transform 0.3s ease;
}

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

.live-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #ff4757, #ff6b7a);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
  animation: pulse 2s infinite;
}

.live-indicator i {
  font-size: 0.8rem;
  animation: blink 1s infinite;
}

.dealer-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
}

.dealer-info i {
  font-size: 1.1rem;
  color: #ff6384;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0.3;
  }
}

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

  .baccarat-title {
    font-size: 2.4rem;
  }

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

  .feature-content h3 {
    font-size: 1.2rem;
  }

  .feature-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  #baccarat-section {
    padding: 80px 0;
  }

  .baccarat-container {
    padding: 0 15px;
  }

  .baccarat-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .baccarat-description p {
    font-size: 0.95rem;
    text-align: left;
  }

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

  .baccarat-feature i {
    margin-top: 0;
  }

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

  .feature-content p {
    text-align: center;
  }

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

  .guide-text {
    text-align: center;
  }

  .guide-text p {
    text-align: center;
  }

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

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

  .baccarat-title {
    font-size: 1.7rem;
  }

  .baccarat-description p {
    font-size: 0.9rem;
  }

  .baccarat-feature {
    padding: 20px;
  }

  .baccarat-feature i {
    font-size: 1.8rem;
  }

  .feature-content h3 {
    font-size: 1.1rem;
  }

  .feature-content p {
    font-size: 0.9rem;
  }

  .baccarat-guide {
    padding: 20px;
  }

  .guide-content i {
    font-size: 2rem;
  }

  .guide-text h3 {
    font-size: 1.3rem;
  }

  .guide-text p {
    font-size: 0.95rem;
  }

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

  .baccarat-actions .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

/* Slots Section */
#slots-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 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(138, 43, 226, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.slots-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

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

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

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

.jackpot-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #8a2be2, #ff1493);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
  animation: glow 2s ease-in-out infinite alternate;
}

.jackpot-badge i {
  font-size: 1.3rem;
}

.provider-count {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.provider-count i {
  font-size: 1.1rem;
  color: #8a2be2;
}

.slots-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slots-title .highlight {
  background: linear-gradient(45deg, #8a2be2, #ff1493);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

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

.slots-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e0e0e0;
  text-align: justify;
}

.slots-description strong {
  color: #8a2be2;
  font-weight: 700;
}

.slots-features-list {
  margin-bottom: 40px;
}

.slots-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px 20px;
  background: rgba(138, 43, 226, 0.1);
  border-radius: 12px;
  border-left: 4px solid #8a2be2;
  transition: all 0.3s ease;
}

.slots-feature-item:hover {
  background: rgba(138, 43, 226, 0.15);
  transform: translateX(8px);
}

.slots-feature-item i {
  font-size: 1.5rem;
  color: #8a2be2;
  flex-shrink: 0;
}

.slots-feature-item span {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.slots-feature-item strong {
  color: #ffffff;
  font-weight: 700;
}

.slots-info {
  margin-bottom: 50px;
}

.slots-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #e0e0e0;
  text-align: justify;
}

.slots-info strong {
  color: #8a2be2;
  font-weight: 700;
}

.slots-info a {
  color: #ff1493;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.slots-info a:hover {
  color: #ffd700;
}

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

.slots-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.slots-actions .btn i {
  font-size: 1.2rem;
}

.slots-actions .btn-primary {
  background: linear-gradient(45deg, #8a2be2, #ff1493);
  color: #ffffff;
}

.slots-actions .btn-primary:hover {
  background: linear-gradient(45deg, #ff1493, #8a2be2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}

.slots-actions .btn-secondary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
}

.slots-actions .btn-secondary:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

@keyframes glow {
  from {
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
  }

  to {
    box-shadow: 0 6px 25px rgba(138, 43, 226, 0.6), 0 0 30px rgba(255, 20, 147, 0.3);
  }
}

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

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

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

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

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

@media (max-width: 768px) {
  #slots-section {
    padding: 80px 0;
  }

  .slots-container {
    padding: 0 15px;
  }

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

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

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

  .slots-feature-item {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .slots-feature-item span {
    text-align: center;
  }

  .slots-info p {
    font-size: 0.95rem;
    text-align: left;
  }

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

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

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

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

  .slots-feature-item {
    padding: 12px 15px;
  }

  .slots-feature-item i {
    font-size: 1.3rem;
  }

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

  .slots-info p {
    font-size: 0.9rem;
  }

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

  .slots-actions .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .jackpot-badge {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .provider-count {
    padding: 8px 15px;
    font-size: 0.85rem;
  }
}

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

#platform-security::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(34, 193, 195, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(253, 187, 45, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.platform-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.platform-title .highlight {
  background: linear-gradient(45deg, #22c1c3, #fdbb2d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.platform-title .wallet-highlight {
  background: linear-gradient(45deg, #fdbb2d, #22c1c3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

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

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

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

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

.platform-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(34, 193, 195, 0.1);
  border-radius: 15px;
  border-left: 4px solid #22c1c3;
  transition: all 0.3s ease;
}

.platform-feature:hover {
  background: rgba(34, 193, 195, 0.15);
  transform: translateX(10px);
}

.platform-feature i {
  font-size: 2rem;
  color: #22c1c3;
  flex-shrink: 0;
  margin-top: 5px;
}

.feature-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
  text-align: justify;
}

.feature-info strong {
  color: #22c1c3;
  font-weight: 700;
}

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

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

.financial-feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

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

.feature-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.feature-content i {
  font-size: 1.5rem;
  color: #fdbb2d;
  flex-shrink: 0;
}

.feature-content span {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.platform-security-info {
  margin-bottom: 40px;
}

.platform-security-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: justify;
  padding: 25px;
  background: rgba(34, 193, 195, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(34, 193, 195, 0.3);
}

.platform-security-info strong {
  color: #22c1c3;
  font-weight: 700;
}

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

.platform-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) saturate(1.1);
}

.security-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #22c1c3, #fdbb2d);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(34, 193, 195, 0.4);
}

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

.truewallet-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(45deg, #fdbb2d, #22c1c3);
  color: #000000;
  padding: 10px 18px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(253, 187, 45, 0.4);
}

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

.additional-services {
  margin-bottom: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

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

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

.service-item i {
  font-size: 3rem;
  color: #22c1c3;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  text-align: left;
}

.service-item strong {
  color: #22c1c3;
  font-weight: 700;
}

.platform-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.platform-actions .btn i {
  font-size: 1.2rem;
}

.platform-actions .btn-primary {
  background: linear-gradient(45deg, #22c1c3, #fdbb2d);
  color: #ffffff;
}

.platform-actions .btn-primary:hover {
  background: linear-gradient(45deg, #fdbb2d, #22c1c3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 193, 195, 0.4);
}

.platform-actions .btn-secondary {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
}

.platform-actions .btn-secondary:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

  .platform-title {
    font-size: 2.4rem;
  }

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

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

@media (max-width: 768px) {
  #platform-security {
    padding: 80px 0;
  }

  .platform-container {
    padding: 0 15px;
  }

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

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

  .platform-description p {
    font-size: 0.95rem;
    text-align: left;
  }

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

  .platform-feature i {
    margin-top: 0;
  }

  .feature-info {
    text-align: center;
  }

  .feature-info p {
    text-align: center;
  }

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

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

  .platform-security-info p {
    font-size: 0.95rem;
    text-align: left;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

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

  .platform-title {
    font-size: 1.7rem;
  }

  .platform-description p {
    font-size: 0.9rem;
  }

  .platform-feature {
    padding: 20px;
  }

  .platform-feature i {
    font-size: 1.8rem;
  }

  .feature-info h3 {
    font-size: 1.2rem;
  }

  .feature-info p {
    font-size: 0.9rem;
  }

  .financial-feature-item {
    padding: 15px;
  }

  .feature-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .feature-content i {
    font-size: 1.3rem;
  }

  .feature-content span {
    font-size: 0.95rem;
  }

  .platform-security-info p {
    font-size: 0.9rem;
    padding: 20px;
  }

  .service-item {
    padding: 25px 20px;
  }

  .service-item i {
    font-size: 2.5rem;
  }

  .service-item h3 {
    font-size: 1.3rem;
  }

  .service-item p {
    font-size: 0.95rem;
  }

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

  .platform-actions .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  padding: 60px 0 0;
  margin-top: 100px;
  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, 215, 0, 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;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

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

.footer-section {
  display: flex;
  flex-direction: column;
}

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

.footer-logo i {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

.footer-feature i {
  font-size: 1rem;
  color: #ffd700;
  width: 16px;
}

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ffd700;
  display: inline-block;
}

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

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

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

.footer-link i {
  font-size: 0.9rem;
  color: #ffd700;
  width: 16px;
}

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

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

.contact-item i {
  font-size: 1.1rem;
  color: #ffd700;
  width: 18px;
}

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

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

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

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

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

.footer-payment {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.payment-title {
  font-size: 0.9rem;
  color: #b0b0b0;
}

.payment-methods {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #e0e0e0;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-method i {
  font-size: 0.9rem;
  color: #ffd700;
}

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

  .footer-container {
    padding: 0 15px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 25px;
  }

  .footer-payment {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
    margin-top: 80px;
  }

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

  .footer-brand {
    grid-column: auto;
    text-align: center;
  }

  .footer-brand .footer-features {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

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

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

  .footer-link,
  .contact-item {
    justify-content: center;
  }

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

  .legal-links {
    justify-content: center;
  }

  .payment-methods {
    justify-content: center;
  }
}

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

  .footer-content {
    gap: 30px;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo i {
    font-size: 2rem;
  }

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

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

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

  .footer-feature {
    justify-content: center;
  }

  .footer-features {
    gap: 15px;
  }

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

  .footer-bottom {
    padding: 25px 0;
  }

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

  .payment-methods {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
  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: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 65px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.sticky-btn i {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

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

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

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

.sticky-btn-login:hover {
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000000;
}

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

.sticky-btn-register:hover {
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.sticky-btn-bonus {
  background: linear-gradient(135deg, #ff6384 0%, #ff9f40 100%);
  position: relative;
  animation: pulse-glow 2s infinite;
}

.sticky-btn-bonus::before {
  background: linear-gradient(135deg, #ff9f40 0%, #ff6384 100%);
}

.sticky-btn-bonus:hover {
  box-shadow: 0 4px 15px rgba(255, 99, 132, 0.4);
  animation: none;
}

.sticky-btn-bonus::after {
  content: '';
  position: absolute;
  top: 5px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: #ff1493;
  border-radius: 50%;
  animation: blink-dot 1.5s infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(255, 99, 132, 0.3);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 99, 132, 0.6), 0 0 30px rgba(255, 159, 64, 0.4);
  }
}

@keyframes blink-dot {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

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

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

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

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

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    min-height: 55px;
    font-size: 0.75rem;
  }

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

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

  .sticky-btn-bonus::after {
    width: 6px;
    height: 6px;
    top: 4px;
    right: 6px;
  }
}

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

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

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

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

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

.login-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.login-box {
  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;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}

/* Logo Styles */
.login-logo {
  margin-bottom: 30px;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Title and Subtitle */
.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-subtitle {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Error Message */
.error-message {
  background: linear-gradient(45deg, #ff4757, #ff6b7a);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  animation: slideInDown 0.3s ease;
}

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

/* Form Styles */
.login-form {
  margin-bottom: 25px;
}

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

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

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

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

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

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

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

.toggle-password {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #b0b0b0;
  cursor: pointer;
  font-size: 1rem;
  padding: 5px;
  transition: color 0.3s ease;
  z-index: 2;
}

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

.field-error {
  display: block;
  color: #ff4757;
  font-size: 0.85rem;
  margin-top: 5px;
  margin-left: 5px;
  min-height: 20px;
}

/* Login Button */
.login-btn {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

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

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

/* Divider */
.login-divider {
  position: relative;
  margin: 25px 0;
  text-align: center;
}

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

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

/* Register Button */
.register-btn {
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffd700;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.register-btn:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

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

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

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

.footer-link {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffd700;
  text-decoration: underline;
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #b0b0b0;
  font-size: 0.85rem;
}

.security-info i {
  color: #ffd700;
}

/* Animations */
@keyframes slideInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

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

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

  .login-box {
    padding: 30px 25px;
  }

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

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

  .form-input {
    padding: 14px 45px 14px 40px;
  }

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

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

  .login-box {
    padding: 25px 20px;
  }

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

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

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

  .form-input {
    padding: 12px 40px 12px 35px;
    font-size: 0.95rem;
  }

  .input-icon {
    left: 12px;
    font-size: 1rem;
  }

  .toggle-password {
    right: 12px;
  }

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

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

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

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

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

.register-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.register-box {
  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;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}

/* Logo Styles */
.register-logo {
  margin-bottom: 30px;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Title and Subtitle */
.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register-subtitle {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Message Styles */
.error-message {
  background: linear-gradient(45deg, #ff4757, #ff6b7a);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  animation: slideInDown 0.3s ease;
}

.success-message {
  background: linear-gradient(45deg, #2ed573, #7bed9f);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  animation: slideInDown 0.3s ease;
}

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

/* Form Styles */
.register-form {
  margin-bottom: 25px;
}

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

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

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

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

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

.field-error {
  display: block;
  color: #ff4757;
  font-size: 0.85rem;
  margin-bottom: 5px;
  margin-left: 5px;
  min-height: 18px;
}

.phone-help {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b0b0b0;
  font-size: 0.8rem;
  margin-left: 5px;
}

.phone-help i {
  color: #ffd700;
  font-size: 0.9rem;
}

/* Register Button */
.register-btn {
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

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

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

/* Divider */
.register-divider {
  position: relative;
  margin: 25px 0;
  text-align: center;
}

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

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

/* Login Button */
.login-btn {
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffd700;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.login-btn:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

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

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

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

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

.footer-link:hover {
  color: #ffd700;
  text-decoration: underline;
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #b0b0b0;
  font-size: 0.8rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

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

.benefits-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e0e0e0;
  font-size: 0.8rem;
}

.benefit-item i {
  color: #ffd700;
  font-size: 0.9rem;
}

/* Animations */
@keyframes slideInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

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

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

  .register-box {
    padding: 30px 25px;
  }

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

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

  .form-input {
    padding: 15px 18px 15px 45px;
    font-size: 1rem;
  }

  .input-icon {
    left: 14px;
    font-size: 1.1rem;
  }

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

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

  .register-box {
    padding: 25px 20px;
  }

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

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

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

  .form-input {
    padding: 13px 16px 13px 40px;
    font-size: 0.95rem;
  }

  .input-icon {
    left: 12px;
    font-size: 1rem;
  }

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

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

  .benefits-info {
    flex-direction: column;
    gap: 12px;
  }

  .security-info {
    padding: 0 10px;
    text-align: center;
  }
}

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

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

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

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

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

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

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

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(45deg, #ff6384, #ff9f40);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 99, 132, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse-glow 2s infinite;
}

.hero-cta:hover {
  background: linear-gradient(45deg, #ff9f40, #ff6384);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 99, 132, 0.6);
}

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

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

#promotion-new-member {
  padding: 80px 0;
  background: linear-gradient(135deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

#promotion-deposit-bonus {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

#promotion-cashback {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  position: relative;
  overflow: hidden;
}

#promotion-daily {
  padding: 80px 0;
  background: linear-gradient(135deg, #16213e 0%, #0f0f23 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

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

.promotion-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.deposit-badge {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #ffffff;
}

.cashback-badge {
  background: linear-gradient(45deg, #2ed573, #7bed9f);
  color: #ffffff;
}

.daily-badge {
  background: linear-gradient(45deg, #ff6384, #ff9f40);
  color: #ffffff;
}

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

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

.promotion-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.7;
  text-align: justify;
}

.bonus-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 20px;
  border: 2px solid #ffd700;
  margin-bottom: 30px;
  text-align: center;
}

.bonus-amount i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 10px;
}

.bonus-amount .amount {
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
}

.bonus-amount .currency {
  font-size: 1.2rem;
  color: #ffffff;
  margin-left: 5px;
}

.bonus-calculation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.deposit-amount,
.total-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 15px;
  border: 2px solid #667eea;
  min-width: 100px;
}

.total-amount {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
}

.deposit-amount .label,
.bonus-amount .label,
.total-amount .label {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-bottom: 5px;
}

.deposit-amount .amount,
.total-amount .amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

.plus-icon,
.equals-icon {
  font-size: 1.5rem;
  color: #ffd700;
}

.cashback-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cashback-rate {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  background: rgba(46, 213, 115, 0.1);
  border-radius: 15px;
  border: 2px solid #2ed573;
  min-width: 120px;
}

.cashback-rate i {
  font-size: 1.5rem;
  color: #2ed573;
  margin-bottom: 10px;
}

.cashback-rate .rate {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2ed573;
  line-height: 1;
}

.cashback-rate .label {
  font-size: 0.9rem;
  color: #ffffff;
  text-align: center;
}

.max-cashback {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
}

.max-cashback .label {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-bottom: 5px;
}

.max-cashback .amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

.max-cashback .currency {
  font-size: 0.8rem;
  color: #e0e0e0;
}

.daily-bonus {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.daily-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  background: rgba(255, 99, 132, 0.1);
  border-radius: 15px;
  border: 2px solid #ff6384;
  min-width: 120px;
}

.daily-amount i {
  font-size: 1.5rem;
  color: #ff6384;
  margin-bottom: 10px;
}

.daily-amount .amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff6384;
  line-height: 1;
}

.daily-amount .currency {
  font-size: 0.9rem;
  color: #ffffff;
  margin-top: 2px;
}

.daily-amount .period {
  font-size: 0.8rem;
  color: #b0b0b0;
}

.daily-limit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  min-width: 120px;
}

.daily-limit .label {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-bottom: 5px;
  text-align: center;
}

.daily-limit .amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.daily-limit .currency {
  font-size: 0.8rem;
  color: #e0e0e0;
}

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

.promotion-steps li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid #ffd700;
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.promotion-steps li i {
  font-size: 1.1rem;
  color: #ffd700;
  flex-shrink: 0;
}

.promotion-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.deposit-cta {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #ffffff;
}

.deposit-cta:hover {
  background: linear-gradient(45deg, #764ba2, #667eea);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.cashback-cta {
  background: linear-gradient(45deg, #2ed573, #7bed9f);
  color: #ffffff;
}

.cashback-cta:hover {
  background: linear-gradient(45deg, #7bed9f, #2ed573);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(46, 213, 115, 0.4);
}

.daily-cta {
  background: linear-gradient(45deg, #ff6384, #ff9f40);
  color: #ffffff;
}

.daily-cta:hover {
  background: linear-gradient(45deg, #ff9f40, #ff6384);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 99, 132, 0.4);
}

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

/* Animations */
@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 8px 25px rgba(255, 99, 132, 0.4);
  }

  50% {
    box-shadow: 0 8px 25px rgba(255, 99, 132, 0.6), 0 0 30px rgba(255, 159, 64, 0.3);
  }
}

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

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

  .promotion-content {
    gap: 40px;
  }

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

@media (max-width: 768px) {
  #hero-section {
    padding: 100px 0 60px;
  }

  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }

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

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

  .hero-features {
    gap: 15px;
  }

  .hero-feature {
    padding: 12px 20px;
  }

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

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

  .promotion-description {
    text-align: center;
  }

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

  .plus-icon,
  .equals-icon {
    transform: rotate(90deg);
  }

  #promotion-new-member,
  #promotion-deposit-bonus,
  #promotion-cashback,
  #promotion-daily {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {

  .hero-container,
  .promotion-container {
    padding: 0 10px;
  }

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

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

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

  .hero-cta {
    padding: 16px 30px;
    font-size: 1.1rem;
  }

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

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

  .bonus-amount {
    padding: 20px;
  }

  .bonus-amount .amount {
    font-size: 2.5rem;
  }

  .deposit-amount,
  .total-amount {
    padding: 15px;
    min-width: 80px;
  }

  .deposit-amount .amount,
  .total-amount .amount {
    font-size: 1.5rem;
  }

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

  .cashback-rate,
  .max-cashback,
  .daily-amount,
  .daily-limit {
    padding: 20px;
    min-width: 100%;
  }

  .cashback-rate .rate {
    font-size: 2rem;
  }

  .daily-amount .amount {
    font-size: 2rem;
  }

  .promotion-steps li {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .promotion-cta {
    padding: 14px 25px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
}