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

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

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

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

a:hover {
  color: #ffed4e;
}

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url%28%23grid%29"/></svg>') repeat;
  opacity: 0.1;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  min-width: 180px;
  justify-content: center;
}

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

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

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

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

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

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.hero-stats {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(0, 0, 0, 0.9);
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid #ffd700;
  display: flex;
  gap: 1.5rem;
  backdrop-filter: blur(10px);
}

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

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

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }
  
  .feature-item {
    padding: 0.8rem;
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 0.8rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    min-width: 160px;
  }
  
  .hero-stats {
    position: static;
    margin-top: 20px;
    justify-content: center;
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-stats {
    gap: 1rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .feature-item i {
    font-size: 1.5rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-description {
    font-size: 1.2rem;
  }
  
  .hero-content {
    gap: 50px;
  }
}

/* Header Styles */
.main-header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  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 .logo-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.logo-tagline {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.75rem;
  color: #cccccc;
  margin-top: 2px;
  font-weight: 400;
}

.header-logo .logo-link:hover .logo-text {
  background: linear-gradient(135deg, #ffed4e, #ffb347);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

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

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
  background: linear-gradient(45deg, #ffed4e, #ffb347);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  color: #000000;
}

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

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

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 2000;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
}

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

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

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

.mobile-menu-close:hover {
  color: #ffed4e;
  transform: scale(1.1);
}

.mobile-nav {
  flex: 1;
}

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

.mobile-nav-link,
.mobile-cta-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1rem;
  color: #cccccc;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

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

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

.mobile-cta-button {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000000;
  font-weight: 600;
  margin-top: 1rem;
  border-radius: 12px;
  border: none;
  justify-content: center;
  font-size: 1.2rem;
}

.mobile-cta-button:hover {
  background: linear-gradient(45deg, #ffed4e, #ffb347);
  color: #000000;
  transform: scale(1.02);
}

.mobile-cta-button i {
  color: #000000 !important;
}

.desktop-only {
  display: inline-flex;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
    height: 70px;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .logo-tagline {
    font-size: 0.7rem;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-container {
    padding: 1.5rem;
  }
  
  .mobile-menu-header {
    margin-bottom: 2rem;
  }
  
  .mobile-logo-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 65px;
    padding: 0 10px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .logo-tagline {
    font-size: 0.65rem;
  }
  
  .mobile-menu-container {
    padding: 1rem;
  }
  
  .mobile-nav-link,
  .mobile-cta-button {
    padding: 1.2rem 0.8rem;
    font-size: 1rem;
  }
  
  .mobile-logo-text {
    font-size: 1.3rem;
  }
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .header-container {
    padding: 0 30px;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 0.95rem;
  }
  
  .cta-button {
    padding: 0.7rem 1.3rem;
    font-size: 0.85rem;
  }
}

/* Ensure header doesn't interfere with page content */
body {
  padding-top: 80px;
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}

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

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

/* About Section Styles */
.about-section {
  background: linear-gradient(180deg, #0f0f1a 0%, #1a1a1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.about-title {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffa500);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  line-height: 1.3;
}

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

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

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

.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 215, 0, 0.08);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.feature-highlight:hover::before {
  left: 100%;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.feature-content h3 {
  font-size: 1.3rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-wrapper:hover .about-img {
  transform: scale(1.05);
}

.stats-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.stat-box {
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  flex: 1;
}

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

.stat-desc {
  font-size: 0.9rem;
  color: #cccccc;
  margin-top: 0.3rem;
}

.trust-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffd700;
  transition: all 0.3s ease;
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-container {
    padding: 0 15px;
  }
  
  .about-section {
    padding: 60px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  
  .about-description {
    margin-bottom: 2rem;
  }
  
  .about-description p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  
  .features-list {
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .feature-highlight {
    padding: 1.2rem;
    gap: 1rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-content h3 {
    font-size: 1.1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
  
  .stats-overlay {
    bottom: 15px;
    left: 15px;
    right: 15px;
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .stat-box {
    padding: 0.8rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
  
  .stat-desc {
    font-size: 0.8rem;
  }
  
  .trust-badges {
    gap: 0.8rem;
    margin-top: 1rem;
  }
  
  .badge-item {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  
  .badge-item i {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.8rem;
  }
  
  .feature-highlight {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .badge-item {
    justify-content: center;
    width: 100%;
    max-width: 200px;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .about-container {
    padding: 0 30px;
  }
  
  .about-content {
    gap: 60px;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .feature-highlight {
    padding: 1.3rem;
  }
}

/* Homepage Section Styles */
.homepage-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f1a 50%, #1a0f1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.section-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.homepage-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.content-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.content-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.content-card:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.card-icon i {
  font-size: 2rem;
  color: #000000;
}

.card-content h3 {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card-content p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin: 0;
}

.card-content strong {
  color: #ffd700;
  font-weight: 600;
}

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

.inline-link:hover {
  color: #ffed4e;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.sidebar-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-box {
  background: rgba(15, 15, 26, 0.8);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.rate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.lottery-type {
  color: #cccccc;
  font-weight: 500;
}

.rate-value {
  color: #ffd700;
  font-weight: 700;
  font-size: 1.1rem;
}

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

.update-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0;
  color: #cccccc;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.update-list i {
  color: #ffd700;
  font-size: 0.9rem;
}

.homepage-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
}

.homepage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(255, 215, 0, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.overlay-content {
  text-align: center;
  color: white;
  padding: 2rem;
}

.overlay-content h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.overlay-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #cccccc;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .homepage-container {
    padding: 0 15px;
  }
  
  .homepage-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  
  .card-icon i {
    font-size: 1.5rem;
  }
  
  .card-content h3 {
    font-size: 1.2rem;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
  
  .sidebar-features {
    gap: 1.5rem;
  }
  
  .feature-box {
    padding: 1.5rem;
  }
  
  .feature-header {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .feature-header h4 {
    font-size: 1.1rem;
  }
  
  .rate-item {
    padding: 0.6rem;
  }
  
  .update-list li {
    padding: 0.6rem 0;
    font-size: 0.9rem;
  }
  
  .homepage-image {
    height: 300px;
  }
  
  .overlay-content {
    padding: 1.5rem;
  }
  
  .overlay-content h4 {
    font-size: 1.3rem;
  }
  
  .overlay-content p {
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.7rem;
  }
  
  .content-card {
    padding: 1.2rem;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-box {
    padding: 1.2rem;
  }
  
  .homepage-image {
    height: 250px;
  }
  
  .image-overlay {
    opacity: 1;
  }
  
  .rate-item {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .homepage-container {
    padding: 0 30px;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .content-grid {
    gap: 2.5rem;
  }
  
  .card-icon {
    width: 70px;
    height: 70px;
  }
  
  .card-icon i {
    font-size: 1.8rem;
  }
}

/* Login Section Styles */
.login-section {
  background: linear-gradient(180deg, #0f0f1a 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

.login-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.login-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.info-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.info-card:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.card-header i {
  font-size: 1.5rem;
  color: #ffd700;
  width: 30px;
  text-align: center;
}

.card-header h3 {
  font-size: 1.3rem;
  color: #ffd700;
  margin: 0;
  font-weight: 600;
}

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

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

.login-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.feature-showcase {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 250px;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.showcase-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
}

.overlay-badge {
  background: rgba(0, 0, 0, 0.8);
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
}

.overlay-badge i {
  color: #ffd700;
  font-size: 1rem;
}

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

.login-methods h4,
.speed-stats h4 {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.method-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

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

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

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(15, 15, 26, 0.8);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(255, 215, 0, 0.05);
  transform: translateX(5px);
}

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

.stat-icon i {
  font-size: 1.5rem;
  color: #000000;
}

.stat-content {
  flex: 1;
}

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

.stat-label {
  font-size: 0.9rem;
  color: #ffd700;
  margin-bottom: 0.2rem;
}

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

.action-section {
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.action-content h3 {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 1rem;
  font-weight: 700;
}

.action-content p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.action-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-login,
.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 180px;
  justify-content: center;
}

.btn-login {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .login-container {
    padding: 0 15px;
  }
  
  .login-section {
    padding: 60px 0;
  }
  
  .login-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .card-header {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .card-header h3 {
    font-size: 1.1rem;
  }
  
  .info-card p {
    font-size: 0.9rem;
  }
  
  .feature-showcase {
    height: 200px;
  }
  
  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .method-item {
    padding: 0.8rem;
  }
  
  .method-item i {
    font-size: 1.3rem;
  }
  
  .method-item span {
    font-size: 0.8rem;
  }
  
  .stat-box {
    padding: 1.2rem;
    gap: 1rem;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
  }
  
  .stat-icon i {
    font-size: 1.3rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .action-section {
    padding: 2rem;
  }
  
  .action-content h3 {
    font-size: 1.7rem;
  }
  
  .action-content p {
    font-size: 1rem;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn-login,
  .btn-register {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.7rem;
    line-height: 1.4;
  }
  
  .methods-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-box {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .action-content h3 {
    font-size: 1.5rem;
  }
  
  .action-section {
    padding: 1.5rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .login-container {
    padding: 0 30px;
  }
  
  .login-content {
    gap: 3.5rem;
  }
  
  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Direct Website Section Styles */
.direct-website-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f1a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

.direct-website-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.main-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.content-block {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.content-block:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.block-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.block-icon i {
  font-size: 2rem;
  color: #000000;
}

.block-content h3 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
  font-weight: 600;
}

.block-content p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin: 0;
}

.block-content strong {
  color: #ffd700;
  font-weight: 600;
}

.yiki-service {
  background: rgba(15, 15, 26, 0.8);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.service-header i {
  font-size: 2rem;
  color: #ffd700;
}

.service-header h3 {
  font-size: 1.6rem;
  color: #ffd700;
  margin: 0;
  font-weight: 700;
}

.service-content p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-content strong {
  color: #ffd700;
  font-weight: 600;
}

.yiki-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  background: rgba(255, 215, 0, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

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

.stat-label {
  font-size: 1rem;
  color: #cccccc;
  font-weight: 500;
}

.formula-section {
  background: rgba(255, 215, 0, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
}

.formula-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.formula-header i {
  font-size: 2rem;
  color: #ffd700;
}

.formula-header h3 {
  font-size: 1.6rem;
  color: #ffd700;
  margin: 0;
  font-weight: 700;
}

.formula-content p {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.formula-content strong {
  color: #ffd700;
  font-weight: 600;
}

.formula-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.type-card {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.type-card:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
}

.type-card i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.type-card h4 {
  font-size: 1.2rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

.casino-games {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.games-showcase {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 250px;
}

.games-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.games-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(255, 215, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.games-showcase:hover .games-overlay {
  opacity: 1;
}

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

.overlay-content h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #ffd700;
  font-weight: 700;
}

.overlay-content p {
  font-size: 1.1rem;
  color: #ffffff;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.game-category {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.game-category:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(5px);
}

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

.category-icon i {
  font-size: 1.3rem;
  color: #000000;
}

.category-content h4 {
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

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

.games-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.1);
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  font-size: 0.9rem;
  color: #ffd700;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

.cta-section {
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.cta-section h3 {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-play-now,
.btn-view-games {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 180px;
  justify-content: center;
}

.btn-play-now {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

.btn-view-games:hover {
  background: #ffd700;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .direct-website-container {
    padding: 0 15px;
  }
  
  .direct-website-section {
    padding: 60px 0;
  }
  
  .direct-website-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .content-block {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    gap: 1.5rem;
  }
  
  .block-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  
  .block-icon i {
    font-size: 1.5rem;
  }
  
  .block-content h3 {
    font-size: 1.3rem;
  }
  
  .block-content p {
    font-size: 0.9rem;
  }
  
  .yiki-service,
  .formula-section {
    padding: 2rem;
  }
  
  .service-header,
  .formula-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .service-header h3,
  .formula-header h3 {
    font-size: 1.4rem;
  }
  
  .yiki-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .formula-types {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .games-showcase {
    height: 200px;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .game-category {
    padding: 1.2rem;
  }
  
  .category-icon {
    width: 40px;
    height: 40px;
  }
  
  .category-icon i {
    font-size: 1.1rem;
  }
  
  .games-features {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .feature-item {
    justify-content: center;
    width: 100%;
    max-width: 250px;
  }
  
  .cta-section {
    padding: 2rem;
  }
  
  .cta-section h3 {
    font-size: 1.7rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn-play-now,
  .btn-view-games {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.7rem;
    line-height: 1.4;
  }
  
  .yiki-stats {
    gap: 0.8rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .games-overlay {
    opacity: 1;
  }
  
  .overlay-content h4 {
    font-size: 1.5rem;
  }
  
  .overlay-content p {
    font-size: 1rem;
  }
  
  .cta-section h3 {
    font-size: 1.5rem;
  }
  
  .cta-section {
    padding: 1.5rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .direct-website-container {
    padding: 0 30px;
  }
  
  .direct-website-content {
    gap: 3.5rem;
  }
  
  .yiki-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .formula-types {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
}

/* Winning Section Styles */
.winning-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f1a 50%, #0a0a0a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

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

.winning-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.winning-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.info-block {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 18px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.info-block:hover::before {
  left: 100%;
}

.info-block:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.block-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.block-header i {
  font-size: 1.8rem;
  color: #ffd700;
  width: 35px;
  text-align: center;
}

.block-header h3 {
  font-size: 1.4rem;
  color: #ffd700;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.info-block p {
  font-size: 1.05rem;
  color: #cccccc;
  line-height: 1.8;
  margin: 0;
}

.info-block strong {
  color: #ffd700;
  font-weight: 600;
}

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

.inline-link:hover {
  color: #ffed4e;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.support-service {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.service-showcase {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
}

.support-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-showcase:hover .support-img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(255, 215, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-showcase:hover .service-overlay {
  opacity: 1;
}

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

.overlay-content i {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.overlay-content h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #ffd700;
  font-weight: 700;
}

.overlay-content p {
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0;
}

.support-channels h4,
.service-features h4,
.transparency-info h4 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: center;
  position: relative;
}

.support-channels h4::after,
.service-features h4::after,
.transparency-info h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  border-radius: 2px;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.channel-item:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(5px);
}

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

.channel-icon i {
  font-size: 1.5rem;
  color: #000000;
}

.channel-info h5 {
  font-size: 1.2rem;
  color: #ffd700;
  margin: 0 0 0.3rem 0;
  font-weight: 600;
}

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

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-stat {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(15, 15, 26, 0.8);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-stat:hover {
  background: rgba(255, 215, 0, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

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

.stat-icon i {
  font-size: 1.5rem;
  color: #000000;
}

.stat-details {
  flex: 1;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  font-family: 'Prompt', sans-serif;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 1rem;
  color: #ffd700;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

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

.transparency-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.transparency-item:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(8px);
}

.transparency-item i {
  font-size: 1.5rem;
  color: #ffd700;
  width: 25px;
  text-align: center;
}

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

.winning-cta {
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 4rem;
  text-align: center;
}

.cta-content i {
  font-size: 4rem;
  color: #ffd700;
  margin-bottom: 1.5rem;
}

.cta-content h3 {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.3rem;
  color: #cccccc;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-start-playing,
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.3rem 2.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 200px;
  justify-content: center;
}

.btn-start-playing {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000000;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-start-playing:hover {
  background: linear-gradient(45deg, #ffed4e, #ffb347);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  color: #000000;
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .winning-container {
    padding: 0 15px;
  }
  
  .winning-section {
    padding: 60px 0;
  }
  
  .winning-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .info-block {
    padding: 2rem;
  }
  
  .block-header {
    gap: 1rem;
    margin-bottom: 1.2rem;
  }
  
  .block-header h3 {
    font-size: 1.2rem;
  }
  
  .info-block p {
    font-size: 0.95rem;
  }
  
  .service-showcase {
    height: 220px;
  }
  
  .overlay-content i {
    font-size: 2.5rem;
  }
  
  .overlay-content h4 {
    font-size: 1.5rem;
  }
  
  .support-channels h4,
  .service-features h4,
  .transparency-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  
  .channels-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
  }
  
  .channel-item {
    padding: 1.2rem;
  }
  
  .channel-icon {
    width: 45px;
    height: 45px;
  }
  
  .channel-icon i {
    font-size: 1.3rem;
  }
  
  .channel-info h5 {
    font-size: 1.1rem;
  }
  
  .features-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .feature-stat {
    padding: 1.5rem;
    gap: 1.2rem;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
  }
  
  .stat-icon i {
    font-size: 1.3rem;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .stat-desc {
    font-size: 0.8rem;
  }
  
  .transparency-grid {
    gap: 1.2rem;
  }
  
  .transparency-item {
    padding: 1.2rem;
    gap: 0.8rem;
  }
  
  .transparency-item span {
    font-size: 0.9rem;
  }
  
  .winning-cta {
    padding: 2.5rem;
  }
  
  .cta-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  
  .btn-start-playing,
  .btn-contact {
    width: 100%;
    max-width: 300px;
    padding: 1.1rem 2.2rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.7rem;
    line-height: 1.4;
  }
  
  .info-block {
    padding: 1.5rem;
  }
  
  .block-header {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .block-header h3 {
    font-size: 1.1rem;
  }
  
  .service-overlay {
    opacity: 1;
  }
  
  .overlay-content h4 {
    font-size: 1.3rem;
  }
  
  .overlay-content p {
    font-size: 1rem;
  }
  
  .feature-stat {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }
  
  .cta-content h3 {
    font-size: 1.6rem;
  }
  
  .winning-cta {
    padding: 2rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .winning-container {
    padding: 0 30px;
  }
  
  .winning-content {
    gap: 3.5rem;
  }
  
  .channels-grid {
    grid-template-columns: 1fr;
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

/* Company Info Section */
.company-info {
  padding-right: 1rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
}

.footer-logo-tagline {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 400;
  margin-top: 0.3rem;
  display: block;
}

.company-description {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

/* Footer Titles */
.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1.5rem;
  position: relative;
}

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

/* Footer Links */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.3rem 0;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.footer-links li a:hover {
  color: #ffd700;
  padding-left: 0.5rem;
}

.footer-links li a i {
  color: #ffd700;
  width: 16px;
  text-align: center;
  font-size: 0.9rem;
}

/* Social Media Section */
.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

.social-link:hover {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.social-link.facebook:hover {
  background: #1877f2;
  color: #ffffff;
  border-color: #1877f2;
}

.social-link.line:hover {
  background: #00b900;
  color: #ffffff;
  border-color: #00b900;
}

.social-link.telegram:hover {
  background: #0088cc;
  color: #ffffff;
  border-color: #0088cc;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  color: #ffffff;
  border-color: #ee2a7b;
}

/* Payment Methods */
.payment-methods {
  margin-top: 1rem;
}

.payment-title {
  font-size: 1rem;
  color: #ffd700;
  margin-bottom: 1rem;
  font-weight: 600;
}

.payment-icons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.payment-icon {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #cccccc;
  font-size: 0.85rem;
}

.payment-icon i {
  color: #ffd700;
  width: 16px;
  text-align: center;
  font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.copyright {
  flex: 1;
}

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

.disclaimer {
  font-size: 0.8rem !important;
  color: #888888 !important;
}

.footer-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.1);
  padding: 0.6rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  font-size: 0.8rem;
  color: #ffd700;
  font-weight: 500;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .main-footer {
    padding: 40px 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .company-info {
    padding-right: 0;
    text-align: center;
  }
  
  .footer-logo-text {
    font-size: 2rem;
  }
  
  .footer-logo-tagline {
    font-size: 0.85rem;
  }
  
  .company-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-info {
    align-items: center;
  }
  
  .footer-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    align-items: center;
  }
  
  .footer-links li a {
    justify-content: center;
    max-width: 200px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .payment-methods {
    text-align: center;
  }
  
  .payment-icons {
    align-items: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 30px 0 15px;
  }
  
  .footer-content {
    gap: 2rem;
  }
  
  .footer-logo-text {
    font-size: 1.8rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
  
  .footer-links {
    gap: 0.6rem;
  }
  
  .footer-links li a {
    font-size: 0.85rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .contact-item {
    font-size: 0.85rem;
  }
  
  .payment-icon {
    font-size: 0.8rem;
  }
  
  .badge-item {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .footer-badges {
    gap: 1rem;
  }
  
  .copyright p {
    font-size: 0.85rem;
  }
  
  .disclaimer {
    font-size: 0.75rem !important;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .footer-container {
    padding: 0 30px;
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
  }
  
  .footer-logo-text {
    font-size: 2rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
  
  .social-link {
    width: 42px;
    height: 42px;
  }
}

/* Large screens */
@media (min-width: 1281px) {
  .footer-content {
    gap: 4rem;
  }
}

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

.sticky-btn {
  flex: 1;
  max-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 2px;
  min-height: 65px;
  position: relative;
  overflow: hidden;
}

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

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

.sticky-btn i {
  font-size: 1.2rem;
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

.sticky-btn span {
  font-size: 0.75rem;
  line-height: 1.2;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Login Button */
.login-btn {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: #ffffff;
}

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

/* Register Button */
.register-btn {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: #ffffff;
}

.register-btn:hover {
  background: linear-gradient(135deg, #34ce57, #28a745);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
  color: #ffffff;
}

/* Credit Button */
.credit-btn {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #000000;
  font-weight: 700;
}

.credit-btn:hover {
  background: linear-gradient(135deg, #ffed4e, #ffb347);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  color: #000000;
}

.credit-btn i,
.credit-btn span {
  color: #000000;
}

/* Pulse effect for credit button */
.credit-btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(255, 215, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 8px;
  }
  
  .sticky-btn {
    max-width: none;
    padding: 10px 6px;
    margin: 0 1px;
    min-height: 60px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 6px;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    margin: 0;
    min-height: 55px;
    border-radius: 6px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.65rem;
  }
}

/* Very small screens */
@media (max-width: 320px) {
  .sticky-btn {
    padding: 6px 2px;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .sticky-btn span {
    font-size: 0.6rem;
    line-height: 1.1;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .sticky-btn {
    max-width: 140px;
    padding: 14px 10px;
    min-height: 70px;
  }
  
  .sticky-btn i {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
  
  .sticky-btn span {
    font-size: 0.8rem;
  }
}

/* Prevent body content from being hidden behind sticky buttons */
body {
  padding-bottom: 75px;
}

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

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

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

@media (max-width: 1024px) and (min-width: 769px) {
  body {
    padding-bottom: 80px;
  }
}

/* Hide on very large screens if needed */
@media (min-width: 1400px) {
  .sticky-buttons {
    max-width: 400px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px 15px 0 0;
  }
}

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

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

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

.login-form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 450px;
  margin: 0 auto;
}

/* Logo Section */
.login-logo {
  margin-bottom: 2rem;
  text-align: center;
}

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

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

/* Login Card */
.login-card {
  background: rgba(15, 15, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffa500, #ffd700);
  border-radius: 20px 20px 0 0;
}

/* Login Header */
.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header h1 {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

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

/* Error Message */
.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

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

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

/* Form Styling */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffd700;
  font-weight: 600;
  font-size: 0.9rem;
}

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

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

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

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

.form-input:valid {
  border-color: rgba(40, 167, 69, 0.6);
}

.form-input.error {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.05);
}

/* Password Input Wrapper */
.password-input-wrapper {
  position: relative;
}

.password-input-wrapper .form-input {
  padding-right: 3rem;
}

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

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

/* Field Error */
.field-error {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  min-height: 1rem;
  display: none;
}

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

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.login-btn {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000000;
  border: none;
  border-radius: 12px;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

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

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

.btn-loader {
  display: none;
}

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

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

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

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

/* Login Footer */
.login-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #888888;
  font-size: 0.8rem;
}

.security-info i {
  color: #28a745;
  font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .login-page-container {
    padding: 0 15px;
  }
  
  .login-page-section {
    padding: 1.5rem 0;
  }
  
  .login-form-wrapper {
    max-width: 100%;
  }
  
  .login-card {
    padding: 2rem;
  }
  
  .login-header h1 {
    font-size: 1.8rem;
  }
  
  .login-header p {
    font-size: 0.9rem;
  }
  
  .logo-image {
    width: 100px;
    height: 100px;
  }
  
  .form-input {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }
  
  .password-input-wrapper .form-input {
    padding-right: 2.8rem;
  }
  
  .login-btn {
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-card {
    padding: 1.5rem;
    margin: 0 10px;
  }
  
  .login-header h1 {
    font-size: 1.6rem;
  }
  
  .logo-image {
    width: 80px;
    height: 80px;
  }
  
  .login-logo {
    margin-bottom: 1.5rem;
  }
  
  .form-input {
    padding: 0.8rem 0.9rem;
  }
  
  .password-input-wrapper .form-input {
    padding-right: 2.5rem;
  }
  
  .password-toggle {
    right: 0.8rem;
  }
  
  .login-btn {
    padding: 1rem 1.2rem;
  }
  
  .register-btn {
    padding: 0.8rem 1.2rem;
  }
  
  .security-info {
    font-size: 0.75rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .login-form-wrapper {
    max-width: 500px;
  }
  
  .login-card {
    padding: 3rem;
  }
}

/* Animation for form validation */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

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

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

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

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

.register-form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 450px;
  margin: 0 auto;
}

/* Logo Section */
.register-logo {
  margin-bottom: 2rem;
  text-align: center;
}

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

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

/* Register Card */
.register-card {
  background: rgba(15, 15, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffa500, #ffd700);
  border-radius: 20px 20px 0 0;
}

/* Register Header */
.register-header {
  text-align: center;
  margin-bottom: 2rem;
}

.register-header h1 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.register-header p {
  color: #cccccc;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

/* Error Message */
.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

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

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

/* Form Styling */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffd700;
  font-weight: 600;
  font-size: 0.9rem;
}

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

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 1.2rem 1.2rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

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

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

.form-input:valid {
  border-color: rgba(40, 167, 69, 0.6);
}

.form-input.error {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.05);
}

/* Field Error */
.field-error {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  min-height: 1rem;
  display: none;
}

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

/* Field Info */
.field-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #888888;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.field-info i {
  color: #ffd700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Form Actions */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.register-btn {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000000;
  border: none;
  border-radius: 12px;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

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

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

.btn-loader {
  display: none;
}

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

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

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

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

/* Register Footer */
.register-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #888888;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.security-info i {
  color: #28a745;
  font-size: 1rem;
}

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

.terms-info p {
  color: #888888;
  font-size: 0.75rem;
  line-height: 1.5;
  margin: 0;
}

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

.terms-info a:hover {
  color: #ffed4e;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .register-page-container {
    padding: 0 15px;
  }
  
  .register-page-section {
    padding: 1.5rem 0;
  }
  
  .register-form-wrapper {
    max-width: 100%;
  }
  
  .register-card {
    padding: 2rem;
  }
  
  .register-header h1 {
    font-size: 1.6rem;
  }
  
  .register-header p {
    font-size: 0.9rem;
  }
  
  .register-logo .logo-image {
    width: 100px;
    height: 100px;
  }
  
  .form-input {
    padding: 1rem 1rem;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 1.1rem 1.5rem;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .field-info {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .register-card {
    padding: 1.5rem;
    margin: 0 10px;
  }
  
  .register-header h1 {
    font-size: 1.4rem;
  }
  
  .register-logo .logo-image {
    width: 80px;
    height: 80px;
  }
  
  .register-logo {
    margin-bottom: 1.5rem;
  }
  
  .form-input {
    padding: 0.9rem 0.9rem;
  }
  
  .register-btn {
    padding: 1rem 1.2rem;
  }
  
  .login-btn {
    padding: 0.8rem 1.2rem;
  }
  
  .security-info {
    font-size: 0.75rem;
  }
  
  .terms-info p {
    font-size: 0.7rem;
  }
  
  .field-info {
    font-size: 0.7rem;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .register-form-wrapper {
    max-width: 500px;
  }
  
  .register-card {
    padding: 3rem;
  }
}

/* Animation for form validation */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

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

/* Success animation */
@keyframes success {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.success {
  animation: success 0.3s ease-in-out;
}

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

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

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

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffa500);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  padding: 1.5rem 2.5rem;
  margin-bottom: 3rem;
  font-size: 1.2rem;
  color: #ffd700;
  font-weight: 600;
}

.hero-highlight i {
  font-size: 1.5rem;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000000;
  padding: 1.8rem 3rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta-btn:hover {
  background: linear-gradient(45deg, #ffed4e, #ffb347);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
  color: #000000;
}

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

/* Promotion Sections */
.promotion-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f1a 100%);
  position: relative;
}

.promotion-section:nth-child(even) {
  background: linear-gradient(180deg, #0f0f1a 0%, #1a1a1a 100%);
}

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

.promotion-card {
  background: rgba(15, 15, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.promotion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffa500, #ffd700);
  border-radius: 25px 25px 0 0;
}

.promotion-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.promotion-badge {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000000;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cashback-badge {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: #ffffff;
}

.deposit-badge {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #ffffff;
}

.prize-badge {
  background: linear-gradient(45deg, #dc3545, #c82333);
  color: #ffffff;
}

.promotion-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.3;
  margin: 0;
}

.promotion-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

/* Amount Display */
.promotion-amount {
  text-align: center;
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.amount-label {
  display: block;
  color: #cccccc;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.amount-value {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.amount-currency {
  display: block;
  color: #ffd700;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Cashback Display */
.cashback-percentage {
  text-align: center;
  background: rgba(40, 167, 69, 0.1);
  border: 2px solid rgba(40, 167, 69, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.percentage-label {
  display: block;
  color: #cccccc;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.percentage-value {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, #28a745, #20c997);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.percentage-info {
  display: block;
  color: #28a745;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* Deposit Bonus Display */
.deposit-bonus {
  text-align: center;
  background: rgba(0, 123, 255, 0.1);
  border: 2px solid rgba(0, 123, 255, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.bonus-label {
  display: block;
  color: #cccccc;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.bonus-value {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  font-family: 'Prompt', sans-serif;
  background: linear-gradient(135deg, #007bff, #0056b3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.bonus-info {
  display: block;
  color: #007bff;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* Daily Prizes Display */
.daily-prizes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.prize-item {
  background: rgba(220, 53, 69, 0.1);
  border: 2px solid rgba(220, 53, 69, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.prize-item.main-prize {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
}

.prize-item i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.prize-item.secondary-prize i {
  color: #dc3545;
}

.prize-rank {
  color: #cccccc;
  font-size: 0.9rem;
  font-weight: 600;
}

.prize-amount {
  color: #ffd700;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Prompt', sans-serif;
}

.prize-item.secondary-prize .prize-amount {
  color: #dc3545;
}

/* Features List */
.promotion-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.promotion-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
}

.promotion-features li i {
  color: #28a745;
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* CTA Buttons */
.promotion-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(45deg, #ffd700, #ffa500);
  color: #000000;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  justify-self: center;
  justify-content: center;
  min-width: 250px;
}

.promotion-cta-btn:hover {
  background: linear-gradient(45deg, #ffed4e, #ffb347);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  color: #000000;
}

.cashback-btn {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: #ffffff;
}

.cashback-btn:hover {
  background: linear-gradient(45deg, #34ce57, #17d0a4);
  color: #ffffff;
}

.deposit-btn {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #ffffff;
}

.deposit-btn:hover {
  background: linear-gradient(45deg, #0d8bff, #0046a3);
  color: #ffffff;
}

.prize-btn {
  background: linear-gradient(45deg, #dc3545, #c82333);
  color: #ffffff;
}

.prize-btn:hover {
  background: linear-gradient(45deg, #e04e5a, #a71e2a);
  color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-promotion-section {
    padding: 100px 0 60px;
  }
  
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-highlight {
    flex-direction: column;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    gap: 0.8rem;
  }
  
  .hero-cta-btn {
    padding: 1.5rem 2.5rem;
    font-size: 1.1rem;
  }
  
  .promotion-section {
    padding: 40px 0;
  }
  
  .promotion-container {
    padding: 0 15px;
  }
  
  .promotion-card {
    padding: 2rem;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .promotion-amount,
  .cashback-percentage,
  .deposit-bonus {
    padding: 2rem;
  }
  
  .amount-value,
  .percentage-value,
  .bonus-value {
    font-size: 3rem;
  }
  
  .daily-prizes {
    gap: 1rem;
  }
  
  .prize-item {
    padding: 1.2rem;
  }
  
  .promotion-features li {
    font-size: 0.95rem;
  }
  
  .promotion-cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
    line-height: 1.3;
  }
  
  .hero-highlight {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .hero-cta-btn {
    padding: 1.3rem 2rem;
    font-size: 1rem;
  }
  
  .promotion-card {
    padding: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  
  .promotion-badge {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
  }
  
  .amount-value,
  .percentage-value,
  .bonus-value {
    font-size: 2.5rem;
  }
  
  .promotion-features li {
    font-size: 0.9rem;
  }
  
  .promotion-cta-btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
    min-width: 180px;
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-container,
  .promotion-container {
    padding: 0 30px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .promotion-title {
    font-size: 2rem;
  }
  
  .promotion-content {
    gap: 2.5rem;
  }
}

/* Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-highlight {
  animation: float 3s ease-in-out infinite;
}

.promotion-badge {
  animation: float 4s ease-in-out infinite;
}