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

html {
  scroll-behavior: smooth;
}

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

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

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: #ffed4a;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #000;
}

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

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

.btn-secondary:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffd700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  opacity: 0.1;
  animation: grain 20s linear infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, -10%); }
  90% { transform: translate(-10%, 5%); }
}

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

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

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

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

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

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 3rem;
}

.hero-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  font-weight: 500;
}

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

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

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

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

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, #ffd700, transparent, #ffd700);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.3;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}

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

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-features {
    justify-content: center;
    gap: 20px;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero-features {
    gap: 15px;
  }
  
  .feature-item {
    font-size: 0.9rem;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
}

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

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

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

.header-logo .logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.desktop-nav {
  display: flex;
}

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

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #ffd700;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Prompt', sans-serif;
}

.cta-button:hover {
  background: linear-gradient(135deg, #ffed4a, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  color: #000;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  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: translateY(10.5px) rotate(45deg);
}

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

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

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

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

.mobile-menu {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

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

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

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

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

.mobile-menu-close:hover {
  color: #ffed4a;
}

.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

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

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

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

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

.mobile-nav-link:hover {
  color: #ffd700;
  padding-left: 10px;
}

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

.mobile-nav-link:hover::before {
  width: 30px;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .desktop-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu-toggle {
    width: 25px;
    height: 20px;
  }
  
  .hamburger-line {
    height: 2px;
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .mobile-menu-header {
    padding: 15px;
  }
  
  .mobile-logo {
    font-size: 1.3rem;
  }
  
  .mobile-nav {
    padding: 15px;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
    padding: 15px 0;
  }
}

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

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

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

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

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 2rem;
  line-height: 1.3;
}

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

.platform-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 2rem;
}

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

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

.highlight-item i {
  font-size: 1.5rem;
  color: #ffd700;
  min-width: 24px;
}

.highlight-content h4 {
  color: #ffd700;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

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

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

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

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

.platform-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.platform-info p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.platform-versions {
  margin-top: 40px;
}

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

.version-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 74, 0.05));
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.version-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.3s ease;
}

.version-card:hover::before {
  transform: scale(1);
}

.version-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
  border-color: #ffd700;
}

.version-card i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.version-card h4 {
  color: #ffd700;
  font-size: 1.3rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.version-card p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-content {
    gap: 40px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .platform-description p {
    font-size: 1rem;
  }
  
  .version-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 60px 0;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .platform-description p {
    font-size: 0.95rem;
  }
  
  .platform-highlights {
    gap: 15px;
  }
  
  .highlight-item {
    padding: 15px;
  }
  
  .highlight-item:hover {
    transform: translateX(5px);
  }
  
  .platform-info {
    padding: 30px 25px;
  }
  
  .version-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .version-card {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .platform-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .platform-description p {
    font-size: 0.9rem;
  }
  
  .highlight-item {
    padding: 12px;
    gap: 12px;
  }
  
  .highlight-item i {
    font-size: 1.3rem;
  }
  
  .highlight-content h4 {
    font-size: 1rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
  
  .platform-info {
    padding: 25px 20px;
  }
  
  .platform-info p {
    font-size: 0.9rem;
  }
  
  .version-card {
    padding: 20px 15px;
  }
  
  .version-card i {
    font-size: 2rem;
  }
  
  .version-card h4 {
    font-size: 1.1rem;
  }
  
  .version-card p {
    font-size: 0.9rem;
  }
}

/* Sagame Section */
.sagame-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f3460 0%, #533483 50%, #7b2cbf 100%);
  position: relative;
  overflow: hidden;
}

.sagame-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.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(123, 44, 191, 0.1) 0%, transparent 50%);
  animation: backgroundMove 20s ease-in-out infinite alternate;
}

@keyframes backgroundMove {
  0% { transform: translateX(-20px) translateY(-10px); }
  100% { transform: translateX(20px) translateY(10px); }
}

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

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

.sagame-header .section-title {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 0;
}

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

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

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

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

.live-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ff4757, #ff3742);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulse 2s infinite;
}

.live-badge i {
  font-size: 0.7rem;
  animation: liveBlink 1.5s infinite;
}

@keyframes liveBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

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

.sagame-text {
  animation: fadeInRight 1s ease-out;
}

.sagame-description p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.sagame-features {
  margin-bottom: 80px;
}

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

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

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
}

