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

body {
  font-family: 'Sarabun', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: linear-gradient(45deg, #4ade80, #22c55e);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 222, 128, 0.4);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  z-index: 1;
}

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

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

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

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

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

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

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

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

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

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

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

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

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

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease-out 0.5s both;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 8px;
  font-family: 'Prompt', sans-serif;
}

.stat-label {
  font-size: 0.95rem;
  color: #d1d5db;
  font-weight: 500;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .feature-item {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    padding: 14px 20px;
    font-size: 15px;
    min-width: 130px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 25px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .feature-item {
    flex: 1 1 100%;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

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

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

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

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

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

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

.logo-tagline {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #4ade80;
  margin-top: 4px;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

.nav-link {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.nav-link:hover {
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

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

.cta-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.cta-button:hover::before {
  animation: shine 0.6s ease-in-out;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

@keyframes shine {
  0% {
    opacity: 0;
    left: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: 50%;
  }
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  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: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

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

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.mobile-logo-tagline {
  font-family: 'Prompt', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4ade80;
}

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

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

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

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

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

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

.mobile-nav-link:hover {
  background: rgba(255, 107, 53, 0.1);
  border-left-color: #ff6b35;
  color: #ff6b35;
  transform: translateX(10px);
}

.mobile-nav-link i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

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

.mobile-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.mobile-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 15px;
  }
  
  .nav-menu {
    gap: 25px;
  }
  
  .nav-link {
    font-size: 1rem;
    padding: 8px 12px;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 830px) {
  .header-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 70px;
    padding: 0 15px;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .logo-tagline {
    font-size: 0.9rem;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .mobile-menu-header {
    padding: 20px;
  }
  
  .mobile-nav-link {
    padding: 18px 20px;
    font-size: 1rem;
  }
  
  .mobile-cta-item {
    padding: 0 20px;
  }
  
  body {
    padding-top: 70px;
  }
}

/* Overview Section */
.overview-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #16213e 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.overview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
  z-index: 1;
}

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

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

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

.overview-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #4ade80, #22c55e, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.overview-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 20px;
}

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

.overview-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(74, 222, 128, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #4ade80, #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

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

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feature-desc {
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

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

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

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

.image-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  animation: pulse 2s infinite;
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

.overview-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

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

.highlight-item:hover {
  background: rgba(74, 222, 128, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(74, 222, 128, 0.2);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #4ade80, #22c55e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

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

.highlight-content p {
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.6;
}

.security-features {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-title {
  font-size: 2rem;
  font-weight: 700;
  color: #4ade80;
  text-align: center;
  margin-bottom: 40px;
}

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

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

.security-item:hover {
  background: rgba(74, 222, 128, 0.1);
  transform: translateX(5px);
}

.security-item i {
  font-size: 20px;
  color: #4ade80;
  flex-shrink: 0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .overview-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .overview-title {
    font-size: 2.2rem;
  }
  
  .overview-highlights {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .overview-section {
    padding: 80px 15px;
  }
  
  .overview-title {
    font-size: 2rem;
  }
  
  .overview-description p {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 20px;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
  
  .highlight-item {
    padding: 25px;
    gap: 15px;
  }
  
  .highlight-icon {
    width: 45px;
    height: 45px;
  }
  
  .highlight-content h4 {
    font-size: 1.1rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
  
  .security-features {
    padding: 30px;
  }
  
  .security-title {
    font-size: 1.8rem;
  }
  
  .security-item {
    padding: 18px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .overview-title {
    font-size: 1.8rem;
  }
  
  .overview-description p {
    font-size: 0.95rem;
  }
  
  .feature-card {
    padding: 15px;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .security-features {
    padding: 20px;
  }
  
  .security-title {
    font-size: 1.6rem;
  }
  
  .security-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .security-item span {
    font-size: 0.9rem;
  }
}

/* PG Slot Section */
.pg-slot-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.pg-slot-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top left, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  z-index: 1;
}

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

.pg-slot-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

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

.pg-slot-subtitle {
  font-size: 1.2rem;
  color: #d1d5db;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

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

.pg-slot-image {
  position: relative;
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

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

.pg-slot-img:hover {
  transform: scale(1.05) rotate(1deg);
}

.pg-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  animation: bounce 2s infinite;
}

.pg-slot-text {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.pg-slot-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 25px;
}

.pg-slot-description strong {
  color: #ff6b35;
  font-weight: 700;
}

.pg-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.pg-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 25px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.pg-feature:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateY(-2px);
}

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

.pg-feature span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

.pg-slot-features {
  margin-bottom: 80px;
}

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

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

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

.feature-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-detail {
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.pg-slot-advantages {
  margin-bottom: 60px;
}

.advantages-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #ff6b35;
  margin-bottom: 50px;
}

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

.advantage-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.advantage-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.advantage-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.advantage-content p {
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.7;
}

.advantage-content strong {
  color: #ff6b35;
  font-weight: 700;
}

.pg-slot-cta {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
  border-radius: 25px;
  padding: 60px;
  text-align: center;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  position: relative;
  overflow: hidden;
}

.pg-slot-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.2rem;
  color: #d1d5db;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ff6b35;
  color: #ff6b35;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #ff6b35;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .pg-slot-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .pg-slot-title {
    font-size: 2.4rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .pg-slot-section {
    padding: 80px 15px;
  }
  
  .pg-slot-title {
    font-size: 2rem;
  }
  
  .pg-slot-subtitle {
    font-size: 1.1rem;
  }
  
  .pg-slot-description p {
    font-size: 1rem;
  }
  
  .pg-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-box {
    padding: 25px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  
  .feature-icon i {
    font-size: 24px;
  }
  
  .advantages-title {
    font-size: 1.8rem;
  }
  
  .advantage-item {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  
  .advantage-icon {
    align-self: center;
  }
  
  .pg-slot-cta {
    padding: 40px;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .pg-slot-title {
    font-size: 1.8rem;
  }
  
  .pg-slot-description p {
    font-size: 0.95rem;
  }
  
  .feature-box {
    padding: 20px;
  }
  
  .advantage-item {
    padding: 20px;
  }
  
  .advantage-content h4 {
    font-size: 1.2rem;
  }
  
  .advantage-content p {
    font-size: 0.9rem;
  }
  
  .pg-slot-cta {
    padding: 30px;
  }
  
  .cta-content h3 {
    font-size: 1.6rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
}

/* Wallet Section */
.wallet-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.wallet-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
  z-index: 1;
}

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

.wallet-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.wallet-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #4ade80, #22c55e, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wallet-subtitle {
  font-size: 1.2rem;
  color: #d1d5db;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

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

.wallet-image {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

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

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

.wallet-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: linear-gradient(45deg, #4ade80, #22c55e);
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 15px 35px rgba(74, 222, 128, 0.4);
  animation: pulse 2s infinite;
}

.wallet-features-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.overlay-feature {
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a2e;
  padding: 10px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.wallet-content {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.wallet-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 25px;
}

.wallet-description strong {
  color: #4ade80;
  font-weight: 700;
}

.wallet-quick-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.quick-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 30px;
  border: 1px solid rgba(74, 222, 128, 0.2);
  transition: all 0.3s ease;
}

.quick-feature:hover {
  background: rgba(74, 222, 128, 0.2);
  transform: translateY(-3px);
}

.quick-feature i {
  color: #4ade80;
  font-size: 18px;
}

.quick-feature span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

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

.features-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #4ade80;
  margin-bottom: 50px;
}

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

.wallet-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wallet-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wallet-feature-card:hover::before {
  opacity: 1;
}

.wallet-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(74, 222, 128, 0.2);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #4ade80, #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  z-index: 1;
}

.card-icon i {
  font-size: 35px;
  color: #ffffff;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.card-desc {
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

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

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

.login-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 20px;
}

.login-desc {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.8;
}

.login-link {
  color: #4ade80;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.login-link:hover {
  color: #22c55e;
}

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

.login-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(74, 222, 128, 0.2);
  transition: all 0.3s ease;
}

.login-feature:hover {
  background: rgba(74, 222, 128, 0.2);
  transform: translateX(10px);
}

.login-feature i {
  font-size: 24px;
  color: #4ade80;
}

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

.supported-wallets {
  margin-bottom: 60px;
}

.supported-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #4ade80;
  margin-bottom: 40px;
}

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

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

.wallet-item:hover {
  background: rgba(74, 222, 128, 0.1);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
}

.wallet-item i {
  font-size: 24px;
  color: #4ade80;
  flex-shrink: 0;
}

.wallet-item span {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.6;
  font-weight: 500;
}

.wallet-cta {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
  border-radius: 25px;
  padding: 60px;
  text-align: center;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(74, 222, 128, 0.2);
  position: relative;
  overflow: hidden;
}

.wallet-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
  animation: rotate 15s linear infinite;
}

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

.wallet-cta-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.wallet-cta-content p {
  font-size: 1.2rem;
  color: #d1d5db;
  margin-bottom: 35px;
}

.wallet-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .wallet-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .wallet-title {
    font-size: 2.4rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .login-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .wallet-section {
    padding: 80px 15px;
  }
  
  .wallet-title {
    font-size: 2rem;
  }
  
  .wallet-subtitle {
    font-size: 1.1rem;
  }
  
  .wallet-description p {
    font-size: 1rem;
  }
  
  .wallet-quick-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .wallet-feature-card {
    padding: 30px;
  }
  
  .card-icon {
    width: 70px;
    height: 70px;
  }
  
  .card-icon i {
    font-size: 30px;
  }
  
  .login-system {
    padding: 30px;
  }
  
  .login-features {
    gap: 15px;
  }
  
  .wallets-list {
    grid-template-columns: 1fr;
  }
  
  .wallet-cta {
    padding: 40px;
  }
  
  .wallet-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .wallet-title {
    font-size: 1.8rem;
  }
  
  .wallet-description p {
    font-size: 0.95rem;
  }
  
  .wallet-feature-card {
    padding: 25px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .login-desc {
    font-size: 1rem;
  }
  
  .login-feature {
    padding: 15px;
  }
  
  .wallet-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .wallet-cta {
    padding: 30px;
  }
  
  .wallet-cta-content h3 {
    font-size: 1.8rem;
  }
  
  .wallet-cta-content p {
    font-size: 1.1rem;
  }
}

/* Credit Section */
.credit-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #16213e 0%, #0a0a0a 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.credit-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at bottom right, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  z-index: 1;
}

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

.credit-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.credit-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.credit-subtitle {
  font-size: 1.2rem;
  color: #d1d5db;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.credit-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.credit-content {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.credit-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 25px;
}

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

.credit-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.highlight-box {
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

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

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #ffc107);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.highlight-icon i {
  font-size: 20px;
  color: #1a1a2e;
}

.highlight-box h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 8px;
}

.highlight-box p {
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.6;
}

.credit-image {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

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

.credit-img:hover {
  transform: scale(1.05) rotate(-1deg);
}

.credit-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: linear-gradient(45deg, #ffd700, #ffc107);
  color: #1a1a2e;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  animation: bounce 2s infinite;
}

.bonus-systems {
  margin-bottom: 80px;
}

.systems-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #ffd700;
  margin-bottom: 50px;
}

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

.system-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.system-card:hover::before {
  opacity: 1;
}

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

.system-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #ffd700, #ffc107);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.system-icon i {
  font-size: 30px;
  color: #1a1a2e;
}

.system-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.system-desc {
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.promotion-link {
  color: #ffd700;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.promotion-link:hover {
  color: #ffc107;
}

.registration-process {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  padding: 50px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.process-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.process-desc {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.8;
}

.register-link {
  color: #ffd700;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.register-link:hover {
  color: #ffc107;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

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

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ffd700, #ffc107);
  color: #1a1a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.step-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.step-content p {
  font-size: 1rem;
  color: #d1d5db;
  margin: 0;
}

.bonus-terms {
  margin-bottom: 60px;
}

.terms-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #ffd700;
  margin-bottom: 40px;
}

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

.terms-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

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

.terms-item i {
  font-size: 24px;
  color: #ffd700;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-item span {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.7;
}

.credit-cta {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
  border-radius: 25px;
  padding: 60px;
  text-align: center;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.credit-cta::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%);
  animation: rotate 18s linear infinite;
}

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

.credit-cta-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.credit-cta-content p {
  font-size: 1.2rem;
  color: #d1d5db;
  margin-bottom: 35px;
}

.credit-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .credit-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .credit-title {
    font-size: 2.4rem;
  }
  
  .credit-highlights {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .systems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .process-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .credit-section {
    padding: 80px 15px;
  }
  
  .credit-title {
    font-size: 2rem;
  }
  
  .credit-subtitle {
    font-size: 1.1rem;
  }
  
  .credit-description p {
    font-size: 1rem;
  }
  
  .highlight-box {
    padding: 20px;
  }
  
  .systems-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .system-card {
    padding: 25px;
  }
  
  .system-icon {
    width: 60px;
    height: 60px;
  }
  
  .system-icon i {
    font-size: 24px;
  }
  
  .registration-process {
    padding: 30px;
  }
  
  .process-steps {
    gap: 20px;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .credit-cta {
    padding: 40px;
  }
  
  .credit-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .credit-title {
    font-size: 1.8rem;
  }
  
  .credit-description p {
    font-size: 0.95rem;
  }
  
  .highlight-box {
    padding: 15px;
  }
  
  .highlight-box h4 {
    font-size: 1.1rem;
  }
  
  .highlight-box p {
    font-size: 0.9rem;
  }
  
  .system-card {
    padding: 20px;
  }
  
  .registration-process {
    padding: 20px;
  }
  
  .process-title {
    font-size: 1.8rem;
  }
  
  .process-desc {
    font-size: 1rem;
  }
  
  .terms-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .credit-cta {
    padding: 30px;
  }
  
  .credit-cta-content h3 {
    font-size: 1.8rem;
  }
  
  .credit-cta-content p {
    font-size: 1.1rem;
  }
}

/* New Games Section */
.new-games-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.new-games-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  z-index: 1;
}

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

.new-games-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

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

.new-games-subtitle {
  font-size: 1.2rem;
  color: #d1d5db;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.new-games-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.new-games-image {
  position: relative;
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

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

.new-games-img:hover {
  transform: scale(1.05) rotateY(5deg);
}

.new-games-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  color: #ffffff;
  padding: 20px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

.game-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.overlay-item {
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a2e;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  backdrop-filter: blur(10px);
}

.new-games-content {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

.new-games-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d1d5db;
  margin-bottom: 25px;
}

.new-games-description strong {
  color: #ff6b35;
  font-weight: 700;
}

.new-games-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.game-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 30px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.game-feature:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateY(-3px);
}

.game-feature i {
  color: #ff6b35;
  font-size: 18px;
}

.game-feature span {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
}

.innovation-lab {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  padding: 50px;
  margin-bottom: 80px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.innovation-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 30px;
  text-align: center;
}

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

.innovation-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d1d5db;
}

.innovation-text strong {
  color: #ff6b35;
  font-weight: 700;
}

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

.highlight {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.highlight:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateX(10px);
}

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

.highlight span {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
}

.ai-recommendations {
  margin-bottom: 80px;
}

.ai-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #ff6b35;
  margin-bottom: 50px;
}

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

.ai-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ai-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ai-card:hover::before {
  opacity: 1;
}

.ai-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
}

.ai-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  z-index: 1;
}

.ai-icon i {
  font-size: 35px;
  color: #ffffff;
}

.ai-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.ai-desc {
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.game-preview-features {
  margin-bottom: 80px;
}

.preview-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #ff6b35;
  margin-bottom: 50px;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

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

.preview-feature:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.preview-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.preview-icon i {
  font-size: 28px;
  color: #ffffff;
}

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

.preview-content p {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.7;
}

.game-calendar {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  padding: 50px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.calendar-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 20px;
}

.calendar-desc {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.8;
}

.calendar-desc strong {
  color: #ff6b35;
  font-weight: 700;
}

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

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

.calendar-feature:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateX(10px);
}

.calendar-feature i {
  font-size: 24px;
  color: #ff6b35;
}

.calendar-feature span {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
}

.game-updates-list {
  margin-bottom: 60px;
}

.updates-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #ff6b35;
  margin-bottom: 40px;
}

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

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

.update-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.update-item i {
  font-size: 24px;
  color: #ff6b35;
  flex-shrink: 0;
}

.update-item span {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.6;
  font-weight: 500;
}

.new-games-cta {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
  border-radius: 25px;
  padding: 60px;
  text-align: center;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  position: relative;
  overflow: hidden;
}

.new-games-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  animation: rotate 22s linear infinite;
}

.new-games-cta-content {
  position: relative;
  z-index: 1;
}

.new-games-cta-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.new-games-cta-content p {
  font-size: 1.2rem;
  color: #d1d5db;
  margin-bottom: 35px;
}

.new-games-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .new-games-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .new-games-title {
    font-size: 2.4rem;
  }
  
  .new-games-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .innovation-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .ai-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .calendar-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .new-games-section {
    padding: 80px 15px;
  }
  
  .new-games-title {
    font-size: 2rem;
  }
  
  .new-games-subtitle {
    font-size: 1.1rem;
  }
  
  .new-games-description p {
    font-size: 1rem;
  }
  
  .innovation-lab {
    padding: 30px;
  }
  
  .innovation-highlights {
    gap: 15px;
  }
  
  .ai-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ai-card {
    padding: 30px;
  }
  
  .ai-icon {
    width: 70px;
    height: 70px;
  }
  
  .ai-icon i {
    font-size: 30px;
  }
  
  .preview-feature {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  
  .game-calendar {
    padding: 30px;
  }
  
  .updates-grid {
    grid-template-columns: 1fr;
  }
  
  .new-games-cta {
    padding: 40px;
  }
  
  .new-games-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .new-games-title {
    font-size: 1.8rem;
  }
  
  .new-games-description p {
    font-size: 0.95rem;
  }
  
  .innovation-title {
    font-size: 1.8rem;
  }
  
  .ai-card {
    padding: 25px;
  }
  
  .preview-feature {
    padding: 20px;
  }
  
  .preview-content h4 {
    font-size: 1.2rem;
  }
  
  .preview-content p {
    font-size: 1rem;
  }
  
  .calendar-title {
    font-size: 1.8rem;
  }
  
  .calendar-desc {
    font-size: 1rem;
  }
  
  .update-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .new-games-cta {
    padding: 30px;
  }
  
  .new-games-cta-content h3 {
    font-size: 1.8rem;
  }
  
  .new-games-cta-content p {
    font-size: 1.1rem;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at bottom center, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
  z-index: 1;
}

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

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

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

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

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

.footer-logo-tagline {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #4ade80;
  margin-top: 6px;
}

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

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 600;
}

.contact-item i {
  font-size: 18px;
  color: #ff6b35;
  width: 20px;
}

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

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(45deg, #ff6b35, #ffd700);
  border-radius: 2px;
}

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

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

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

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

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

.support-channels {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.support-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-channel:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-2px);
}

.support-channel i {
  font-size: 18px;
  color: #4ade80;
}

.support-channel span {
  font-weight: 600;
  font-size: 0.95rem;
}

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

.feature-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(74, 222, 128, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(74, 222, 128, 0.2);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  background: rgba(74, 222, 128, 0.2);
  transform: scale(1.02);
}

.feature-badge i {
  font-size: 14px;
  color: #4ade80;
}

.feature-badge span {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 600;
}

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

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

.footer-legal {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.legal-link {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 5px 0;
}

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

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

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.security-badge span {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 600;
}

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

.footer-copyright p {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    padding: 50px 15px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .footer-security {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 40px 15px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: auto;
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-legal {
    justify-content: center;
    gap: 20px;
  }
  
  .footer-security {
    justify-content: center;
    gap: 15px;
  }
  
  .footer-logo-text {
    font-size: 2.2rem;
  }
  
  .footer-logo-tagline {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 30px 15px 0;
  }
  
  .footer-content {
    gap: 25px;
  }
  
  .footer-logo-text {
    font-size: 2rem;
  }
  
  .footer-logo-tagline {
    font-size: 1rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
  
  .support-channels {
    gap: 12px;
  }
  
  .support-channel {
    padding: 10px 12px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .footer-security {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    padding: 25px 0;
  }
  
  .footer-bottom-content {
    gap: 15px;
  }
}

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

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.sticky-btn:hover::before {
  transform: translateX(100%);
}

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

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

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

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

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

/* Login Button */
.sticky-btn-login {
  background: linear-gradient(45deg, #4ade80, #22c55e);
}

.sticky-btn-login:hover {
  background: linear-gradient(45deg, #22c55e, #16a34a);
  box-shadow: 0 -6px 20px rgba(74, 222, 128, 0.3);
}

.sticky-btn-login i {
  color: #ffffff;
}

/* Register Button */
.sticky-btn-register {
  background: linear-gradient(45deg, #3b82f6, #2563eb);
}

.sticky-btn-register:hover {
  background: linear-gradient(45deg, #2563eb, #1d4ed8);
  box-shadow: 0 -6px 20px rgba(59, 130, 246, 0.3);
}

.sticky-btn-register i {
  color: #ffffff;
}

/* Credit Button */
.sticky-btn-credit {
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  position: relative;
}

.sticky-btn-credit::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.sticky-btn-credit:hover {
  background: linear-gradient(45deg, #ff8e53, #ffa726);
  box-shadow: 0 -6px 20px rgba(255, 107, 53, 0.3);
}

.sticky-btn-credit i {
  color: #ffffff;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 12px 8px;
    font-size: 0.85rem;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
  
  .sticky-btn span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.8rem;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
    line-height: 1.1;
  }
}

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

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

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.login-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.login-box {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.login-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(74, 222, 128, 0.05) 100%);
  z-index: -1;
}

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

.login-logo {
  margin-bottom: 25px;
}

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

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

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

.login-subtitle {
  font-size: 1.1rem;
  color: #d1d5db;
  font-weight: 500;
}

.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  margin-bottom: 25px;
  color: #f87171;
  font-weight: 600;
  animation: slideDown 0.3s ease;
}

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

.error-message i {
  font-size: 18px;
}

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

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

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

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

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

.input-icon {
  position: absolute;
  left: 18px;
  color: #9ca3af;
  font-size: 18px;
  z-index: 1;
}

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

.form-input::placeholder {
  color: #9ca3af;
  opacity: 0.8;
}

.form-input:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input:focus + .input-icon,
.form-input:focus ~ .password-toggle {
  color: #ff6b35;
}

.form-input.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.password-toggle {
  position: absolute;
  right: 18px;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 4px;
  border-radius: 4px;
}

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

.field-error {
  margin-top: 8px;
  color: #f87171;
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.field-error:not(:empty)::before {
  content: '⚠';
  font-size: 14px;
}

.login-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

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

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

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

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

.login-btn:disabled:hover {
  box-shadow: none;
}

.btn-loading {
  display: none;
  position: absolute;
  right: 20px;
}

.btn-loading.show {
  display: block;
}

.btn-loading i {
  animation: spin 1s linear infinite;
}

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

.register-btn {
  width: 100%;
  padding: 14px;
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
  border: 2px solid #4ade80;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.register-btn:hover {
  background: #4ade80;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 222, 128, 0.3);
}

.login-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d1d5db;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 60px 15px;
  }
  
  .login-box {
    padding: 30px;
    margin: 20px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 1rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 14px 18px 14px 45px;
  }
  
  .input-icon {
    left: 16px;
    font-size: 16px;
  }
  
  .password-toggle {
    right: 16px;
    font-size: 16px;
  }
  
  .login-features {
    gap: 15px;
  }
  
  .feature-item {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 40px 10px;
  }
  
  .login-box {
    padding: 25px;
    margin: 10px;
    border-radius: 20px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    padding: 12px 16px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 14px;
    font-size: 15px;
  }
  
  .password-toggle {
    right: 14px;
    font-size: 15px;
  }
  
  .login-btn,
  .register-btn {
    padding: 14px;
    font-size: 1rem;
  }
  
  .login-features {
    gap: 10px;
  }
  
  .feature-item {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.register-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.register-box {
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.register-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
  z-index: -1;
}

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

.register-logo {
  margin-bottom: 25px;
}

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

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

.register-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #4ade80, #22c55e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.register-subtitle {
  font-size: 1.1rem;
  color: #d1d5db;
  font-weight: 500;
}

.error-message {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  margin-bottom: 25px;
  color: #f87171;
  font-weight: 600;
  animation: slideDown 0.3s ease;
}

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

.success-message {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  margin-bottom: 25px;
  color: #4ade80;
  font-weight: 600;
  animation: slideDown 0.3s ease;
}

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

.error-message i,
.success-message i {
  font-size: 18px;
}

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

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

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

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

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

.input-icon {
  position: absolute;
  left: 18px;
  color: #9ca3af;
  font-size: 18px;
  z-index: 1;
}

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

.form-input::placeholder {
  color: #9ca3af;
  opacity: 0.8;
}

.form-input:focus {
  outline: none;
  border-color: #4ade80;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.form-input:focus + .input-icon {
  color: #4ade80;
}

.form-input.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success {
  border-color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
}

.field-error {
  margin-top: 8px;
  color: #f87171;
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.field-error:not(:empty)::before {
  content: '⚠';
  font-size: 14px;
}

.register-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(45deg, #4ade80, #22c55e);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

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

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

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4);
}

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

.register-btn:disabled:hover {
  box-shadow: none;
}

.btn-loading {
  display: none;
  position: absolute;
  right: 20px;
}

.btn-loading.show {
  display: block;
}

.btn-loading i {
  animation: spin 1s linear infinite;
}

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

.login-btn {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #4ade80;
  border: 2px solid #4ade80;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}

.login-btn:hover {
  background: rgba(74, 222, 128, 0.1);
  color: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 222, 128, 0.2);
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d1d5db;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

.feature-item i {
  font-size: 14px;
  color: #4ade80;
}

.register-benefits {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4ade80;
  text-align: center;
  margin-bottom: 20px;
}

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

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d1d5db;
  font-size: 0.95rem;
  font-weight: 500;
}

.benefits-list li i {
  color: #4ade80;
  font-size: 14px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 60px 15px;
  }
  
  .register-box {
    padding: 30px;
    margin: 20px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 1rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .form-input {
    padding: 14px 18px 14px 45px;
  }
  
  .input-icon {
    left: 16px;
    font-size: 16px;
  }
  
  .register-features {
    gap: 12px;
  }
  
  .feature-item {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  .register-benefits {
    padding: 20px;
  }
  
  .benefits-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 40px 10px;
  }
  
  .register-box {
    padding: 25px;
    margin: 10px;
    border-radius: 20px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    padding: 12px 16px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 14px;
    font-size: 15px;
  }
  
  .register-btn,
  .login-btn {
    padding: 14px;
    font-size: 1rem;
  }
  
  .register-features {
    gap: 10px;
  }
  
  .feature-item {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
  
  .register-benefits {
    padding: 18px;
  }
  
  .benefits-title {
    font-size: 1rem;
  }
  
  .benefits-list li {
    font-size: 0.9rem;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  z-index: 1;
}

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #ffd700, #ffed4e, #ffc107);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  color: #ffd700;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.hero-feature:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 40px;
  background: linear-gradient(45deg, #ffd700, #ffc107);
  color: #1a1a2e;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.hero-cta:hover::before {
  animation: shine 0.8s ease-in-out;
}

.hero-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
}

@keyframes shine {
  0% {
    opacity: 0;
    left: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: 50%;
  }
}

/* Promotion Sections */
.promotion-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
}

.promotion-section.promotion-alt {
  background: linear-gradient(180deg, #16213e 0%, #0a0a0a 100%);
}

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.05) 0%, transparent 70%);
  z-index: 1;
}

.promotion-section.promotion-alt::before {
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
}

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

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

.promotion-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #4ade80, #22c55e, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promotion-alt .promotion-title {
  background: linear-gradient(45deg, #ff6b35, #ff8e53, #ffa726);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promotion-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.promotion-benefits {
  margin-bottom: 40px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.promotion-alt .benefit-item::before {
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
}

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

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.1);
}

.promotion-alt .benefit-item:hover {
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.benefit-item i {
  font-size: 1.5rem;
  color: #4ade80;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.promotion-alt .benefit-item i {
  color: #ff6b35;
}

.benefit-item span {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

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

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.promo-btn:hover {
  transform: translateY(-3px);
}

.promo-btn-primary {
  background: linear-gradient(45deg, #4ade80, #22c55e);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
}

.promo-btn-primary:hover {
  box-shadow: 0 15px 40px rgba(74, 222, 128, 0.4);
}

.promo-btn-secondary {
  background: linear-gradient(45deg, #ff6b35, #ff8e53);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.promo-btn-secondary:hover {
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.promo-btn-accent {
  background: linear-gradient(45deg, #3b82f6, #2563eb);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.promo-btn-accent:hover {
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.promo-btn-gradient {
  background: linear-gradient(45deg, #ffd700, #ffc107);
  color: #1a1a2e;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.promo-btn-gradient:hover {
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-features {
    gap: 20px;
  }
  
  .promotion-title {
    font-size: 2.2rem;
  }
  
  .promotion-content {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 15px 80px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-cta {
    padding: 18px 35px;
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 60px 15px;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
  
  .promotion-content {
    padding: 30px;
  }
  
  .benefit-item {
    padding: 18px;
  }
  
  .benefit-item span {
    font-size: 1rem;
  }
  
  .promo-btn {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-feature {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .hero-cta {
    padding: 16px 28px;
    font-size: 1.1rem;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-content {
    padding: 25px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 12px;
  }
  
  .benefit-item:hover {
    transform: translateY(-5px);
  }
  
  .benefit-item span {
    font-size: 0.95rem;
  }
  
  .promo-btn {
    padding: 14px 25px;
    font-size: 1rem;
  }
}