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

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

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

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

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

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

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

.btn-secondary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

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

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

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

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

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

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff6b35, #ff8e3c, #667eea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #b8b8d1;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

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

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

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

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

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

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

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #00c851, #007e33);
  padding: 10px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 200, 81, 0.3);
  animation: pulse 2s infinite;
}

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

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

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

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

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .hero-actions {
    justify-content: center;
    gap: 10px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero-badge {
    position: static;
    margin: 20px auto 0;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .feature-item {
    padding: 10px;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Header Styles */
.site-header {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

/* Logo Styles */
.site-logo {
  flex-shrink: 0;
}

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

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

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

.site-name {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

/* Navigation Styles */
.main-navigation {
  display: flex;
  align-items: center;
}

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

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

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
}

.btn-cta {
  background: linear-gradient(45deg, #ff6b35, #ff8e3c);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  animation: cta-pulse 2s ease-in-out infinite;
}

.btn-cta:hover {
  background: linear-gradient(45deg, #e55a2e, #e57a30);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

@keyframes cta-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

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

.mobile-menu-toggle:hover .hamburger-line {
  background: #ff6b35;
}

.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;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
}

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

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

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.mobile-logo i {
  font-size: 1.5rem;
  color: #ff6b35;
}

.mobile-logo span {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.mobile-menu-close i {
  font-size: 1.2rem;
}

/* Mobile Navigation */
.mobile-navigation {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 300px;
}

.mobile-nav-item {
  width: 100%;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mobile-nav-link i {
  font-size: 1.2rem;
  color: #667eea;
  flex-shrink: 0;
}

.mobile-nav-link:hover i {
  color: #ff6b35;
}

.mobile-cta-item {
  margin-top: 20px;
}

.mobile-cta-link {
  background: linear-gradient(45deg, #ff6b35, #ff8e3c) !important;
  border: none !important;
  text-align: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.mobile-cta-link:hover {
  background: linear-gradient(45deg, #e55a2e, #e57a30) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.mobile-cta-link i {
  color: #ffffff !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
  
  .btn-cta {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
  
  .site-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .main-navigation,
  .header-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-content {
    height: 60px;
  }
  
  .site-name {
    font-size: 1rem;
  }
  
  .logo-link i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .site-name {
    font-size: 0.9rem;
  }
  
  .logo-link i {
    font-size: 1.3rem;
  }
  
  .mobile-menu-content {
    padding: 15px;
  }
  
  .mobile-nav-link {
    padding: 18px 15px;
    font-size: 1rem;
  }
}

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

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

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

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

.platform-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #ffffff;
}

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

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

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

.platform-highlights {
  display: grid;
  gap: 25px;
  margin-bottom: 40px;
}

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

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

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

.highlight-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.highlight-content h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

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

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

.platform-additional-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: #b8b8d1;
  margin-bottom: 18px;
}

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

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

.benefit-list {
  display: grid;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 10px;
  border-left: 4px solid #667eea;
}

.benefit-item i {
  color: #00c851;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.4;
}

.benefit-item strong {
  color: #ff6b35;
}

.platform-cta {
  text-align: left;
}

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

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

.platform-stats {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  display: flex;
  gap: 20px;
  justify-content: space-around;
}

.stat-item {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
}

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

.stat-label {
  font-size: 0.8rem;
  color: #b8b8d1;
  margin: 5px 0;
}

.stat-desc {
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .platform-content {
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
  }
  
  .platform-title {
    font-size: 2rem;
  }
  
  .platform-description p,
  .platform-additional-info p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .platform-overview-section {
    padding: 60px 0;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .platform-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .platform-description p,
  .platform-additional-info p {
    font-size: 0.95rem;
  }
  
  .highlight-item {
    padding: 20px;
  }
  
  .highlight-icon {
    width: 50px;
    height: 50px;
  }
  
  .highlight-icon i {
    font-size: 1.2rem;
  }
  
  .highlight-content h3 {
    font-size: 1.1rem;
  }
  
  .platform-cta {
    text-align: center;
  }
  
  .platform-stats {
    position: static;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .platform-container {
    padding: 0 15px;
  }
  
  .platform-title {
    font-size: 1.5rem;
  }
  
  .platform-description p,
  .platform-additional-info p {
    font-size: 0.9rem;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .highlight-icon {
    align-self: center;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .platform-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

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

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

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

.lottery-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.lottery-image {
  position: relative;
  animation: slideInLeft 1s ease-out;
}

.lottery-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  filter: brightness(1.05) contrast(1.1);
}

.lottery-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(45deg, #ff6b35, #ff8e3c);
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
}

.overlay-content i {
  font-size: 1rem;
  animation: star-glow 2s ease-in-out infinite alternate;
}

@keyframes star-glow {
  from {
    text-shadow: 0 0 5px #ffffff;
  }
  to {
    text-shadow: 0 0 15px #ffffff, 0 0 25px #ffffff;
  }
}

.lottery-text {
  animation: slideInRight 1s ease-out;
}

.lottery-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #ffffff;
}

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

.lottery-description p {
  font-size: 1rem;
  line-height: 1.8;
  color: #b8b8d1;
  margin-bottom: 20px;
}

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

.categories-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
}

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

.category-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.category-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

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

.category-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.category-content p {
  font-size: 0.9rem;
  color: #b8b8d1;
  line-height: 1.5;
}

.lottery-additional-info {
  margin-bottom: 30px;
}

.lottery-additional-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: #b8b8d1;
}

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

.lottery-action {
  text-align: center;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .lottery-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .lottery-title {
    font-size: 2rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lottery-popular-section {
    padding: 60px 0;
  }
  
  .lottery-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .lottery-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .lottery-description p,
  .lottery-additional-info p {
    font-size: 0.95rem;
  }
  
  .categories-title {
    font-size: 1.2rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .category-card {
    padding: 20px;
  }
  
  .category-icon {
    width: 45px;
    height: 45px;
  }
  
  .category-icon i {
    font-size: 1.1rem;
  }
  
  .category-content h4 {
    font-size: 1rem;
  }
  
  .category-content p {
    font-size: 0.85rem;
  }
  
  .lottery-overlay {
    position: static;
    display: inline-block;
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .lottery-container {
    padding: 0 15px;
  }
  
  .lottery-title {
    font-size: 1.5rem;
  }
  
  .lottery-description p,
  .lottery-additional-info p {
    font-size: 0.9rem;
  }
  
  .categories-title {
    font-size: 1.1rem;
  }
  
  .category-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .category-icon {
    align-self: center;
    margin-bottom: 10px;
  }
  
  .overlay-content {
    justify-content: center;
  }
}

/* Trustworthy Review Section */
.trustworthy-review-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  position: relative;
}

.trustworthy-review-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 60% 40%, rgba(0, 200, 81, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 30% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.review-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.review-header {
  text-align: center;
  position: relative;
}

.review-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #00c851, #007e33);
  padding: 15px 25px;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(0, 200, 81, 0.3);
  animation: trust-pulse 3s ease-in-out infinite;
}

.trust-badge i {
  font-size: 1.2rem;
}

@keyframes trust-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 200, 81, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 200, 81, 0.4);
  }
}

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

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

.review-description p {
  font-size: 1rem;
  line-height: 1.8;
  color: #b8b8d1;
  margin-bottom: 20px;
}

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

.review-description a {
  color: #667eea;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.review-description a:hover {
  color: #ff6b35;
}

.verification-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.verification-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

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

.step-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
}

.review-additional-info {
  margin-bottom: 30px;
}

.review-additional-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: #b8b8d1;
  margin-bottom: 18px;
}

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

.review-image {
  position: relative;
  animation: fadeInScale 1s ease-out;
}

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

.trust-indicators {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.indicator-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  padding: 12px 18px;
  border-radius: 25px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator-item i {
  color: #00c851;
  font-size: 1rem;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .review-main-content {
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
  }
  
  .review-title {
    font-size: 2.2rem;
  }
  
  .verification-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .trustworthy-review-section {
    padding: 60px 0;
  }
  
  .review-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .review-title {
    font-size: 1.9rem;
  }
  
  .trust-badge {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .review-description p,
  .review-additional-info p {
    font-size: 0.95rem;
  }
  
  .verification-title {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .step-item {
    padding: 18px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .step-content h4 {
    font-size: 0.95rem;
  }
  
  .trust-indicators {
    position: static;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .review-container {
    padding: 0 15px;
  }
  
  .review-title {
    font-size: 1.6rem;
  }
  
  .trust-badge {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  
  .review-description p,
  .review-additional-info p {
    font-size: 0.9rem;
  }
  
  .verification-title {
    font-size: 1.1rem;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .step-number {
    align-self: center;
    margin-bottom: 10px;
  }
  
  .indicator-item {
    justify-content: center;
    padding: 10px 15px;
    font-size: 0.85rem;
  }
}

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

.payment-system-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.payment-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.payment-header {
  text-align: center;
}

.payment-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
}

.payment-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  padding: 12px 25px;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.payment-subtitle i {
  font-size: 1.2rem;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.payment-main-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

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

.payment-description p {
  font-size: 1rem;
  line-height: 1.8;
  color: #b8b8d1;
  margin-bottom: 20px;
}

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

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

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

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

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

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

.feature-content p {
  font-size: 0.9rem;
  color: #b8b8d1;
  line-height: 1.4;
}

.payment-additional-info {
  margin-bottom: 30px;
}

.payment-additional-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: #b8b8d1;
  margin-bottom: 18px;
}

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

.payment-additional-info a {
  color: #ff6b35;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.payment-additional-info a:hover {
  color: #667eea;
}

.payment-action {
  text-align: center;
}

.payment-visual {
  position: relative;
  animation: floatAnimation 3s ease-in-out infinite;
}

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

.payment-stats {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 200px;
}

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

.stat-icon i {
  font-size: 1.2rem;
  color: #ffffff;
}

.stat-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.stat-label {
  font-size: 0.8rem;
  color: #b8b8d1;
  margin: 2px 0;
}

.stat-desc {
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 600;
}

@keyframes floatAnimation {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .payment-main-content {
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
  }
  
  .payment-title {
    font-size: 2.2rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-card {
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .payment-system-section {
    padding: 60px 0;
  }
  
  .payment-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .payment-title {
    font-size: 1.9rem;
  }
  
  .payment-subtitle {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .payment-description p,
  .payment-additional-info p {
    font-size: 0.95rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon i {
    font-size: 1.1rem;
  }
  
  .feature-content h3 {
    font-size: 1rem;
  }
  
  .payment-stats {
    position: static;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 15px;
    flex-direction: row;
    justify-content: space-around;
  }
  
  .stat-card {
    min-width: auto;
    flex: 1;
  }
}

@media (max-width: 480px) {
  .payment-container {
    padding: 0 15px;
  }
  
  .payment-title {
    font-size: 1.6rem;
  }
  
  .payment-subtitle {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .payment-description p,
  .payment-additional-info p {
    font-size: 0.9rem;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .feature-icon {
    align-self: center;
    margin-bottom: 10px;
  }
  
  .payment-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-card {
    justify-content: center;
  }
  
  .stat-info {
    align-items: center;
  }
}

/* Lottery Types Section */
.lottery-types-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  position: relative;
}

.lottery-types-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 40% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.lottery-types-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

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

.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #b8b8d1;
  font-weight: 500;
}

.lottery-main-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
}

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

.lottery-description p {
  font-size: 1rem;
  line-height: 1.8;
  color: #b8b8d1;
  margin-bottom: 20px;
}

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

.lottery-categories-detailed {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.category-detailed-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.category-detailed-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.category-icon-large {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon-large i {
  font-size: 1.5rem;
  color: #ffffff;
}

.category-title-section h3 {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.category-title-section p {
  font-size: 0.9rem;
  color: #ff6b35;
  font-weight: 600;
}

.category-details p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b8b8d1;
}

.foreign-lottery-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
}

.foreign-lottery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.foreign-lottery-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.foreign-lottery-item:hover {
  background: rgba(102, 126, 234, 0.15);
  transform: translateX(5px);
}

.foreign-lottery-item i {
  font-size: 1.2rem;
  color: #667eea;
  flex-shrink: 0;
}

.lottery-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lottery-details strong {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

.lottery-details span {
  color: #b8b8d1;
  font-size: 0.9rem;
}

.lottery-additional-content {
  margin-bottom: 40px;
}

.lottery-additional-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #b8b8d1;
  margin-bottom: 18px;
}

.lottery-additional-content strong {
  color: #667eea;
  font-weight: 700;
}

.lottery-additional-content a {
  color: #ff6b35;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.lottery-additional-content a:hover {
  color: #667eea;
}

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

.lottery-visual {
  position: relative;
  animation: slideInUp 1s ease-out;
}

.lottery-types-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.lottery-highlights {
  position: absolute;
  top: 25px;
  left: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  padding: 12px 18px;
  border-radius: 25px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: badge-glow 3s ease-in-out infinite alternate;
}

.highlight-badge i {
  font-size: 1rem;
  color: #ff6b35;
}

@keyframes badge-glow {
  from {
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
  }
  to {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
  }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .lottery-main-content {
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .lottery-types-section {
    padding: 60px 0;
  }
  
  .lottery-main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .lottery-description p,
  .lottery-additional-content p {
    font-size: 0.95rem;
  }
  
  .category-detailed-card {
    padding: 25px;
  }
  
  .category-header {
    gap: 15px;
  }
  
  .category-icon-large {
    width: 50px;
    height: 50px;
  }
  
  .category-icon-large i {
    font-size: 1.2rem;
  }
  
  .category-title-section h3 {
    font-size: 1.2rem;
  }
  
  .foreign-lottery-title {
    font-size: 1.3rem;
  }
  
  .lottery-cta {
    gap: 15px;
  }
  
  .lottery-highlights {
    position: static;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .lottery-types-container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
  
  .lottery-description p,
  .lottery-additional-content p {
    font-size: 0.9rem;
  }
  
  .category-detailed-card {
    padding: 20px;
  }
  
  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .category-icon-large {
    align-self: center;
  }
  
  .foreign-lottery-title {
    font-size: 1.2rem;
  }
  
  .foreign-lottery-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .lottery-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .highlight-badge {
    justify-content: center;
  }
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  margin-top: 80px;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.footer-content {
  padding: 60px 0 30px;
}

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

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

/* Footer Logo and About */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

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

.footer-site-name {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-description {
  color: #b8b8d1;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

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

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

.footer-feature i {
  color: #00c851;
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

/* Footer Titles */
.footer-title {
  font-family: 'Prompt', sans-serif;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  position: relative;
}

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

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

.footer-menu li a {
  color: #b8b8d1;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-menu li a:hover {
  color: #ff6b35;
  padding-left: 10px;
}

.footer-menu li a i {
  color: #667eea;
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}

.footer-menu li a:hover i {
  color: #ff6b35;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.contact-item i {
  color: #667eea;
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.contact-item a {
  color: #b8b8d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ff6b35;
}

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

.btn-footer-cta {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-footer-cta:hover {
  background: linear-gradient(45deg, #5a6fd8, #6a4190);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

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

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

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

.footer-legal {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.footer-legal a:hover {
  color: #ff6b35;
}

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

.footer-disclaimer {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 10px;
  padding: 15px 20px;
  text-align: center;
}

.disclaimer-text {
  color: #ff6b35;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.disclaimer-text i {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  
  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding: 40px 0 20px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .disclaimer-text {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .disclaimer-text i {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    padding: 30px 0 15px;
  }
  
  .footer-main {
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-logo {
    justify-content: center;
    text-align: center;
  }
  
  .footer-description {
    text-align: center;
    font-size: 0.9rem;
  }
  
  .footer-features {
    align-items: center;
  }
  
  .footer-title {
    text-align: center;
    font-size: 1.1rem;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-menu {
    align-items: center;
  }
  
  .contact-info {
    align-items: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .footer-cta {
    text-align: center;
  }
  
  .btn-footer-cta {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .footer-legal {
    font-size: 0.8rem;
  }
  
  .disclaimer-text {
    font-size: 0.8rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 999;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #5a6fd8, #6a4190);
  transform: translateY(-2px);
}

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

.sticky-btn-register {
  background: linear-gradient(135deg, #00c851, #007e33);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #00b04a, #006b2b);
  transform: translateY(-2px);
}

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

.sticky-btn-bonus {
  background: linear-gradient(135deg, #ff6b35, #ff8e3c);
  animation: sticky-pulse 2s ease-in-out infinite;
}

.sticky-btn-bonus:hover {
  background: linear-gradient(135deg, #e55a2e, #e57a30);
  transform: translateY(-2px);
  animation: none;
}

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

@keyframes sticky-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 8px rgba(255, 107, 53, 0);
  }
}

/* Hover Effects */
.sticky-btn:hover {
  color: #ffffff;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.75rem;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.7rem;
    min-height: 50px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
  }
  
  .sticky-btn span {
    font-size: 0.65rem;
  }
}

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

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

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

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

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

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

.login-content {
  max-width: 450px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.8s ease-out;
}

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

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

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

.logo-img {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

.login-subtitle {
  color: #b8b8d1;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Error Message */
.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 25px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

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

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

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

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

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

.form-label i {
  color: #667eea;
  font-size: 1rem;
}

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

.form-input:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

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

.form-input.error {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

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

/* Password Field */
.password-field {
  position: relative;
}

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

.password-toggle:hover {
  color: #667eea;
}

.password-toggle i {
  font-size: 1rem;
}

/* Field Errors */
.field-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
  font-weight: 500;
}

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

/* Login Button */
.btn-login {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #ff6b35, #ff8e3c);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-login:hover {
  background: linear-gradient(45deg, #e55a2e, #e57a30);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

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

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

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

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

/* Loading Spinner */
.loading-spinner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

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

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

/* Register Button */
.login-actions {
  margin-bottom: 30px;
}

.btn-register {
  width: 100%;
  padding: 12px;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border: 2px solid #667eea;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: 'Prompt', sans-serif;
}

.btn-register:hover {
  background: #667eea;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Security Badges */
.login-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.security-badges {
  display: flex;
  justify-content: space-around;
  gap: 15px;
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #b8b8d1;
  font-size: 0.8rem;
}

.security-badge i {
  color: #00c851;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 40px 0;
  }
  
  .login-content {
    padding: 30px 25px;
    margin: 20px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .logo-img {
    width: 70px;
    height: 70px;
  }
  
  .security-badges {
    flex-direction: column;
    gap: 10px;
  }
  
  .security-badge {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 0 15px;
  }
  
  .login-content {
    padding: 25px 20px;
    margin: 10px;
    border-radius: 15px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 15px;
  }
  
  .btn-login {
    padding: 12px;
    font-size: 1rem;
  }
  
  .btn-register {
    padding: 10px;
    font-size: 0.95rem;
  }
}

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

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

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

.register-content {
  max-width: 450px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.8s ease-out;
}

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

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

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

.logo-img {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

.register-subtitle {
  color: #b8b8d1;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Error and Success Messages */
.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 25px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

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

.success-message {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 25px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  animation: fadeIn 0.5s ease-in-out;
}

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

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

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

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

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

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

.form-label i {
  color: #667eea;
  font-size: 1rem;
}

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

.form-input:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

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

.form-input.error {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}

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

.form-input.success {
  border-color: #28a745;
  background: rgba(40, 167, 69, 0.1);
}

.form-input.success:focus {
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

/* Field Errors */
.field-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
  font-weight: 500;
}

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

/* Register Button */
.btn-register {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #ff6b35, #ff8e3c);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-register:hover {
  background: linear-gradient(45deg, #e55a2e, #e57a30);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

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

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

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

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

/* Loading Spinner */
.loading-spinner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: none;
}

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

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

/* Login Button */
.register-actions {
  margin-bottom: 30px;
}

.btn-login {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-family: 'Prompt', sans-serif;
}

.btn-login:hover {
  background: #667eea;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Security Badges */
.register-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.security-badges {
  display: flex;
  justify-content: space-around;
  gap: 15px;
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #b8b8d1;
  font-size: 0.8rem;
}

.security-badge i {
  color: #00c851;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 40px 0;
  }
  
  .register-content {
    padding: 30px 25px;
    margin: 20px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .logo-img {
    width: 70px;
    height: 70px;
  }
  
  .security-badges {
    flex-direction: column;
    gap: 10px;
  }
  
  .security-badge {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .register-container {
    padding: 0 15px;
  }
  
  .register-content {
    padding: 25px 20px;
    margin: 10px;
    border-radius: 15px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 15px;
  }
  
  .btn-register {
    padding: 12px;
    font-size: 1rem;
  }
  
  .btn-login {
    padding: 10px;
    font-size: 0.95rem;
  }
}

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

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

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

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

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #ff6b35, #ff8e3c);
  padding: 15px 30px;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
  }
}

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

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

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

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

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

.promotion-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.promotion-content:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}

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

.promotion-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b35, #ff8e3c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

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

.promotion-title strong {
  color: #ff6b35;
}

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

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

.promotion-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 12px;
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
}

.promotion-list li:hover {
  background: rgba(102, 126, 234, 0.15);
  transform: translateX(5px);
}

.promotion-list li i {
  color: #00c851;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.promotion-list li span {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.promotion-list li span strong {
  color: #ff6b35;
  font-weight: 700;
}

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

.btn-promotion {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #ff6b35, #ff8e3c);
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 50px;
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  animation: glow 3s ease-in-out infinite;
}

.btn-promotion:hover {
  background: linear-gradient(45deg, #e55a2e, #e57a30);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
  animation: none;
}

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

@keyframes glow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 8px 35px rgba(255, 107, 53, 0.5), 0 0 20px rgba(255, 107, 53, 0.3);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .promotion-title {
    font-size: 1.8rem;
  }
  
  .promotion-content {
    padding: 35px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-badge {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .promotion-section {
    padding: 60px 0;
  }
  
  .promotion-content {
    padding: 30px 25px;
    margin: 0 20px;
  }
  
  .promotion-icon {
    width: 70px;
    height: 70px;
  }
  
  .promotion-icon i {
    font-size: 1.8rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .promotion-list li {
    padding: 12px 15px;
  }
  
  .promotion-list li span {
    font-size: 0.95rem;
  }
  
  .btn-promotion {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promotion-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.7rem;
  }
  
  .hero-badge {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .promotion-content {
    padding: 25px 20px;
    margin: 0 10px;
    border-radius: 15px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .promotion-list {
    gap: 15px;
  }
  
  .promotion-list li {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px;
  }
  
  .promotion-list li i {
    align-self: center;
  }
  
  .promotion-list li span {
    font-size: 0.9rem;
  }
  
  .btn-promotion {
    padding: 12px 25px;
    font-size: 0.95rem;
    gap: 8px;
  }
}