.feature-card i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.feature-card h4 {
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

.technology-section {
  background: rgba(0, 0, 0, 0.3);
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.technology-content h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.technology-content p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.technology-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

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

.tech-item i {
  font-size: 1.5rem;
  color: #ffd700;
  min-width: 24px;
}

.tech-content h5 {
  color: #ffd700;
  margin-bottom: 5px;
  font-size: 1rem;
}

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

.quality-control {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.quality-text h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.quality-text p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.quality-text a {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.quality-text a:hover {
  color: #ffed4a;
}

.quality-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 74, 0.05));
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  font-family: 'Prompt', sans-serif;
}

.stat-label {
  color: #cccccc;
  font-size: 0.9rem;
  margin-top: 5px;
}

.special-versions {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.special-versions h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.special-versions > p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.financial-system {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #ffd700;
}

.financial-system h4 {
  color: #ffd700;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.financial-system p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.financial-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.finance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffd700;
  font-weight: 500;
}

.finance-item i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .sagame-header .section-title {
    font-size: 2.2rem;
  }
  
  .sagame-content {
    gap: 40px;
  }
  
  .quality-control {
    gap: 40px;
  }
  
  .technology-section {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .sagame-section {
    padding: 60px 0;
  }
  
  .sagame-header .section-title {
    font-size: 1.8rem;
  }
  
  .sagame-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sagame-description p {
    font-size: 1rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .technology-section {
    padding: 30px 25px;
  }
  
  .technology-content h3 {
    font-size: 1.5rem;
  }
  
  .technology-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .quality-control {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .quality-stats {
    flex-direction: row;
    gap: 15px;
  }
  
  .stat-card {
    flex: 1;
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .special-versions {
    padding: 30px 25px;
  }
  
  .financial-system {
    padding: 25px 20px;
  }
  
  .financial-features {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .sagame-container {
    padding: 0 15px;
  }
  
  .sagame-header .section-title {
    font-size: 1.5rem;
  }
  
  .sagame-description p {
    font-size: 0.95rem;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .feature-card i {
    font-size: 2rem;
  }
  
  .technology-section {
    padding: 25px 20px;
  }
  
  .technology-content h3 {
    font-size: 1.3rem;
  }
  
  .quality-stats {
    flex-direction: column;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .special-versions {
    padding: 25px 20px;
  }
  
  .special-versions h3 {
    font-size: 1.5rem;
  }
  
  .financial-system {
    padding: 20px 15px;
  }
  
  .financial-system h4 {
    font-size: 1.2rem;
  }
}

/* Baccarat Section */
.baccarat-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c1810 0%, #3d2914 50%, #4a3318 100%);
  position: relative;
  overflow: hidden;
}

.baccarat-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(218, 165, 32, 0.06) 0%, transparent 50%);
  animation: backgroundFloat 25s ease-in-out infinite alternate;
}

@keyframes backgroundFloat {
  0% { transform: translateX(-15px) translateY(-20px) rotate(0deg); }
  100% { transform: translateX(15px) translateY(20px) rotate(1deg); }
}

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

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

.baccarat-header .section-title {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 0;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.baccarat-intro {
  margin-bottom: 80px;
}

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

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

.intro-image {
  position: relative;
}

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

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

.betting-odds {
  background: rgba(0, 0, 0, 0.3);
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.betting-odds h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.betting-odds p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

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

.odds-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(218, 165, 32, 0.05));
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.odds-card:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.odds-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  position: relative;
  z-index: 1;
}

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

.odds-card h4 {
  color: #ffd700;
  font-size: 1.3rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.odds-info {
  position: relative;
  z-index: 1;
}

.odds-ratio {
  display: block;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.house-edge {
  display: block;
  color: #cccccc;
  font-size: 0.9rem;
}

.formula-section {
  margin-bottom: 60px;
}

.formula-section h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.formula-section > p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

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

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

.formula-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
}

.formula-card i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.formula-card h4 {
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

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

.trend-analysis {
  background: rgba(0, 0, 0, 0.2);
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  border-left: 5px solid #ffd700;
}

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

.trend-text h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.trend-text p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.roadmap-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.roadmap-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

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

.roadmap-item i {
  font-size: 1.2rem;
  color: #ffd700;
  min-width: 20px;
}

.roadmap-info h5 {
  color: #ffd700;
  margin-bottom: 3px;
  font-size: 0.95rem;
}

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

.money-management {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.money-management h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.money-management > p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

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

.tip-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(218, 165, 32, 0.04));
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

.tip-card i {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 12px;
}

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

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

.betting-tools {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.betting-tools p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .baccarat-header .section-title {
    font-size: 2.2rem;
  }
  
  .intro-content {
    gap: 40px;
  }
  
  .betting-odds {
    padding: 40px;
  }
  
  .trend-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .baccarat-section {
    padding: 60px 0;
  }
  
  .baccarat-header .section-title {
    font-size: 1.8rem;
  }
  
  .intro-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .intro-text {
    text-align: center;
  }
  
  .intro-text p {
    font-size: 1rem;
  }
  
  .betting-odds {
    padding: 30px 25px;
  }
  
  .betting-odds h3 {
    font-size: 1.5rem;
  }
  
  .odds-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .formula-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .trend-analysis {
    padding: 30px 25px;
  }
  
  .trend-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .roadmap-types {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .money-management {
    padding: 30px 25px;
  }
  
  .management-tips {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .betting-tools {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .baccarat-container {
    padding: 0 15px;
  }
  
  .baccarat-header .section-title {
    font-size: 1.5rem;
  }
  
  .intro-text p {
    font-size: 0.95rem;
  }
  
  .betting-odds {
    padding: 25px 20px;
  }
  
  .betting-odds h3 {
    font-size: 1.3rem;
  }
  
  .odds-card {
    padding: 25px 20px;
  }
  
  .odds-icon {
    width: 50px;
    height: 50px;
  }
  
  .odds-icon i {
    font-size: 1.3rem;
  }
  
  .formula-card {
    padding: 25px 20px;
  }
  
  .formula-card i {
    font-size: 1.8rem;
  }
  
  .trend-analysis {
    padding: 25px 20px;
  }
  
  .trend-text h3 {
    font-size: 1.5rem;
  }
  
  .roadmap-item {
    padding: 12px;
  }
  
  .money-management {
    padding: 25px 20px;
  }
  
  .money-management h3 {
    font-size: 1.5rem;
  }
  
  .tip-card {
    padding: 20px 15px;
  }
  
  .tip-card i {
    font-size: 1.5rem;
  }
  
  .betting-tools {
    padding: 20px 15px;
  }
  
  .betting-tools p {
    font-size: 0.9rem;
  }
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0e2e 0%, #2d1b69 50%, #3e2771 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 40% 20%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(138, 43, 226, 0.08) 0%, transparent 50%);
  animation: backgroundShift 30s ease-in-out infinite alternate;
}

@keyframes backgroundShift {
  0% { transform: translateX(-10px) translateY(-15px); }
  100% { transform: translateX(10px) translateY(15px); }
}

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

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

.features-header .section-title {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 0;
  text-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.special-features {
  margin-bottom: 80px;
}

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

.features-image {
  position: relative;
}

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

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

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

.side-bets h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

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

.side-bet-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(138, 43, 226, 0.05));
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.side-bet-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.4s ease;
}

.side-bet-card:hover::before {
  transform: scale(1);
}

.side-bet-card:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.side-bet-card i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.side-bet-card h4 {
  color: #ffd700;
  font-size: 1.3rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.payout {
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.side-bet-card p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

.bonus-promotions {
  background: rgba(0, 0, 0, 0.3);
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.bonus-promotions h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.bonus-promotions > p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

.bonus-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

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

.bonus-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
}

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

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

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

.credit-free-link {
  text-align: center;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
}

.credit-free-link p {
  margin: 0;
  color: #e0e0e0;
  font-size: 1rem;
}

.credit-free-link a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 600;
}

.credit-free-link a:hover {
  color: #ffed4a;
}

.vip-system {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.vip-system h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.vip-system > p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

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

.vip-level {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(218, 165, 32, 0.04));
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.vip-level:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

.vip-level i {
  font-size: 2rem;
}

.vip-level i.bronze { color: #cd7f32; }
.vip-level i.silver { color: #c0c0c0; }
.vip-level i.gold { color: #ffd700; }
.vip-level i.platinum { color: #e5e4e2; }
.vip-level i.diamond { color: #b9f2ff; }
.vip-level i.elite { color: #ff6b9d; }

.vip-level span {
  color: #ffd700;
  font-weight: 600;
  font-size: 0.9rem;
}

.promotion-variety {
  margin-bottom: 60px;
}

.promotion-variety h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.promotion-variety > p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

.promotion-variety a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 600;
}

.promotion-variety a:hover {
  color: #ffed4a;
}

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

.promo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.promo-item i {
  font-size: 1.8rem;
  color: #ffd700;
}

.promo-item h5 {
  color: #ffd700;
  margin: 0;
  font-size: 1rem;
}

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

.special-game-features {
  background: rgba(0, 0, 0, 0.2);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 60px;
  border-left: 5px solid #ffd700;
}

.special-game-features h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

.game-features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-number {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

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

.feature-info h4 {
  color: #ffd700;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

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

.premium-services {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.premium-services h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.premium-services > p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
}

.wallet-system {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.wallet-system h4 {
  color: #ffd700;
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-align: center;
}

.wallet-system p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
}

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

.wallet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 15px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  color: #ffd700;
  font-weight: 500;
  transition: all 0.3s ease;
}

.wallet-item:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: scale(1.02);
}

.wallet-item i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-header .section-title {
    font-size: 2.2rem;
  }
  
  .features-content {
    gap: 40px;
  }
  
  .bonus-promotions {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 60px 0;
  }
  
  .features-header .section-title {
    font-size: 1.8rem;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .features-text {
    text-align: center;
  }
  
  .features-text p {
    font-size: 1rem;
  }
  
  .side-bet-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .bonus-promotions {
    padding: 30px 25px;
  }
  
  .bonus-types {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .vip-levels {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .vip-system {
    padding: 30px 25px;
  }
  
  .promotion-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .special-game-features {
    padding: 30px 25px;
  }
  
  .premium-services {
    padding: 30px 25px;
  }
  
  .wallet-system {
    padding: 25px 20px;
  }
  
  .wallet-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .features-container {
    padding: 0 15px;
  }
  
  .features-header .section-title {
    font-size: 1.5rem;
  }
  
  .features-text p {
    font-size: 0.95rem;
  }
  
  .side-bet-card {
    padding: 25px 20px;
  }
  
  .side-bet-card i {
    font-size: 2rem;
  }
  
  .bonus-promotions {
    padding: 25px 20px;
  }
  
  .bonus-promotions h3 {
    font-size: 1.5rem;
  }
  
  .vip-levels {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vip-system {
    padding: 25px 20px;
  }
  
  .vip-system h3 {
    font-size: 1.5rem;
  }
  
  .promotion-grid {
    grid-template-columns: 1fr;
  }
  
  .special-game-features {
    padding: 25px 20px;
  }
  
  .special-game-features h3 {
    font-size: 1.5rem;
  }
  
  .feature-number {
    padding: 15px;
    gap: 15px;
  }
  
  .number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .feature-info h4 {
    font-size: 1.1rem;
  }
  
  .feature-info p {
    font-size: 0.9rem;
  }
  
  .premium-services {
    padding: 25px 20px;
  }
  
  .premium-services h3 {
    font-size: 1.5rem;
  }
  
  .wallet-system {
    padding: 20px 15px;
  }
  
  .wallet-system h4 {
    font-size: 1.2rem;
  }
  
  .wallet-item {
    padding: 12px;
    font-size: 0.9rem;
  }
}

/* Registration Section */
.registration-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a3a 0%, #2d2d5a 50%, #3a3a6a 100%);
  position: relative;
  overflow: hidden;
}

.registration-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.05) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(106, 90, 205, 0.07) 0%, transparent 60%);
  animation: backgroundDrift 35s ease-in-out infinite alternate;
}

@keyframes backgroundDrift {
  0% { transform: translateX(-25px) translateY(-20px) rotate(-1deg); }
  100% { transform: translateX(25px) translateY(20px) rotate(1deg); }
}

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

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

.registration-header .section-title {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 0;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

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

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

.intro-image {
  position: relative;
}

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

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

.registration-steps {
  background: rgba(0, 0, 0, 0.3);
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.registration-steps h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 40px;
  text-align: center;
}

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

.step-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(106, 90, 205, 0.05));
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.step-card:hover::before {
  top: 100%;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto 15px;
  position: relative;
  z-index: 1;
}

.step-card i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.step-card h4 {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.step-card p {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

.minimum-bet-info {
  margin-bottom: 60px;
}

.minimum-bet-info h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.minimum-bet-info > p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

.bet-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.amount-card:hover {
  transform: scale(1.05);
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
}

.amount-card i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 15px;
}

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

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

.getting-started {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.getting-started h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.getting-started > p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.getting-started a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 600;
}

.getting-started a:hover {
  color: #ffed4a;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

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

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

.feature-text h5 {
  color: #ffd700;
  margin-bottom: 5px;
  font-size: 1rem;
}

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

.branding-section {
  background: rgba(0, 0, 0, 0.2);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 60px;
  border-left: 5px solid #ffd700;
}

.branding-section h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.branding-section > p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
}

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

.quality-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 15px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  color: #ffd700;
  font-weight: 500;
  transition: all 0.3s ease;
}

.quality-item:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: scale(1.02);
}

.quality-item i {
  font-size: 1.1rem;
}

.money-management-guide {
  margin-bottom: 60px;
}

.money-management-guide h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.money-management-guide > p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

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

.rule-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(106, 90, 205, 0.04));
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.rule-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.rule-card i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.rule-card h4 {
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

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

.analysis-tools {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.analysis-tools h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.analysis-tools > p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
}

.analysis-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.analysis-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

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

.analysis-item i {
  font-size: 1.5rem;
  color: #ffd700;
  min-width: 24px;
}

.analysis-info h5 {
  color: #ffd700;
  margin-bottom: 5px;
  font-size: 1rem;
}

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

.platform-versions-list {
  background: rgba(0, 0, 0, 0.2);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 60px;
  border-left: 5px solid #ffd700;
}

.platform-versions-list h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: center;
}

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

.version-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

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

.version-item i {
  font-size: 1.5rem;
  color: #ffd700;
  min-width: 24px;
}

.version-info h5 {
  color: #ffd700;
  margin-bottom: 5px;
  font-size: 1rem;
}

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

.practice-mode {
  margin-bottom: 60px;
}

.practice-mode h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.practice-mode > p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

.practice-mode a {
  color: #ffd700;
  text-decoration: underline;
  font-weight: 600;
}

.practice-mode a:hover {
  color: #ffed4a;
}

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

.benefit-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(106, 90, 205, 0.04));
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.benefit-card i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.benefit-card h4 {
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

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

.customer-service {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.customer-service h3 {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

.customer-service > p {
  color: #e0e0e0;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
}

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

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 15px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  color: #ffd700;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: scale(1.02);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .registration-header .section-title {
    font-size: 2.2rem;
  }
  
  .intro-content {
    gap: 40px;
  }
  
  .registration-steps {
    padding: 40px;
  }
  
  .steps-grid {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .registration-section {
    padding: 60px 0;
  }
  
  .registration-header .section-title {
    font-size: 1.8rem;
  }
  
  .intro-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .intro-text {
    text-align: center;
  }
  
  .intro-text p {
    font-size: 1rem;
  }
  
  .registration-steps {
    padding: 30px 25px;
  }
  
  .registration-steps h3 {
    font-size: 1.5rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .bet-amounts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .getting-started {
    padding: 30px 25px;
  }
  
  .branding-section {
    padding: 30px 25px;
  }
  
  .brand-qualities {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .management-rules {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .analysis-tools {
    padding: 30px 25px;
  }
  
  .analysis-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .platform-versions-list {
    padding: 30px 25px;
  }
  
  .versions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .practice-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .customer-service {
    padding: 30px 25px;
  }
  
  .service-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .registration-container {
    padding: 0 15px;
  }
  
  .registration-header .section-title {
    font-size: 1.5rem;
  }
  
  .intro-text p {
    font-size: 0.95rem;
  }
  
  .registration-steps {
    padding: 25px 20px;
  }
  
  .registration-steps h3 {
    font-size: 1.3rem;
  }
  
  .step-card {
    padding: 25px 20px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .step-card i {
    font-size: 1.8rem;
  }
  
  .amount-card {
    padding: 25px 20px;
  }
  
  .amount-card i {
    font-size: 2rem;
  }
  
  .amount {
    font-size: 1.8rem;
  }
  
  .getting-started {
    padding: 25px 20px;
  }
  
  .getting-started h3 {
    font-size: 1.5rem;
  }
  
  .branding-section {
    padding: 25px 20px;
  }
  
  .branding-section h3 {
    font-size: 1.5rem;
  }
  
  .management-rules {
    gap: 15px;
  }
  
  .rule-card {
    padding: 20px 15px;
  }
  
  .rule-card i {
    font-size: 1.8rem;
  }
  
  .analysis-tools {
    padding: 25px 20px;
  }
  
  .analysis-tools h3 {
    font-size: 1.5rem;
  }
  
  .platform-versions-list {
    padding: 25px 20px;
  }
  
  .platform-versions-list h3 {
    font-size: 1.5rem;
  }
  
  .practice-mode h3 {
    font-size: 1.5rem;
  }
  
  .benefit-card {
    padding: 20px 15px;
  }
  
  .benefit-card i {
    font-size: 1.8rem;
  }
  
  .customer-service {
    padding: 25px 20px;
  }
  
  .customer-service h3 {
    font-size: 1.5rem;
  }
  
  .service-highlights {
    grid-template-columns: 1fr;
  }
}

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

.main-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(22, 33, 62, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo .logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.footer-description {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  max-width: 300px;
}

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

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

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

.footer-title {
  color: #ffd700;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  font-family: 'Prompt', sans-serif;
}

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

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

.footer-link:hover {
  color: #ffd700;
  padding-left: 10px;
}

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

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

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.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;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.social-link i {
  font-size: 1rem;
}

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

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

.disclaimer-text {
  color: #999999;
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-links .footer-column:nth-child(3) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 40px 0 20px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .footer-description {
    max-width: none;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-links .footer-column:nth-child(3),
  .footer-links .footer-column:nth-child(4) {
    grid-column: span 2;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .security-badges {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 30px 0 15px;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer-logo .logo-text {
    font-size: 1.6rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-links .footer-column:nth-child(3),
  .footer-links .footer-column:nth-child(4) {
    grid-column: span 1;
  }
  
  .footer-title {
    font-size: 1rem;
  }
  
  .footer-link {
    font-size: 0.85rem;
  }
  
  .social-links {
    gap: 12px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-link i {
    font-size: 0.9rem;
  }
  
  .contact-item {
    font-size: 0.85rem;
  }
  
  .badge-item {
    font-size: 0.8rem;
  }
  
  .footer-bottom {
    padding-top: 20px;
    gap: 12px;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .disclaimer-text {
    font-size: 0.75rem;
  }
}

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

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

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

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

.sticky-btn i {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.btn-text {
  font-family: 'Prompt', sans-serif;
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.2;
}

.sticky-login {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: #ffffff;
}

.sticky-login:hover {
  background: linear-gradient(135deg, #357abd, #4a90e2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
  color: #ffffff;
}

.sticky-register {
  background: linear-gradient(135deg, #28a745, #20923a);
  color: #ffffff;
}

.sticky-register:hover {
  background: linear-gradient(135deg, #20923a, #28a745);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
  color: #ffffff;
}

.sticky-bonus {
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #000000;
  position: relative;
  animation: bonusPulse 2s ease-in-out infinite;
}

.sticky-bonus:hover {
  background: linear-gradient(135deg, #ffed4a, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  color: #000000;
  animation: none;
}

@keyframes bonusPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 215, 0, 0);
  }
}

.sticky-bonus::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #ffed4a, #ffd700);
  background-size: 200% 200%;
  animation: borderGlow 2s ease-in-out infinite;
  z-index: -1;
  border-radius: inherit;
}

@keyframes borderGlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.8rem;
    min-height: 55px;
    gap: 5px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .btn-text {
    font-size: 0.8rem;
  }
}

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

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

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(22, 33, 62, 0.08) 0%, transparent 50%);
  animation: backgroundFloat 20s ease-in-out infinite alternate;
}

@keyframes backgroundFloat {
  0% { transform: translateX(-10px) translateY(-15px); }
  100% { transform: translateX(10px) translateY(15px); }
}

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

.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
  animation: cardGlow 8s ease-in-out infinite alternate;
}

@keyframes cardGlow {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(180deg) scale(1.1); }
}

.login-logo {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

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

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

.login-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.login-header h1 {
  color: #ffd700;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

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

.login-form {
  position: relative;
  z-index: 1;
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-family: 'Prompt', sans-serif;
}

.form-label i {
  font-size: 0.9rem;
}

.input-wrapper {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

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

.password-wrapper {
  position: relative;
}

.password-wrapper .form-input {
  padding-right: 50px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #cccccc;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

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

.input-focus {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.form-input:focus + .input-focus {
  width: 100%;
}

.error-message {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

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

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

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

.btn-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

.login-btn.loading .btn-loader {
  display: block;
}

.register-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  color: #ffd700;
  text-decoration: none;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Prompt', sans-serif;
}

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

.general-error {
  margin-top: 15px;
  padding: 12px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 8px;
  color: #ff6b6b;
  font-size: 0.9rem;
  display: none;
}

.general-error.show {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.login-footer {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.security-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #999999;
  font-size: 0.8rem;
  text-align: center;
}

.security-notice i {
  color: #4ade80;
  font-size: 0.9rem;
}

/* Input Validation States */
.form-input.valid {
  border-color: #4ade80;
}

.form-input.invalid {
  border-color: #ff6b6b;
}

.form-input.invalid:focus {
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 15px;
  }
  
  .login-card {
    padding: 30px 25px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-header h1 {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 11px 14px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 13px 18px;
    font-size: 0.95rem;
  }
  
  .register-link {
    padding: 11px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .login-container {
    max-width: 100%;
  }
  
  .login-card {
    padding: 25px 20px;
    margin: 10px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-header h1 {
    font-size: 1.4rem;
  }
  
  .login-header p {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .password-wrapper .form-input {
    padding-right: 45px;
  }
  
  .password-toggle {
    right: 10px;
  }
  
  .login-btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .register-link {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .form-label {
    font-size: 0.85rem;
  }
  
  .security-notice {
    font-size: 0.75rem;
  }
}

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

.register-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.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(22, 33, 62, 0.1) 0%, transparent 50%);
  animation: backgroundFloat 25s ease-in-out infinite alternate;
}

@keyframes backgroundFloat {
  0% { transform: translateX(-15px) translateY(-10px); }
  100% { transform: translateX(15px) translateY(10px); }
}

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

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
  animation: cardGlow 10s ease-in-out infinite alternate;
}

@keyframes cardGlow {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(180deg) scale(1.1); }
}

.register-logo {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

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

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

.register-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.register-header h1 {
  color: #ffd700;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

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

.register-form {
  position: relative;
  z-index: 1;
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-family: 'Prompt', sans-serif;
}

.form-label i {
  font-size: 0.9rem;
}

.input-wrapper {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

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

.form-input:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
  transform: translateY(-2px);
}

.input-focus {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.form-input:focus + .input-focus {
  width: 100%;
}

.error-message {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(-5px);
}

.error-message.show {
  opacity: 1;
  transform: translateY(0);
}

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

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.register-btn {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #000;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-family: 'Prompt', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

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

.register-btn:hover:not(:disabled)::before {
  width: 300px;
  height: 300px;
}

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

.btn-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

.register-btn.loading .btn-loader {
  display: block;
}

.login-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  color: #ffd700;
  text-decoration: none;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: 'Prompt', sans-serif;
  background: transparent;
}

.login-link:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  transform: translateY(-2px);
  color: #ffd700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.general-error {
  margin-top: 15px;
  padding: 12px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 8px;
  color: #ff6b6b;
  font-size: 0.9rem;
  display: none;
  text-align: center;
}

.general-error.show {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.register-footer {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.security-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #999999;
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 15px;
}

.security-notice i {
  color: #4ade80;
  font-size: 0.9rem;
}

.terms-notice {
  text-align: center;
}

.terms-notice p {
  color: #999999;
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 0;
}

.terms-link {
  color: #ffd700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.terms-link:hover {
  color: #ffed4a;
}

/* Input Validation States */
.form-input.valid {
  border-color: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.form-input.invalid {
  border-color: #ff6b6b;
  animation: shake 0.5s ease-in-out;
}

.form-input.invalid:focus {
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Success state for form submission */
.register-card.success {
  border-color: #4ade80;
  animation: successGlow 0.8s ease-in-out;
}

@keyframes successGlow {
  0%, 100% { box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3); }
  50% { box-shadow: 0 25px 70px rgba(74, 222, 128, 0.3); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 15px;
  }
  
  .register-card {
    padding: 30px 25px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-header h1 {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 11px 14px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 13px 18px;
    font-size: 0.95rem;
  }
  
  .login-link {
    padding: 11px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .register-container {
    max-width: 100%;
  }
  
  .register-card {
    padding: 25px 20px;
    margin: 10px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-header h1 {
    font-size: 1.4rem;
  }
  
  .register-header p {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .register-btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .login-link {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .form-label {
    font-size: 0.85rem;
  }
  
  .security-notice {
    font-size: 0.75rem;
  }
  
  .terms-notice p {
    font-size: 0.7rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 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% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(22, 33, 62, 0.08) 0%, transparent 50%);
  animation: heroGlow 20s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translateX(-20px) translateY(-10px); }
  100% { transform: translateX(20px) translateY(10px); }
}

.hero-container {
  max-width: 1280px;
  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;
  color: #ffd700;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.4); }
  100% { text-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.3); }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #e0e0e0;
  line-height: 1.7;
  margin: 0;
  animation: fadeInUp 1s ease-out 0.5s both;
}

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

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

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

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

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.02) 0%, transparent 70%);
  animation: cardFloat 15s ease-in-out infinite alternate;
}

@keyframes cardFloat {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(180deg) scale(1.1); }
}

.promotion-card:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
  box-shadow: 0 30px 80px rgba(255, 215, 0, 0.2);
}

.special-promotion {
  border: 2px solid #ffd700;
  background: rgba(255, 215, 0, 0.08);
  position: relative;
}

.special-promotion::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #ffed4a, #ffd700);
  background-size: 200% 200%;
  animation: borderGlow 3s ease-in-out infinite;
  z-index: -1;
  border-radius: inherit;
}

@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.promotion-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.promotion-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  animation: iconPulse 2s ease-in-out infinite;
}

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

.promotion-icon i {
  font-size: 2rem;
  color: #000;
}

.promotion-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin: 0;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  flex: 1;
}

.promotion-content {
  position: relative;
  z-index: 1;
}

.promotion-benefits {
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.promotion-benefits li:hover {
  background: rgba(255, 215, 0, 0.05);
  padding-left: 10px;
  border-radius: 8px;
}

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

.promotion-benefits i {
  color: #4ade80;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
  animation: checkGlow 2s ease-in-out infinite alternate;
}

@keyframes checkGlow {
  0% { color: #4ade80; }
  100% { color: #22c55e; }
}

.promotion-benefits span {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
}

.promotion-cta {
  text-align: center;
  margin-top: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-family: 'Prompt', sans-serif;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

.cta-button:hover {
  background: linear-gradient(135deg, #ffed4a, #ffd700);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  color: #000;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

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

.special-cta {
  background: linear-gradient(135deg, #ff6b6b, #ffd700);
  animation: specialButtonGlow 2s ease-in-out infinite alternate;
}

.special-cta:hover {
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
}

@keyframes specialButtonGlow {
  0% { box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3); }
  100% { box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3), 0 0 30px rgba(255, 215, 0, 0.2); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .promotion-card {
    padding: 35px;
  }
  
  .promotion-header {
    gap: 15px;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
  }
  
  .promotion-icon i {
    font-size: 1.8rem;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 40px 0;
  }
  
  .promotion-container {
    padding: 0 15px;
  }
  
  .promotion-card {
    padding: 25px;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.5rem;
  }
  
  .promotion-benefits li {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
  
  .promotion-benefits span {
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 0 40px;
  }
  
  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .promotion-section {
    padding: 30px 0;
  }
  
  .promotion-card {
    padding: 20px;
    margin: 0 5px;
  }
  
  .promotion-icon {
    width: 50px;
    height: 50px;
  }
  
  .promotion-icon i {
    font-size: 1.3rem;
  }
  
  .promotion-title {
    font-size: 1.3rem;
    line-height: 1.3;
  }
  
  .promotion-benefits {
    gap: 12px;
  }
  
  .promotion-benefits li {
    padding: 10px 0;
    gap: 8px;
  }
  
  .promotion-benefits i {
    font-size: 1rem;
  }
  
  .promotion-benefits span {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
    gap: 8px;
  }
  
  .cta-button i {
    font-size: 1rem;
  }
}