/* 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;
}

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

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

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

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

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

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, #ffd700 50%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.hero-description {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

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

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

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

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

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #1a1a2e;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

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

.btn-secondary:hover {
  background: #ffd700;
  color: #1a1a2e;
  transform: translateY(-3px);
}

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

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

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

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  color: #ffd700;
  font-size: 1.2rem;
}

.card-1 {
  top: 15%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  left: -15%;
  animation-delay: 1s;
}

.card-3 {
  bottom: 20%;
  right: -5%;
  animation-delay: 2s;
}

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

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

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

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

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px 40px;
    min-height: auto;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .feature-item {
    padding: 12px 15px;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .floating-card {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 10px 30px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-features {
    margin-bottom: 30px;
  }
  
  .feature-item {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

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

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

.header-nav {
  width: 100%;
}

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

.nav-brand {
  flex-shrink: 0;
}

.brand-link {
  text-decoration: none;
  color: inherit;
}

.brand-text {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

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

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

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

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

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

.nav-link:hover {
  color: #ffd700;
  transform: translateY(-2px);
}

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

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

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

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

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
}

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

.nav-mobile {
  display: none;
}

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

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

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

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

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

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

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

.mobile-menu-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

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

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

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

.mobile-nav {
  flex: 1;
  padding: 40px 25px;
}

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

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

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #ffd700;
  transform: translateX(10px);
}

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

.cta-item {
  margin-top: 30px;
  border: none;
}

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

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.mobile-cta-btn i {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 15px;
    height: 70px;
  }
  
  .brand-text {
    font-size: 1.6rem;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .nav-mobile {
    display: block;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 10px;
    height: 65px;
  }
  
  .brand-text {
    font-size: 1.4rem;
  }
  
  .mobile-menu-header {
    padding: 15px 20px;
  }
  
  .mobile-brand {
    font-size: 1.3rem;
  }
  
  .mobile-nav {
    padding: 30px 20px;
  }
  
  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 18px 0;
  }
  
  .mobile-cta-btn {
    padding: 16px;
    font-size: 1rem;
  }
}

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

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

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

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

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

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

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

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

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

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

.trust-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #1a1a2e;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  animation: bounce 2s ease-in-out infinite;
}

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

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

.about-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff 0%, #ffd700 50%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

.about-description p:last-child {
  margin-bottom: 0;
}

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

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

.about-description a:hover {
  color: #ffed4a;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  transition: transform 0.3s ease;
}

.feature-highlight:hover {
  transform: translateX(10px);
}

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

.feature-highlight span {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.about-highlight {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #ffd700;
  margin-bottom: 40px;
}

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

.about-highlight strong {
  color: #ffd700;
  font-weight: 700;
}

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

.cta-section .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #1a1a2e;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.6);
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .about-section {
    padding: 80px 20px;
  }
  
  .about-content {
    gap: 40px;
  }
  
  .about-title {
    font-size: 2.4rem;
  }
  
  .about-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 15px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  
  .about-description p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .features-list {
    padding: 20px;
    gap: 12px;
  }
  
  .feature-highlight {
    justify-content: center;
    text-align: left;
  }
  
  .feature-highlight:hover {
    transform: translateX(0);
  }
  
  .about-highlight {
    padding: 20px;
    text-align: left;
  }
  
  .cta-section {
    text-align: center;
  }
  
  .cta-section .btn-primary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 10px;
  }
  
  .about-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .about-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .features-list {
    padding: 15px;
    gap: 10px;
  }
  
  .feature-highlight {
    padding: 8px 0;
    gap: 12px;
  }
  
  .feature-highlight span {
    font-size: 0.9rem;
  }
  
  .about-highlight {
    padding: 15px;
    margin-bottom: 30px;
  }
  
  .about-highlight p {
    font-size: 0.95rem;
  }
  
  .cta-section .btn-primary {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .trust-badge {
    position: static;
    margin-bottom: 15px;
    display: inline-flex;
    font-size: 0.8rem;
    padding: 8px 15px;
  }
}

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

.registration-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.registration-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -3%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite reverse;
}

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

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

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

.registration-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff 0%, #ffd700 50%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

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

.promo-highlight {
  margin-bottom: 40px;
}

.promo-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.promo-card:hover {
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.promo-card i {
  font-size: 3rem;
  color: #ffd700;
  flex-shrink: 0;
  margin-top: 5px;
}

.promo-text h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}

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

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

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

.promotions-list {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #ffd700;
}

.promotions-title {
  font-size: 1.3rem;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 700;
}

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

.promotions-list strong {
  color: #ffd700;
  font-weight: 700;
}

.registration-visual {
  animation: fadeInRight 1s ease-out;
}

.registration-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.steps-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.steps-title {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 25px;
}

.step-item:last-child {
  margin-bottom: 0;
}

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

.step-content h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 700;
}

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

.requirements-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  padding: 50px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  text-align: center;
}

.requirements-title {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 40px;
  font-weight: 700;
}

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

.requirement-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

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

.requirement-item i {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 20px;
}

.requirement-item h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}

.requirement-item p {
  font-size: 1rem;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.5;
}

.contact-info {
  text-align: left;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.contact-info strong {
  color: #ffd700;
  font-weight: 700;
}

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

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #1a1a2e;
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.6);
}

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

.cta-buttons .btn-secondary:hover {
  background: #ffd700;
  color: #1a1a2e;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .registration-section {
    padding: 80px 20px;
  }
  
  .registration-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .registration-title {
    font-size: 2.4rem;
  }
  
  .requirements-section {
    padding: 40px;
  }
  
  .requirements-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .registration-section {
    padding: 60px 15px;
  }
  
  .registration-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .registration-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .promo-card {
    flex-direction: column;
    text-align: center;
  }
  
  .promo-card i {
    align-self: center;
  }
  
  .requirements-section {
    padding: 30px 20px;
  }
  
  .requirements-title {
    font-size: 1.8rem;
  }
  
  .requirements-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .registration-section {
    padding: 40px 10px;
  }
  
  .registration-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  
  .registration-description p {
    font-size: 1rem;
  }
  
  .promo-card {
    padding: 20px;
  }
  
  .promo-card i {
    font-size: 2.5rem;
  }
  
  .promo-text h3 {
    font-size: 1.2rem;
  }
  
  .steps-container {
    padding: 20px;
  }
  
  .steps-title {
    font-size: 1.3rem;
  }
  
  .requirements-section {
    padding: 20px 15px;
  }
  
  .requirements-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .requirement-item {
    padding: 20px 15px;
  }
  
  .requirement-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .requirement-item h4 {
    font-size: 1.1rem;
  }
  
  .contact-info p {
    font-size: 1rem;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

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

.gaming-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

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

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

.gaming-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #fff 0%, #ffd700 50%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gaming-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto;
}

.gaming-subtitle strong {
  color: #ffd700;
  font-weight: 700;
}

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

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

.lottery-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

.lottery-card.featured {
  border: 2px solid rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.lottery-card:hover {
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.lottery-card > i {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 20px;
  display: block;
}

.lottery-card h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.lottery-details strong {
  color: #ffd700;
  font-weight: 700;
}

.payout-info {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.payout-item {
  background: rgba(255, 215, 0, 0.1);
  padding: 10px 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
}

.payout-item .type {
  font-size: 0.9rem;
  color: #b0b0b0;
}

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

.schedule-info,
.frequency-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 12px 15px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.schedule-info i,
.frequency-info i {
  color: #ffd700;
  font-size: 1.1rem;
}

.schedule-info span,
.frequency-info span {
  font-weight: 600;
  color: #fff;
}

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

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

.overlay-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
}

.stat-item {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.stat-item i {
  color: #ffd700;
  font-size: 1.1rem;
}

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

.schedule-table {
  margin-bottom: 80px;
  text-align: center;
}

.schedule-title {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 40px;
  font-weight: 700;
}

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

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

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

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

.schedule-item h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}

.schedule-item p {
  font-size: 1rem;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.5;
}

.features-highlight {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

.feature-text h3 {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 25px;
  font-weight: 700;
}

.feature-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.feature-text strong {
  color: #ffd700;
  font-weight: 700;
}

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

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

.benefit-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(10px);
}

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

.benefit-item h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 700;
}

.benefit-item p {
  font-size: 1rem;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.4;
}

.cta-section {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.cta-section .btn-primary,
.cta-section .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-section .btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #1a1a2e;
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.cta-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.6);
}

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

.cta-section .btn-secondary:hover {
  background: #ffd700;
  color: #1a1a2e;
  transform: translateY(-3px);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .gaming-section {
    padding: 80px 20px;
  }
  
  .gaming-title {
    font-size: 2.4rem;
  }
  
  .gaming-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .features-highlight {
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .schedule-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .gaming-section {
    padding: 60px 15px;
  }
  
  .gaming-title {
    font-size: 2rem;
  }
  
  .gaming-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .lottery-card {
    padding: 25px;
  }
  
  .lottery-card > i {
    font-size: 2.5rem;
  }
  
  .lottery-card h3 {
    font-size: 1.5rem;
  }
  
  .payout-info {
    flex-direction: column;
    gap: 10px;
  }
  
  .overlay-stats {
    flex-direction: column;
    gap: 10px;
  }
  
  .schedule-title {
    font-size: 1.8rem;
  }
  
  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .features-highlight {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .benefit-item:hover {
    transform: translateX(0);
  }
  
  .cta-section {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .gaming-section {
    padding: 40px 10px;
  }
  
  .gaming-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .gaming-subtitle {
    font-size: 1rem;
  }
  
  .lottery-card {
    padding: 20px;
  }
  
  .lottery-card > i {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .lottery-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .lottery-details p {
    font-size: 0.95rem;
  }
  
  .schedule-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .schedule-item {
    padding: 20px 15px;
  }
  
  .schedule-item i {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .schedule-item h4 {
    font-size: 1.1rem;
  }
  
  .feature-text h3 {
    font-size: 1.6rem;
  }
  
  .feature-text p {
    font-size: 1rem;
  }
  
  .benefit-item {
    padding: 15px;
  }
  
  .benefit-item i {
    font-size: 1.3rem;
  }
  
  .benefit-item h4 {
    font-size: 1.1rem;
  }
  
  .cta-section .btn-primary,
  .cta-section .btn-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

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

.trust-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}

.trust-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -8%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

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

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

.trust-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #fff 0%, #ffd700 50%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto;
}

.trust-subtitle strong {
  color: #ffd700;
  font-weight: 700;
}

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

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

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

.trust-badges {
  position: absolute;
  top: -10px;
  right: -10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-item {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #1a1a2e;
  padding: 8px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  animation: bounce 3s ease-in-out infinite;
}

.badge-item:nth-child(2) {
  animation-delay: 1s;
}

.badge-item:nth-child(3) {
  animation-delay: 2s;
}

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

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

.review-section,
.credibility-section,
.fraud-check {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.review-section:hover,
.credibility-section:hover,
.fraud-check:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
}

.review-title,
.credibility-title,
.fraud-title {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-title i,
.credibility-title i,
.fraud-title i {
  font-size: 1.2rem;
}

.review-section p,
.credibility-section p,
.fraud-check p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
}

.review-section strong,
.credibility-section strong,
.fraud-check strong {
  color: #ffd700;
  font-weight: 700;
}

.evidence-grid {
  margin-bottom: 80px;
}

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

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

.evidence-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}

.evidence-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.evidence-item > i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 20px;
  display: block;
}

.evidence-item h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}

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

.evidence-item strong {
  color: #ffd700;
  font-weight: 700;
}

.safety-features {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

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

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

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

.safety-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(10px);
}

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

.safety-content h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 700;
}

.safety-content p {
  font-size: 1rem;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.4;
}

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

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

.stat-card:hover {
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

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

.stat-card h4 {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 5px;
  font-weight: 700;
}

.stat-card p {
  font-size: 1rem;
  color: #e0e0e0;
  margin: 0;
}

.cta-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 50px;
  text-align: center;
}

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

.cta-content p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #1a1a2e;
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.6);
}

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

.cta-buttons .btn-secondary:hover {
  background: #ffd700;
  color: #1a1a2e;
  transform: translateY(-3px);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .trust-section {
    padding: 80px 20px;
  }
  
  .trust-title {
    font-size: 2.4rem;
  }
  
  .trust-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .safety-features {
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .evidence-items {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .trust-section {
    padding: 60px 15px;
  }
  
  .trust-title {
    font-size: 2rem;
  }
  
  .trust-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .trust-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .evidence-title {
    font-size: 1.8rem;
  }
  
  .evidence-items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .evidence-item {
    padding: 25px;
  }
  
  .safety-features {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .safety-item:hover {
    transform: translateX(0);
  }
  
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .cta-section {
    padding: 40px 25px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .trust-section {
    padding: 40px 10px;
  }
  
  .trust-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .trust-subtitle {
    font-size: 1rem;
  }
  
  .review-section,
  .credibility-section,
  .fraud-check {
    padding: 20px;
  }
  
  .review-title,
  .credibility-title,
  .fraud-title {
    font-size: 1.2rem;
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .evidence-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .evidence-item {
    padding: 20px;
  }
  
  .evidence-item > i {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .evidence-item h4 {
    font-size: 1.1rem;
  }
  
  .safety-title {
    font-size: 1.6rem;
  }
  
  .safety-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
  }
  
  .safety-item i {
    align-self: center;
  }
  
  .trust-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-card {
    padding: 20px 15px;
  }
  
  .stat-card i {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .stat-card h4 {
    font-size: 1.5rem;
  }
  
  .cta-section {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

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

.withdrawal-section::before {
  content: '';
  position: absolute;
  top: 15%;
  left: -12%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.withdrawal-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

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

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

.withdrawal-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #fff 0%, #ffd700 50%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.withdrawal-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto;
}

.withdrawal-subtitle strong {
  color: #ffd700;
  font-weight: 700;
}

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

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

.auto-system,
.problem-solving,
.troubleshoot-guide {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.auto-system:hover,
.problem-solving:hover,
.troubleshoot-guide:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
}

.system-title,
.problem-title,
.guide-title {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.system-title i,
.problem-title i,
.guide-title i {
  font-size: 1.3rem;
}

.auto-system p,
.problem-solving p,
.troubleshoot-guide p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin: 0;
}

.auto-system strong,
.problem-solving strong,
.troubleshoot-guide strong {
  color: #ffd700;
  font-weight: 700;
}

.withdrawal-visual {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.withdrawal-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  margin-bottom: 25px;
}

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

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

.speed-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  transform: scale(1.02);
}

.speed-item i {
  font-size: 2rem;
  color: #ffd700;
  width: 40px;
  text-align: center;
}

.speed-text h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 700;
}

.speed-text p {
  font-size: 1rem;
  color: #b0b0b0;
  margin: 0;
}

.common-issues {
  margin-bottom: 80px;
}

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

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

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

.issue-card:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.issue-card > i {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 20px;
  display: block;
}

.issue-card h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}

.issue-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 15px;
}

.issue-card strong {
  color: #ffd700;
  font-weight: 700;
}

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

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

.solution {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
  padding: 15px;
  border-radius: 10px;
  border-left: 3px solid #ffd700;
  font-size: 0.95rem;
  color: #fff;
}

.auto-features {
  margin-bottom: 60px;
}

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

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

.feature-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
}

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

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

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

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

.feature-item h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}

.feature-item p {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin: 0;
  line-height: 1.4;
}

.support-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 60px;
}

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

.support-info h3 {
  font-size: 1.8rem;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 700;
}

.support-info p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 25px;
  line-height: 1.6;
}

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

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

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

.response-stats {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.stat-item i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 10px;
}

.stat-item h4 {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 5px;
  font-weight: 700;
}

.stat-item p {
  font-size: 1rem;
  color: #e0e0e0;
  margin: 0;
}

.cta-section {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  padding: 50px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.cta-content p {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #1a1a2e;
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.6);
}

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

.cta-buttons .btn-secondary:hover {
  background: #ffd700;
  color: #1a1a2e;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .withdrawal-section {
    padding: 80px 20px;
  }
  
  .withdrawal-title {
    font-size: 2.4rem;
  }
  
  .withdrawal-content {
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .features-content {
    gap: 40px;
  }
  
  .support-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .withdrawal-section {
    padding: 60px 15px;
  }
  
  .withdrawal-title {
    font-size: 2rem;
  }
  
  .withdrawal-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .auto-system,
  .problem-solving,
  .troubleshoot-guide {
    padding: 25px;
  }
  
  .system-title,
  .problem-title,
  .guide-title {
    font-size: 1.3rem;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .issues-title {
    font-size: 1.8rem;
  }
  
  .issues-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .issue-card {
    padding: 25px;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .support-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .response-stats {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  
  .cta-section {
    padding: 40px 25px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .withdrawal-section {
    padding: 40px 10px;
  }
  
  .withdrawal-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .withdrawal-subtitle {
    font-size: 1rem;
  }
  
  .auto-system,
  .problem-solving,
  .troubleshoot-guide {
    padding: 20px;
  }
  
  .system-title,
  .problem-title,
  .guide-title {
    font-size: 1.2rem;
  }
  
  .auto-system p,
  .problem-solving p,
  .troubleshoot-guide p {
    font-size: 1rem;
  }
  
  .speed-item {
    padding: 15px;
  }
  
  .speed-item i {
    font-size: 1.5rem;
    width: 30px;
  }
  
  .speed-text h4 {
    font-size: 1.1rem;
  }
  
  .issues-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .issue-card {
    padding: 20px;
  }
  
  .issue-card > i {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .issue-card h4 {
    font-size: 1.1rem;
  }
  
  .features-title {
    font-size: 1.6rem;
  }
  
  .features-grid {
    gap: 12px;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .feature-item i {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .feature-item h4 {
    font-size: 1rem;
  }
  
  .support-section {
    padding: 30px 20px;
  }
  
  .support-info h3 {
    font-size: 1.5rem;
  }
  
  .support-info p {
    font-size: 1rem;
  }
  
  .response-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-item {
    padding: 20px 15px;
  }
  
  .stat-item i {
    font-size: 1.5rem;
  }
  
  .stat-item h4 {
    font-size: 1.3rem;
  }
  
  .cta-section {
    padding: 30px 15px;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

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

.main-footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.main-footer::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

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

.footer-content {
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  animation: fadeInLeft 1s ease-out;
}

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

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

.brand-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b0b0b0;
  margin-bottom: 25px;
  max-width: 400px;
}

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

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

.social-link:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  animation: fadeInRight 1s ease-out;
}

.footer-column {
  margin-bottom: 0;
}

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

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

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

.footer-list li {
  margin-bottom: 12px;
}

.footer-list li:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

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

.contact-item span {
  font-weight: 600;
}

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

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

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

.legal-link {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

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

.legal-link:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -15px;
  color: rgba(255, 215, 0, 0.3);
}

.footer-copyright {
  text-align: right;
}

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

.footer-disclaimer {
  background: rgba(255, 215, 0, 0.05);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding: 20px;
}

.disclaimer-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.disclaimer-content i {
  color: #ffd700;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.disclaimer-content p {
  margin: 0;
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 1.6;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    padding: 50px 20px 30px;
    gap: 50px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  
  .brand-name {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    padding: 40px 15px 25px;
    gap: 40px;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  .brand-name {
    font-size: 2rem;
  }
  
  .brand-description {
    max-width: none;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-link:hover {
    transform: translateX(0);
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 30px 10px 20px;
    gap: 30px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-bottom {
    padding: 25px 10px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
  
  .legal-link:not(:last-child)::after {
    display: none;
  }
  
  .brand-name {
    font-size: 1.8rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .disclaimer-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .disclaimer-content i {
    align-self: center;
  }
  
  .footer-disclaimer {
    padding: 15px 10px;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-buttons-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  gap: 0;
}

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

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

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

.login-btn {
  background: linear-gradient(135deg, rgba(66, 165, 245, 0.9) 0%, rgba(33, 150, 243, 0.9) 100%);
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.login-btn:hover {
  background: linear-gradient(135deg, rgba(66, 165, 245, 1) 0%, rgba(33, 150, 243, 1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.register-btn {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.9) 0%, rgba(67, 160, 71, 0.9) 100%);
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.register-btn:hover {
  background: linear-gradient(135deg, rgba(76, 175, 80, 1) 0%, rgba(67, 160, 71, 1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.credit-btn {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 237, 74, 0.95) 100%);
  color: #1a1a2e;
  position: relative;
  animation: pulse-glow 2s infinite;
}

.credit-btn:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 1) 0%, rgba(255, 237, 74, 1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
  animation: none;
}

.credit-btn::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ffd700, #ffed4a, #ffd700, #ffed4a);
  background-size: 400% 400%;
  border-radius: 10px;
  z-index: -1;
  animation: gradient-shift 3s ease infinite;
}

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

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

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

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

@media (max-width: 360px) {
  .sticky-btn span {
    font-size: 0.7rem;
  }
  
  .sticky-btn i {
    font-size: 0.95rem;
  }
  
  .sticky-btn {
    min-height: 45px;
    padding: 6px 2px;
  }
}

/* Add bottom padding to body to prevent content being hidden behind sticky buttons */
body {
  padding-bottom: 80px;
}

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

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.login-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}

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

