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

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

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

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

a:hover {
  color: #ffed4e;
}

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

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

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

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

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

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

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

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

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

.hero-text {
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-container {
    padding: 0 24px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-container {
    padding: 0 16px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .feature-item {
    padding: 14px;
  }
  
  .hero-cta {
    justify-content: center;
    gap: 15px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .hero-img {
    max-width: 100%;
  }
  
  .hero-badge {
    top: 15px;
    right: 15px;
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .feature-item {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Header Styles */
.main-header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  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 .logo-link {
  text-decoration: none;
  color: #ffd700;
}

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

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

.desktop-nav {
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

.btn-cta {
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

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

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 350px;
  height: 100%;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

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

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

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  color: #ffd700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
}

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

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

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mobile-nav-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 24px;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

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

.mobile-nav-link:hover::before {
  transform: scaleY(1);
}

.mobile-cta-container {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 20px;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 24px;
  }
  
  .nav-list {
    gap: 24px;
  }
  
  .btn-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 890px) {
  .header-container {
    padding: 0 16px;
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .desktop-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 55px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu-toggle {
    width: 26px;
    height: 20px;
  }
  
  .hamburger-line {
    height: 2px;
  }
  
  .mobile-menu-header {
    padding: 16px 20px;
  }
  
  .mobile-logo {
    font-size: 1.3rem;
  }
  
  .mobile-nav-link {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .mobile-cta-container {
    padding: 16px 20px;
  }
  
  .btn-mobile-cta {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

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

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

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

/* Platform Section Styles */
.platform-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
  padding: 100px 0;
  position: relative;
}

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

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

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.3;
}

.platform-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: flex-start;
}

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

.platform-intro,
.platform-description,
.platform-details {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.platform-intro p,
.platform-description p,
.platform-details p {
  margin-bottom: 16px;
}

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

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.feature-card:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

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

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

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

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

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

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

.trust-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #fff;
  padding: 12px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  animation: bounce 3s infinite;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .platform-container {
    padding: 0 24px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .platform-content {
    gap: 40px;
  }
  
  .feature-grid {
    gap: 16px;
  }
  
  .feature-card {
    padding: 20px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .platform-section {
    padding: 80px 0;
  }
  
  .platform-container {
    padding: 0 16px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .platform-text {
    gap: 25px;
  }
  
  .platform-intro,
  .platform-description,
  .platform-details {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-card h4 {
    font-size: 1rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .trust-badge {
    position: static;
    margin: 20px auto 0;
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .platform-intro,
  .platform-description,
  .platform-details {
    font-size: 0.95rem;
  }
  
  .feature-card {
    padding: 16px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon i {
    font-size: 1.2rem;
  }
  
  .trust-badge {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
}

/* Z16 Com Section Styles */
.z16com-section {
  background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
  padding: 100px 0;
  position: relative;
}

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

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

.z16com-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
  margin-top: 60px;
}

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

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

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

.game-count-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  color: #000;
  padding: 12px 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, 107, 53, 0.3);
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }
  to {
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
  }
}

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

.z16com-intro,
.z16com-description,
.z16com-details {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.z16com-intro p,
.z16com-description p,
.z16com-details p {
  margin-bottom: 16px;
}

.z16com-intro strong,
.z16com-description strong,
.z16com-details strong {
  color: #ffd700;
  font-weight: 700;
}

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

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

.feature-highlight:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

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

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

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

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

.login-methods {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 24px;
}

.login-methods h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  text-align: center;
}

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

.method-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

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

.method-item span {
  font-size: 0.85rem;
  color: #cccccc;
  text-align: center;
  font-weight: 600;
}

.security-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.security-item:hover {
  background: rgba(40, 167, 69, 0.15);
  border-color: rgba(40, 167, 69, 0.5);
}

.security-item i {
  font-size: 1.3rem;
  color: #28a745;
  flex-shrink: 0;
}

.security-text strong {
  display: block;
  color: #28a745;
  font-weight: 700;
  margin-bottom: 4px;
}

.security-text span {
  font-size: 0.9rem;
  color: #cccccc;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
}

.benefits-list li i {
  color: #28a745;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .z16com-container {
    padding: 0 24px;
  }
  
  .z16com-content {
    gap: 40px;
  }
  
  .method-grid {
    gap: 12px;
  }
  
  .method-item {
    padding: 14px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .z16com-section {
    padding: 80px 0;
  }
  
  .z16com-container {
    padding: 0 16px;
  }
  
  .z16com-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .z16com-text {
    gap: 25px;
  }
  
  .z16com-intro,
  .z16com-description,
  .z16com-details {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .feature-highlight {
    padding: 16px;
    gap: 12px;
  }
  
  .feature-highlight .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-highlight .feature-icon i {
    font-size: 1.2rem;
  }
  
  .login-methods {
    padding: 20px;
  }
  
  .method-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .method-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
  
  .method-item i {
    font-size: 1.3rem;
  }
  
  .security-item {
    padding: 14px;
    gap: 12px;
  }
  
  .game-count-badge {
    position: static;
    margin: 20px auto 0;
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .z16com-intro,
  .z16com-description,
  .z16com-details {
    font-size: 0.95rem;
  }
  
  .feature-highlight {
    padding: 14px;
  }
  
  .feature-highlight .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-highlight .feature-icon i {
    font-size: 1.1rem;
  }
  
  .feature-content h4 {
    font-size: 1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
  
  .login-methods {
    padding: 16px;
  }
  
  .login-methods h4 {
    font-size: 1.1rem;
  }
  
  .benefits-list li {
    font-size: 0.95rem;
  }
  
  .game-count-badge {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* Slots Section Styles */
.slots-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 100px 0;
  position: relative;
}

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

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

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

.slots-text {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.slots-intro,
.game-features,
.slots-details,
.login-benefits,
.vip-program {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.slots-intro p,
.game-features p,
.slots-details p,
.login-benefits p,
.vip-program p {
  margin-bottom: 16px;
}

.slots-intro strong,
.game-features strong,
.slots-details strong,
.login-benefits strong,
.vip-program strong {
  color: #ffd700;
  font-weight: 700;
}

.game-features h3,
.special-features h3,
.login-benefits h3,
.vip-program h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.game-features h3::before,
.special-features h3::before,
.login-benefits h3::before,
.vip-program h3::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 2px;
}

.slots-stats {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(5px);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-label i {
  font-size: 1.2rem;
  color: #ffd700;
}

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

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

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

.feature-card:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.feature-card .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
}

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

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

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

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

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

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

.jackpot-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #dc3545, #ffd700);
  color: #fff;
  padding: 16px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
  animation: jackpotPulse 2s ease-in-out infinite;
}

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

.jackpot-badge i {
  font-size: 1.3rem;
  color: #ffd700;
  display: block;
  margin-bottom: 6px;
}

.jackpot-badge span {
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.jackpot-amount {
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 215, 0, 0.2);
  padding: 4px 8px;
  border-radius: 8px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .slots-container {
    padding: 0 24px;
  }
  
  .slots-content {
    gap: 40px;
  }
  
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .slots-stats {
    padding: 24px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .slots-section {
    padding: 80px 0;
  }
  
  .slots-container {
    padding: 0 16px;
  }
  
  .slots-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .slots-text {
    gap: 30px;
  }
  
  .slots-intro,
  .game-features,
  .slots-details,
  .login-benefits,
  .vip-program {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .game-features h3,
  .special-features h3,
  .login-benefits h3,
  .vip-program h3 {
    font-size: 1.2rem;
  }
  
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 18px;
  }
  
  .feature-card .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-card .feature-icon i {
    font-size: 1.1rem;
  }
  
  .slots-stats {
    padding: 20px;
  }
  
  .jackpot-badge {
    top: 15px;
    right: 15px;
    padding: 14px 18px;
  }
}

@media (max-width: 480px) {
  .slots-intro,
  .game-features,
  .slots-details,
  .login-benefits,
  .vip-program {
    font-size: 0.95rem;
  }
  
  .stat-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 8px;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .feature-card {
    padding: 16px;
  }
  
  .feature-card h4 {
    font-size: 0.95rem;
  }
  
  .feature-card p {
    font-size: 0.8rem;
  }
  
  .jackpot-badge {
    position: static;
    margin: 20px auto 0;
    display: inline-flex;
    flex-direction: column;
  }
}

/* Z16 Slot Section Styles */
.z16-slot-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 100px 0;
  position: relative;
}

.z16-slot-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%);
  pointer-events: none;
}

.z16-slot-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.z16-slot-content {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: flex-start;
  margin-top: 60px;
}

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

.z16-slot-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.z16-slot-img:hover {
  transform: scale(1.03) rotate(2deg);
}

.rng-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #fff;
  padding: 10px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
  animation: securityGlow 3s ease-in-out infinite alternate;
}

.payout-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000;
  padding: 10px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  animation: payoutPulse 2.5s ease-in-out infinite;
}

@keyframes securityGlow {
  from {
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
  }
  to {
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.6);
  }
}

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

.z16-slot-text {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.z16-slot-intro,
.slot-analysis,
.megaways-info,
.loyalty-program,
.competition-info {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.z16-slot-intro p,
.slot-analysis p,
.megaways-info p,
.loyalty-program p,
.competition-info p {
  margin-bottom: 16px;
}

.z16-slot-intro strong,
.slot-analysis strong,
.megaways-info strong,
.loyalty-program strong,
.competition-info strong {
  color: #ffd700;
  font-weight: 700;
}

.system-features h3,
.megaways-info h3,
.loyalty-program h3,
.highlights-list h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.system-features h3::before,
.megaways-info h3::before,
.loyalty-program h3::before,
.highlights-list h3::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 2px;
}

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

.system-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.system-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.system-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.system-item:hover .system-icon {
  transform: scale(1.1) rotate(5deg);
}

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

.system-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
}

.system-item p {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.5;
  margin: 0;
}

.highlights-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 10px;
  transition: all 0.3s ease;
}

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

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

.highlight-item p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.competition-info a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.competition-info a:hover {
  color: #ffed4e;
  border-bottom-color: #ffd700;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .z16-slot-container {
    padding: 0 24px;
  }
  
  .z16-slot-content {
    gap: 40px;
  }
  
  .system-grid {
    gap: 16px;
  }
  
  .system-item {
    padding: 18px;
  }
  
  .system-icon {
    width: 55px;
    height: 55px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .z16-slot-section {
    padding: 80px 0;
  }
  
  .z16-slot-container {
    padding: 0 16px;
  }
  
  .z16-slot-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .z16-slot-text {
    gap: 30px;
  }
  
  .z16-slot-intro,
  .slot-analysis,
  .megaways-info,
  .loyalty-program,
  .competition-info {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .system-features h3,
  .megaways-info h3,
  .loyalty-program h3,
  .highlights-list h3 {
    font-size: 1.2rem;
  }
  
  .system-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .system-item {
    padding: 16px;
  }
  
  .system-icon {
    width: 50px;
    height: 50px;
  }
  
  .system-icon i {
    font-size: 1.3rem;
  }
  
  .system-item h4 {
    font-size: 1rem;
  }
  
  .system-item p {
    font-size: 0.9rem;
  }
  
  .rng-badge,
  .payout-badge {
    position: static;
    margin: 15px auto 0;
    display: inline-flex;
  }
  
  .rng-badge {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .z16-slot-intro,
  .slot-analysis,
  .megaways-info,
  .loyalty-program,
  .competition-info {
    font-size: 0.95rem;
  }
  
  .system-item {
    padding: 14px;
  }
  
  .system-icon {
    width: 45px;
    height: 45px;
  }
  
  .system-icon i {
    font-size: 1.2rem;
  }
  
  .highlight-item {
    padding: 14px;
    gap: 12px;
  }
  
  .highlight-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  .highlight-item p {
    font-size: 0.95rem;
  }
  
  .rng-badge,
  .payout-badge {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
}

/* Access Section Styles */
.access-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
  padding: 100px 0;
  position: relative;
}

.access-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.access-content {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
  align-items: flex-start;
  margin-top: 60px;
}

.access-text {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.access-intro,
.access-features,
.promotion-details,
.mobile-system,
.financial-details,
.platform-varieties {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.access-intro p,
.access-features p,
.promotion-details p,
.mobile-system p,
.financial-details p,
.platform-varieties p {
  margin-bottom: 16px;
}

.access-intro strong,
.access-features strong,
.promotion-details strong,
.mobile-system strong,
.financial-details strong,
.platform-varieties strong {
  color: #ffd700;
  font-weight: 700;
}

.access-methods h3,
.promotions-section h3,
.mobile-system h3,
.banking-system h3,
.platform-varieties h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.access-methods h3::before,
.promotions-section h3::before,
.mobile-system h3::before,
.banking-system h3::before,
.platform-varieties h3::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 2px;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.method-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.method-card:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.3s ease;
}

.method-card:hover .method-icon {
  transform: scale(1.1) rotate(10deg);
}

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

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

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

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

.promo-card {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.promo-card:hover {
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.5);
  transform: translateY(-3px);
}

.promo-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  color: #000;
  padding: 6px 16px;
  border-radius: 0 0 12px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.promo-content {
  padding-top: 25px;
}

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

.promo-content p {
  font-size: 0.9rem;
  color: #cccccc;
  margin-bottom: 12px;
}

.promo-highlight {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.banking-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.banking-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.banking-item:hover {
  background: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.5);
  transform: translateX(5px);
}

.banking-item i {
  font-size: 1.5rem;
  color: #28a745;
  flex-shrink: 0;
}

.banking-text strong {
  display: block;
  color: #ffd700;
  font-weight: 700;
  margin-bottom: 4px;
}

.banking-text span {
  font-size: 0.9rem;
  color: #cccccc;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
}

.benefit-item i {
  color: #28a745;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.access-features a,
.mobile-system a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.access-features a:hover,
.mobile-system a:hover {
  color: #ffed4e;
  border-bottom-color: #ffd700;
}

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

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

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

.access-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.access-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1rem;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .access-container {
    padding: 0 24px;
  }
  
  .access-content {
    gap: 40px;
  }
  
  .methods-grid {
    gap: 16px;
  }
  
  .promotions-grid {
    gap: 16px;
  }
  
  .method-card,
  .promo-card {
    padding: 20px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .access-section {
    padding: 80px 0;
  }
  
  .access-container {
    padding: 0 16px;
  }
  
  .access-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .access-text {
    gap: 30px;
  }
  
  .access-intro,
  .access-features,
  .promotion-details,
  .mobile-system,
  .financial-details,
  .platform-varieties {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .access-methods h3,
  .promotions-section h3,
  .mobile-system h3,
  .banking-system h3,
  .platform-varieties h3 {
    font-size: 1.2rem;
  }
  
  .methods-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .promotions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .method-card {
    padding: 20px;
  }
  
  .method-icon {
    width: 55px;
    height: 55px;
  }
  
  .method-icon i {
    font-size: 1.3rem;
  }
  
  .promo-card {
    padding: 18px;
  }
  
  .banking-item {
    padding: 14px;
    gap: 12px;
  }
  
  .banking-item i {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .access-intro,
  .access-features,
  .promotion-details,
  .mobile-system,
  .financial-details,
  .platform-varieties {
    font-size: 0.95rem;
  }
  
  .method-card {
    padding: 18px;
  }
  
  .method-icon {
    width: 50px;
    height: 50px;
  }
  
  .method-icon i {
    font-size: 1.2rem;
  }
  
  .method-card h4 {
    font-size: 1rem;
  }
  
  .method-card p {
    font-size: 0.85rem;
  }
  
  .promo-card {
    padding: 16px;
  }
  
  .promo-content h4 {
    font-size: 1rem;
  }
  
  .banking-item {
    padding: 12px;
  }
  
  .benefit-item {
    font-size: 0.95rem;
  }
  
  .access-cta .btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  margin-top: 80px;
  position: relative;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 60px 0 40px;
}

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

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

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

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

.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 {
  color: #ffd700;
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  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, #ffd700, #ff6b35);
  border-radius: 1px;
}

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

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

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

.footer-link i {
  color: #ffd700;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.footer-link:hover i {
  transform: scale(1.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

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

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

.social-links {
  display: flex;
  gap: 12px;
}

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

.social-link:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
  color: #ffd700;
}

.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: center;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

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

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

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

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

.footer-badges {
  display: flex;
  gap: 20px;
  align-items: center;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #28a745;
  font-size: 0.85rem;
  font-weight: 600;
}

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

.footer-disclaimer {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0 40px;
}

.disclaimer-text {
  color: #dc3545;
  font-size: 0.9rem;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.disclaimer-text i {
  color: #dc3545;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .footer-container {
    padding: 0 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .footer-about {
    grid-column: 1 / -1;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .main-footer {
    margin-top: 60px;
  }
  
  .footer-container {
    padding: 0 16px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0 30px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .footer-feature {
    flex: 1;
    min-width: calc(50% - 8px);
    font-size: 0.85rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
  
  .social-links {
    justify-content: flex-start;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  
  .separator {
    display: none;
  }
  
  .footer-badges {
    align-self: stretch;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 30px 0 20px;
  }
  
  .footer-logo-text {
    font-size: 1.4rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-features {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-feature {
    min-width: auto;
  }
  
  .contact-info {
    gap: 12px;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .footer-badges {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  
  .disclaimer-text {
    font-size: 0.85rem;
  }
  
  .footer-disclaimer {
    padding: 14px 16px;
    margin: 16px 0 30px;
  }
}

/* Sticky Buttons Styles */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding: 8px;
  gap: 8px;
}

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

.sticky-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

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

.sticky-login {
  background: rgba(108, 117, 125, 0.2);
  border: 1px solid rgba(108, 117, 125, 0.3);
}

.sticky-login:hover {
  background: rgba(108, 117, 125, 0.3);
  border-color: rgba(108, 117, 125, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

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

.sticky-register {
  background: rgba(0, 123, 255, 0.2);
  border: 1px solid rgba(0, 123, 255, 0.3);
}

.sticky-register:hover {
  background: rgba(0, 123, 255, 0.3);
  border-color: rgba(0, 123, 255, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

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

.sticky-credit {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 53, 0.2));
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: #ffd700;
  position: relative;
  overflow: hidden;
}

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

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

.sticky-credit:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 107, 53, 0.3));
  border-color: rgba(255, 215, 0, 0.6);
  color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.sticky-credit:hover i {
  transform: scale(1.15) rotate(10deg);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .sticky-buttons {
    padding: 10px;
    gap: 10px;
  }
  
  .sticky-btn {
    padding: 14px 10px;
    min-height: 65px;
  }
  
  .sticky-btn i {
    font-size: 1.3rem;
  }
  
  .sticky-btn span {
    font-size: 0.85rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 6px;
    gap: 6px;
  }
  
  .sticky-btn {
    padding: 12px 6px;
    min-height: 55px;
    font-size: 0.8rem;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 4px;
    gap: 4px;
  }
  
  .sticky-btn {
    padding: 10px 4px;
    min-height: 50px;
    font-size: 0.75rem;
    gap: 2px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
    line-height: 1.1;
  }
}

/* Add bottom padding to body to account for sticky buttons */
body {
  padding-bottom: 76px;
}

@media (max-width: 1024px) {
  body {
    padding-bottom: 85px;
  }
}

@media (max-width: 890px) {
  body {
    padding-bottom: 67px;
  }
}

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

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

.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.1) 0%, transparent 50%), 
              radial-gradient(circle at 70% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.login-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 
              0 0 0 1px rgba(255, 215, 0, 0.2);
}

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

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

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

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

.login-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

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

.error-message {
  display: none;
  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;
  color: #dc3545;
  font-size: 0.9rem;
  align-items: center;
  gap: 10px;
}

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

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

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

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

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

.form-label i {
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

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

.form-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

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

.password-input-container {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

.input-error {
  display: none;
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 6px;
  padding-left: 4px;
}

.input-error.show {
  display: block;
}

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

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
}

.remember-me input[type="checkbox"] {
  display: none;
}

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

.remember-me input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-color: #ffd700;
}

.remember-me input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

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

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

.login-button {
  width: 100%;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.login-button.loading {
  cursor: not-allowed;
  transform: none;
}

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

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

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

.login-button.loading .loading-spinner {
  opacity: 1;
}

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

.register-text {
  color: #cccccc;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.register-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 16px;
  }
  
  .login-card {
    padding: 30px;
    border-radius: 16px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .login-button {
    padding: 14px;
    font-size: 1rem;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 24px;
    margin: 10px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .login-button {
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .register-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .remember-me,
  .forgot-password {
    font-size: 0.85rem;
  }
}

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

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

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

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

.register-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 
              0 0 0 1px rgba(255, 215, 0, 0.2);
}

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

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

.logo-image:hover {
  transform: scale(1.05) rotate(2deg);
}

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

.register-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

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

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

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

.success-message i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.error-message {
  display: none;
  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;
  color: #dc3545;
  font-size: 0.9rem;
  align-items: center;
  gap: 10px;
}

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

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

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

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}

.form-label i {
  font-size: 1.1rem;
  width: 18px;
  text-align: center;
}

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

.form-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
  transform: translateY(-1px);
}

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

.input-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 6px;
  padding-left: 4px;
}

.input-hint i {
  font-size: 0.8rem;
}

.input-error {
  display: none;
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 8px;
  padding-left: 4px;
  font-weight: 500;
}

.input-error.show {
  display: block;
}

.terms-agreement {
  margin-bottom: 30px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cccccc;
  font-size: 0.95rem;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
  display: none;
}

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

.checkbox-container input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-color: #ffd700;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms-text {
  flex: 1;
}

.terms-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.terms-link:hover {
  color: #ffed4e;
  border-bottom-color: #ffd700;
}

.register-button {
  width: 100%;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.register-button:hover {
  background: linear-gradient(135deg, #ffed4e, #ff8c52);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.register-button:active {
  transform: translateY(-1px);
}

.register-button.loading {
  cursor: not-allowed;
  transform: none;
}

.btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.3s ease;
}

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

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

.register-button.loading .loading-spinner {
  opacity: 1;
}

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

.login-text {
  color: #cccccc;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.login-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.login-button:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
  border-color: #ffed4e;
  color: #ffed4e;
}

.security-notice {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.security-item i {
  color: #28a745;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 16px;
  }
  
  .register-card {
    padding: 30px;
    border-radius: 16px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 16px;
    font-size: 1rem;
  }
  
  .register-button {
    padding: 16px;
    font-size: 1rem;
  }
  
  .checkbox-container {
    font-size: 0.9rem;
  }
  
  .security-notice {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .register-card {
    padding: 24px;
    margin: 10px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 14px;
    font-size: 0.95rem;
  }
  
  .form-label {
    font-size: 0.95rem;
  }
  
  .register-button {
    padding: 14px;
    font-size: 0.95rem;
  }
  
  .login-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .checkbox-container {
    font-size: 0.85rem;
  }
  
  .input-hint {
    font-size: 0.8rem;
  }
  
  .security-item {
    font-size: 0.75rem;
  }
}

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

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

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

.hero-content {
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  padding: 16px 24px;
  margin-bottom: 40px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffd700;
}

.hero-highlight i {
  font-size: 1.3rem;
  animation: pulse 2s infinite;
}

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

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

.hero-cta-btn:hover {
  background: linear-gradient(135deg, #ffed4e, #ff8c52);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
  color: #000;
}

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

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

.promo-section:nth-child(even) {
  background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
}

.promo-section:nth-child(odd) {
  background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
}

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

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

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

.promo-title {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.3;
}

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

.promo-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  width: 100%;
}

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

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

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

.feature-item p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

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

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  color: #000;
  padding: 16px 32px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.promo-btn:hover {
  background: linear-gradient(135deg, #ff8c52, #ffed4e);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  color: #000;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-container,
  .promo-container {
    padding: 0 24px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .promo-title {
    font-size: 2rem;
  }
  
  .promo-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .hero-container,
  .promo-container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 24px;
  }
  
  .promo-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  
  .hero-highlight {
    padding: 12px 20px;
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-cta-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .feature-item {
    padding: 20px;
    gap: 14px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon i {
    font-size: 1.1rem;
  }
  
  .feature-item p {
    font-size: 0.95rem;
  }
  
  .promo-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .promo-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
    line-height: 1.3;
  }
  
  .promo-title {
    font-size: 1.5rem;
  }
  
  .hero-highlight {
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    text-align: center;
  }
  
  .hero-cta-btn {
    padding: 14px 24px;
    font-size: 1rem;
    gap: 8px;
  }
  
  .feature-item {
    padding: 16px;
    gap: 12px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-icon i {
    font-size: 1rem;
  }
  
  .feature-item p {
    font-size: 0.9rem;
  }
  
  .promo-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    gap: 8px;
  }
  
  .promo-content {
    gap: 30px;
  }
  
  .promo-header {
    margin-bottom: 40px;
  }
}