.login-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 215, 0, 0.1) inset;
  animation: fadeInUp 1s ease-out;
}

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

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

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

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

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #ffd700 50%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

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

.error-message {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: shake 0.5s ease-in-out;
}

.error-message i {
  color: #f44336;
  font-size: 1.1rem;
}

.error-text {
  color: #f44336;
  font-size: 0.9rem;
  font-weight: 600;
}

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

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

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

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

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

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

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

.form-input.error {
  border-color: #f44336;
  background: rgba(244, 67, 54, 0.05);
}

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

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

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

.input-error {
  display: block;
  color: #f44336;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
}

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

.login-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #1a1a2e;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

.btn-loader {
  position: absolute;
}

.register-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.register-link:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

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

.security-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #b0b0b0;
  font-size: 0.85rem;
}

.security-info i {
  color: #4caf50;
  font-size: 0.9rem;
}

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

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

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 30px 15px;
  }
  
  .login-container {
    max-width: 400px;
  }
  
  .login-card {
    padding: 35px 30px;
  }
  
  .login-title {
    font-size: 2rem;
  }
  
  .login-logo {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 20px 10px;
    min-height: calc(100vh - 140px);
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-card {
    padding: 30px 25px;
    border-radius: 20px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-logo {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .register-link {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  .security-info {
    font-size: 0.8rem;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .login-card {
    padding: 25px 20px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 10px 12px;
  }
  
  .login-btn {
    padding: 12px 18px;
  }
  
  .register-link {
    padding: 10px 18px;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -25%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.register-section::after {
  content: '';
  position: absolute;
  bottom: -35%;
  left: -15%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

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

.register-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 215, 0, 0.1) inset;
  animation: fadeInUp 1s ease-out;
}

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

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

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

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, #ffd700 50%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

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

.error-message {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: shake 0.5s ease-in-out;
}

.error-message i {
  color: #f44336;
  font-size: 1.2rem;
}

.error-text {
  color: #f44336;
  font-size: 0.95rem;
  font-weight: 600;
}

.success-message {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInScale 0.5s ease-out;
}

.success-message i {
  color: #4caf50;
  font-size: 1.2rem;
}

.success-text {
  color: #4caf50;
  font-size: 0.95rem;
  font-weight: 600;
}

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

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

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

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

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

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

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

.form-input.error {
  border-color: #f44336;
  background: rgba(244, 67, 54, 0.05);
}

.form-input.success {
  border-color: #4caf50;
  background: rgba(76, 175, 80, 0.05);
}

.input-error {
  display: block;
  color: #f44336;
  font-size: 0.9rem;
  margin-top: 8px;
  min-height: 20px;
  font-weight: 500;
}

.input-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b0b0b0;
  font-size: 0.85rem;
  margin-top: 8px;
}

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

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

.register-btn {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #1a1a2e;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

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

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

.btn-loader {
  position: absolute;
}

.login-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.register-footer {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.terms-info,
.security-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #b0b0b0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.terms-info i {
  color: #4caf50;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.security-info i {
  color: #ffd700;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

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

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

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

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  50% { 
    transform: translateY(-25px) rotate(180deg); 
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 30px 15px;
  }
  
  .register-container {
    max-width: 400px;
  }
  
  .register-card {
    padding: 35px 30px;
  }
  
  .register-title {
    font-size: 2rem;
  }
  
  .register-logo {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 20px 10px;
    min-height: calc(100vh - 140px);
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-card {
    padding: 30px 25px;
    border-radius: 20px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-logo {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 14px 16px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 16px 20px;
    font-size: 1.1rem;
  }
  
  .login-link {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .terms-info,
  .security-info {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .register-card {
    padding: 25px 20px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px 18px;
    font-size: 1rem;
  }
  
  .login-link {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .register-footer {
    gap: 12px;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -25%;
  right: -15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

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

.hero-content {
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #fff 0%, #ffd700 50%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-top: 40px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #1a1a2e;
  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;
  animation: pulse-glow 2s infinite;
}

.hero-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
  animation: none;
}

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

/* Promotion Sections */
.promotion-section {
  padding: 60px 20px;
  background: transparent;
}

.promotion-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

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

.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out;
}

.promotion-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.promotion-card.special {
  border: 2px solid rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.03) 100%);
  position: relative;
}

.promotion-card.special::before {
  content: 'พิเศษ!';
  position: absolute;
  top: -15px;
  right: 30px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #1a1a2e;
  padding: 8px 20px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.promotion-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

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

.promotion-content {
  margin-bottom: 35px;
}

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

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

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

.promotion-item:hover {
  transform: translateX(10px);
  background: rgba(255, 215, 0, 0.05);
  padding-left: 15px;
  border-radius: 10px;
}

.promotion-item i {
  color: #ffd700;
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

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

.promotion-cta {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.promotion-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 25px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #1a1a2e;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promotion-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #ffed4a 0%, #ffd700 100%);
}

.promotion-btn.special {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.promotion-btn.special:hover {
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

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

/* Conclusion Section */
.conclusion-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
}

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

.conclusion-content {
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.conclusion-text {
  margin-bottom: 40px;
}

.conclusion-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  min-width: 120px;
}

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

.feature-item i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 5px;
}

.feature-item span {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.conclusion-cta {
  margin-top: 40px;
}

.conclusion-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
  color: #1a1a2e;
  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;
}

.conclusion-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.conclusion-btn i {
  font-size: 1.4rem;
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

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

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.3);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 20px 60px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 50px 20px;
  }
  
  .promotion-card {
    padding: 35px;
  }
  
  .conclusion-features {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 15px 50px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-btn {
    padding: 18px 35px;
    font-size: 1.2rem;
  }
  
  .promotion-section {
    padding: 40px 15px;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
  
  .promotion-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .promotion-icon {
    width: 60px;
    height: 60px;
  }
  
  .promotion-icon i {
    font-size: 1.5rem;
  }
  
  .promotion-title {
    font-size: 1.6rem;
  }
  
  .promotion-item:hover {
    transform: translateX(0);
    padding-left: 0;
  }
  
  .conclusion-features {
    gap: 20px;
  }
  
  .feature-item {
    min-width: 100px;
    padding: 15px;
  }
  
  .conclusion-section {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 10px 40px;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-btn {
    padding: 16px 30px;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
  }
  
  .promotion-section {
    padding: 30px 10px;
  }
  
  .promotion-card {
    padding: 25px 20px;
  }
  
  .promotion-card.special::before {
    right: 20px;
    font-size: 0.8rem;
    padding: 6px 15px;
  }
  
  .promotion-title {
    font-size: 1.4rem;
  }
  
  .promotion-item {
    gap: 12px;
    padding: 12px 0;
  }
  
  .promotion-item span {
    font-size: 1rem;
  }
  
  .promotion-btn {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
    max-width: 250px;
  }
  
  .conclusion-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    display: grid;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .feature-item i {
    font-size: 1.5rem;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .conclusion-btn {
    padding: 18px 35px;
    font-size: 1.2rem;
    width: 100%;
    max-width: 300px;
  }
  
  .conclusion-section {
    padding: 50px 10px;
  }
  
  .conclusion-text p {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .promotion-title {
    font-size: 1.3rem;
  }
  
  .promotion-icon {
    width: 50px;
    height: 50px;
  }
  
  .promotion-icon i {
    font-size: 1.3rem;
  }
  
  .promotion-item span {
    font-size: 0.95rem;
  }
  
  .conclusion-features {
    gap: 12px;
  }
  
  .feature-item {
    padding: 10px;
  }
}