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

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

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

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(255, 20, 147, 0.08) 0%, transparent 50%);
  z-index: 1;
}

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

.hero-text {
  width: 100%;
}

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

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #b8b8b8;
  max-width: none;
  width: 100%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #000;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

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

.btn-secondary:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-2px);
}

.hero-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffd700;
  font-weight: 700;
}

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

.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .hero-features {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .feature-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .feature-item {
    font-size: 0.85rem;
  }
}

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

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  width: 100%;
}

.logo {
  flex-shrink: 0;
}

.logo-link {
  text-decoration: none;
}

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

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

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

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

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

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

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

.header-cta {
  display: flex;
  align-items: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

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

.mobile-menu-toggle:hover {
  color: #ffd700;
}

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

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

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

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

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

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

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

.mobile-nav {
  padding: 2rem 0;
}

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

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

.mobile-nav-list li:last-child {
  border-bottom: none;
  margin-top: 1rem;
  padding: 0 1.5rem;
}

.mobile-nav-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #000;
  padding: 0.875rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  justify-content: center;
  transition: all 0.3s ease;
  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.4);
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-list {
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 0.95rem;
  }
  
  .cta-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
  }
  
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .header-content {
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.75rem;
  }
  
  .mobile-menu {
    width: 100vw;
  }
  
  .mobile-menu-header {
    padding: 1rem;
  }
  
  .mobile-logo {
    font-size: 1.25rem;
  }
}

/* About Section */
.about-section {
  background: #101010;
  padding: 80px 0;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 20, 147, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.03) 0%, transparent 50%);
  z-index: 1;
}

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

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

.about-text {
  width: 100%;
}

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

.about-description {
  width: 100%;
}

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

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

.warning-box {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 69, 0, 0.05) 100%);
  border: 2px solid rgba(255, 69, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 2rem;
}

.warning-box h3 {
  color: #ff4500;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.warning-box h3 i {
  font-size: 1.2rem;
}

.warning-list {
  list-style: none;
  padding: 0;
}

.warning-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #ff6b6b;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 107, 107, 0.1);
}

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

.warning-list li i {
  color: #ff4500;
  font-size: 0.9rem;
}

.warning-list li strong {
  color: #ff6b6b;
}

.about-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

/* Responsive Design */
@media (max-width: 968px) {
  .about-content {
    gap: 40px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .about-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .about-container {
    padding: 0 15px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .about-description p {
    font-size: 1rem;
  }
  
  .warning-box {
    padding: 1.5rem;
  }
  
  .warning-box h3 {
    font-size: 1.2rem;
  }
  
  .warning-list li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .about-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .warning-box {
    padding: 1.25rem;
  }
  
  .warning-box h3 {
    font-size: 1.1rem;
  }
  
  .warning-list li {
    font-size: 0.9rem;
  }
}

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

.analysis-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.06) 0%, transparent 50%);
  z-index: 1;
}

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

.analysis-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.analysis-text {
  width: 100%;
}

.analysis-description {
  width: 100%;
}

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

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

.expert-analysis {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 191, 255, 0.05) 100%);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
}

.expert-analysis h3 {
  color: #00ffff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.expert-analysis h3 i {
  font-size: 1.2rem;
}

.expert-analysis p {
  color: #b8e6ff !important;
  margin-bottom: 0;
}

.expert-analysis strong {
  color: #00ffff !important;
}

.analysis-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

/* Responsive Design */
@media (max-width: 968px) {
  .analysis-content {
    gap: 40px;
  }
  
  .analysis-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .analysis-container {
    padding: 0 15px;
  }
  
  .analysis-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .analysis-description p {
    font-size: 1rem;
  }
  
  .expert-analysis {
    padding: 1.5rem;
  }
  
  .expert-analysis h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .analysis-section {
    padding: 60px 0;
  }
  
  .analysis-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .expert-analysis {
    padding: 1.25rem;
  }
  
  .expert-analysis h3 {
    font-size: 1.1rem;
  }
}

/* Safety Section */
.safety-section {
  background: #000;
  padding: 80px 0;
  position: relative;
}

.safety-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

.safety-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.safety-text {
  width: 100%;
}

.safety-description {
  width: 100%;
}

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

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

.risk-assessment {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
  border: 2px solid rgba(255, 69, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
}

.risk-assessment h3 {
  color: #ff6b35;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.risk-assessment h3 i {
  font-size: 1.2rem;
}

.risk-assessment p {
  color: #ffb366 !important;
  margin-bottom: 0;
}

.risk-assessment strong {
  color: #ff6b35 !important;
}

.alternative-recommendation {
  background: linear-gradient(135deg, rgba(0, 255, 127, 0.1) 0%, rgba(50, 205, 50, 0.05) 100%);
  border: 2px solid rgba(0, 255, 127, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.alternative-recommendation p {
  color: #90ee90 !important;
  margin-bottom: 0;
}

.alternative-recommendation strong {
  color: #00ff7f !important;
}

.recommended-link {
  color: #00ff7f;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.3s ease;
}

.recommended-link:hover {
  color: #00ff00;
}

.safety-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.safety-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(255, 69, 0, 0.2);
  transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 968px) {
  .safety-content {
    gap: 40px;
  }
  
  .safety-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .safety-container {
    padding: 0 15px;
  }
  
  .safety-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .safety-description p {
    font-size: 1rem;
  }
  
  .risk-assessment {
    padding: 1.5rem;
  }
  
  .risk-assessment h3 {
    font-size: 1.2rem;
  }
  
  .alternative-recommendation {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .safety-section {
    padding: 60px 0;
  }
  
  .safety-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .risk-assessment {
    padding: 1.25rem;
  }
  
  .risk-assessment h3 {
    font-size: 1.1rem;
  }
  
  .alternative-recommendation {
    padding: 1rem;
  }
}

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

.warnings-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 20, 147, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255, 69, 0, 0.06) 0%, transparent 50%);
  z-index: 1;
}

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

.warnings-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.warnings-text {
  width: 100%;
}

.warnings-description {
  width: 100%;
}

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

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

.key-concerns {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
}

.key-concerns h3 {
  color: #ffc107;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.key-concerns h3 i {
  font-size: 1.2rem;
}

.key-concerns p {
  color: #fff3cd !important;
  margin-bottom: 0;
}

.key-concerns strong {
  color: #ffc107 !important;
}

.risk-factors {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(255, 69, 0, 0.05) 100%);
  border: 2px solid rgba(220, 53, 69, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
}

.risk-factors h3 {
  color: #dc3545;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.risk-factors h3 i {
  font-size: 1.2rem;
}

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

.risk-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(220, 53, 69, 0.1);
  border-radius: 10px;
  border-left: 4px solid #dc3545;
}

.risk-item i {
  color: #dc3545;
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

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

.risk-item strong {
  color: #dc3545 !important;
}

.recommendation {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(25, 135, 84, 0.05) 100%);
  border: 2px solid rgba(40, 167, 69, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.recommendation p {
  color: #d4edda !important;
  margin-bottom: 0;
  font-weight: 500;
}

.recommendation strong {
  color: #28a745 !important;
}

.warnings-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.warnings-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(255, 20, 147, 0.15);
  transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 968px) {
  .warnings-content {
    gap: 40px;
  }
  
  .warnings-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .warnings-container {
    padding: 0 15px;
  }
  
  .warnings-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .warnings-description p {
    font-size: 1rem;
  }
  
  .key-concerns,
  .risk-factors,
  .recommendation {
    padding: 1.5rem;
  }
  
  .key-concerns h3,
  .risk-factors h3 {
    font-size: 1.2rem;
  }
  
  .risk-item {
    padding: 0.875rem;
  }
  
  .risk-item span {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .warnings-section {
    padding: 60px 0;
  }
  
  .warnings-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .key-concerns,
  .risk-factors,
  .recommendation {
    padding: 1.25rem;
  }
  
  .key-concerns h3,
  .risk-factors h3 {
    font-size: 1.1rem;
  }
  
  .risk-item {
    padding: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  
  .risk-item i {
    margin-bottom: 0.5rem;
  }
  
  .risk-item span {
    font-size: 0.9rem;
  }
}

/* Selection Guide Section */
.selection-guide-section {
  background: #0a0a0a;
  padding: 80px 0;
  position: relative;
}

.selection-guide-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 40% 30%, rgba(0, 255, 127, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
  z-index: 1;
}

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

.selection-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.selection-text {
  width: 100%;
}

.selection-description {
  width: 100%;
}

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

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

.evaluation-techniques {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 86, 179, 0.05) 100%);
  border: 2px solid rgba(0, 123, 255, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
}

.evaluation-techniques h3 {
  color: #007bff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.evaluation-techniques h3 i {
  font-size: 1.2rem;
}

.evaluation-techniques p {
  color: #cce7ff !important;
  margin-bottom: 0;
}

.evaluation-techniques strong {
  color: #007bff !important;
}

.safety-criteria {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(25, 135, 84, 0.05) 100%);
  border: 2px solid rgba(40, 167, 69, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
}

.safety-criteria h3 {
  color: #28a745;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.safety-criteria h3 i {
  font-size: 1.2rem;
}

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

.criteria-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #d4edda;
  font-size: 1rem;
  border-bottom: 1px solid rgba(40, 167, 69, 0.2);
}

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

.criteria-list li i {
  color: #28a745;
  font-size: 1rem;
  flex-shrink: 0;
}

.criteria-list li strong {
  color: #28a745 !important;
}

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

.credit-link:hover,
.entrance-link:hover,
.register-link:hover {
  color: #ffed4a;
}

.final-recommendation {
  background: linear-gradient(135deg, rgba(108, 117, 125, 0.1) 0%, rgba(73, 80, 87, 0.05) 100%);
  border: 2px solid rgba(108, 117, 125, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.final-recommendation p {
  color: #e9ecef !important;
  margin-bottom: 0;
  font-weight: 500;
  font-style: italic;
}

.final-recommendation strong {
  color: #adb5bd !important;
}

.selection-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.selection-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 255, 127, 0.15);
  transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 968px) {
  .selection-content {
    gap: 40px;
  }
  
  .selection-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .selection-container {
    padding: 0 15px;
  }
  
  .selection-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .selection-description p {
    font-size: 1rem;
  }
  
  .evaluation-techniques,
  .safety-criteria,
  .final-recommendation {
    padding: 1.5rem;
  }
  
  .evaluation-techniques h3,
  .safety-criteria h3 {
    font-size: 1.2rem;
  }
  
  .criteria-list li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .selection-guide-section {
    padding: 60px 0;
  }
  
  .selection-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .evaluation-techniques,
  .safety-criteria,
  .final-recommendation {
    padding: 1.25rem;
  }
  
  .evaluation-techniques h3,
  .safety-criteria h3 {
    font-size: 1.1rem;
  }
  
  .criteria-list li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }
}

/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: 60px 0 0;
  position: relative;
  margin-top: 80px;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #ffd700 50%, transparent 100%);
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
  width: 100%;
}

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

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

.footer-description {
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

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

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

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: block;
  padding: 0.25rem 0;
}

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

.footer-bottom {
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-security {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

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

.security-badge i {
  color: #ffd700;
  font-size: 0.9rem;
}

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

.footer-copyright {
  color: #888;
  font-size: 0.9rem;
}

.footer-copyright p {
  margin: 0;
}

.footer-disclaimer {
  color: #666;
  font-size: 0.8rem;
}

.disclaimer-text {
  margin: 0;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-about {
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .contact-item {
    justify-content: center;
  }
  
  .footer-security {
    gap: 1rem;
  }
  
  .security-badge {
    padding: 0.375rem 0.75rem;
  }
  
  .security-badge span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 40px 0 0;
    margin-top: 60px;
  }
  
  .footer-content {
    gap: 1.5rem;
    padding-bottom: 2rem;
  }
  
  .footer-logo-text {
    font-size: 2rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-link {
    font-size: 0.85rem;
  }
  
  .contact-item {
    font-size: 0.85rem;
  }
  
  .footer-security {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .security-badge {
    padding: 0.25rem 0.5rem;
  }
  
  .security-badge span {
    font-size: 0.75rem;
  }
  
  .footer-copyright,
  .footer-disclaimer {
    font-size: 0.8rem;
  }
}

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

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

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

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

.sticky-btn i {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  transition: transform 0.3s ease;
}

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

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

.sticky-btn-login {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.sticky-btn-register {
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, #1e7e34 0%, #155724 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.sticky-btn-credit {
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #000000;
  border: 2px solid transparent;
  position: relative;
}

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

.sticky-btn-credit:hover {
  background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0.25rem;
    gap: 0.25rem;
  }
  
  .sticky-btn {
    padding: 0.5rem 0.25rem;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  
  .sticky-btn-text {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 0.2rem;
    gap: 0.2rem;
  }
  
  .sticky-btn {
    padding: 0.4rem 0.2rem;
    min-height: 50px;
    border-radius: 6px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
  }
  
  .sticky-btn-text {
    font-size: 0.65rem;
  }
}

/* Ensure main content doesn't overlap with sticky buttons */
body {
  padding-bottom: 80px;
}

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

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

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

.login-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255, 20, 147, 0.06) 0%, transparent 50%);
  z-index: 1;
}

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

.login-content {
  max-width: 450px;
  margin: 0 auto;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.login-logo {
  text-align: center;
  margin-bottom: 2rem;
}

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

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

.login-form-wrapper {
  width: 100%;
}

.login-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.login-subtitle {
  text-align: center;
  color: #b8b8b8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.error-message,
.success-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
}

.success-message {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}

.login-form {
  width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 1rem;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

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

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

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

.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.3s ease;
  z-index: 2;
}

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

.field-error {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  min-height: 1rem;
}

.login-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #000;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  position: relative;
}

.login-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

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

.loading-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form-footer {
  text-align: center;
  margin-bottom: 2rem;
}

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

.register-btn:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-1px);
}

.login-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffd700;
  font-size: 0.85rem;
  font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-container {
    padding: 100px 15px;
  }
  
  .login-content {
    padding: 2rem 1.5rem;
    margin: 1rem 0;
  }
  
  .login-title {
    font-size: 1.75rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-features {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 1rem 0;
  }
  
  .login-content {
    padding: 1.5rem 1rem;
    border-radius: 15px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 0.875rem 0.875rem 0.875rem 2.75rem;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .feature-item {
    font-size: 0.8rem;
  }
}

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

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(40, 167, 69, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 50% 20%, rgba(0, 255, 127, 0.06) 0%, transparent 50%);
  z-index: 1;
}

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

.register-content {
  max-width: 450px;
  margin: 0 auto;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.register-logo {
  text-align: center;
  margin-bottom: 2rem;
}

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

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

.register-form-wrapper {
  width: 100%;
}

.register-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #28a745 0%, #00ff7f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.register-subtitle {
  text-align: center;
  color: #b8b8b8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.error-message,
.success-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.error-message {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
}

.success-message {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
}

.register-form {
  width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: #28a745;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 1rem;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.form-input:focus ~ .input-icon {
  color: #28a745;
}

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

.field-error {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  min-height: 1rem;
}

.register-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #28a745 0%, #00ff7f 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
  position: relative;
}

.register-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

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

.loading-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form-footer {
  text-align: center;
  margin-bottom: 2rem;
}

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

.login-btn:hover {
  background: #28a745;
  color: #fff;
  transform: translateY(-1px);
}

.register-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #28a745;
  font-size: 0.85rem;
  font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-container {
    padding: 100px 15px;
  }
  
  .register-content {
    padding: 2rem 1.5rem;
    margin: 1rem 0;
  }
  
  .register-title {
    font-size: 1.75rem;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-features {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 1rem 0;
  }
  
  .register-content {
    padding: 1.5rem 1rem;
    border-radius: 15px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .form-input {
    padding: 0.875rem 0.875rem 0.875rem 2.75rem;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
  }
  
  .feature-item {
    font-size: 0.8rem;
  }
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(255, 20, 147, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 255, 255, 0.06) 0%, transparent 50%);
  z-index: 1;
}

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

.hero-content {
  margin: 0 auto;
}

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

.hero-subtitle {
  font-size: 1.2rem;
  color: #d0d0d0;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  color: #000;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.5);
}

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

.promo-section:nth-child(odd) {
  background: #101010;
}

.promo-section-alt {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
}

.promo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

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

.promo-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(15, 15, 35, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.promo-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.promo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

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

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

.promo-details {
  margin-bottom: 2.5rem;
}

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

.promo-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d0d0d0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.promo-list li i {
  color: #28a745;
  font-size: 1.2rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

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

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #28a745 0%, #00ff7f 100%);
  color: #000;
  padding: 1rem 2.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(40, 167, 69, 0.4);
}

/* Specific Section Styling */
#new-member-promo .promo-icon {
  background: linear-gradient(135deg, #28a745 0%, #00ff7f 100%);
}

#new-member-promo .promo-icon i {
  color: #fff;
}

#new-member-promo .promo-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
}

#first-deposit-promo .promo-icon {
  background: linear-gradient(135deg, #007bff 0%, #00cfff 100%);
}

#first-deposit-promo .promo-icon i {
  color: #fff;
}

#first-deposit-promo .promo-btn {
  background: linear-gradient(135deg, #007bff 0%, #00cfff 100%);
  color: #fff;
}

#friday-promo .promo-icon {
  background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100%);
}

#friday-promo .promo-icon i {
  color: #000;
}

#friday-promo .promo-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #ffd700 100());
}

#referral-promo .promo-icon {
  background: linear-gradient(135deg, #ff20a0 0%, #ff6b35 100%);
}

#referral-promo .promo-icon i {
  color: #fff;
}

#referral-promo .promo-btn {
  background: linear-gradient(135deg, #ff20a0 0%, #ff6b35 100());
  color: #fff;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .promo-content {
    padding: 2.5rem;
  }
  
  .promo-title {
    font-size: 1.8rem;
  }
  
  .promo-list li {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-container,
  .promo-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  
  .promo-section {
    padding: 60px 0;
  }
  
  .promo-content {
    padding: 2rem;
  }
  
  .promo-icon {
    width: 70px;
    height: 70px;
  }
  
  .promo-icon i {
    font-size: 1.75rem;
  }
  
  .promo-title {
    font-size: 1.6rem;
  }
  
  .promo-list li {
    font-size: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .promo-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .promo-section {
    padding: 50px 0;
  }
  
  .promo-content {
    padding: 1.5rem;
    border-radius: 15px;
  }
  
  .promo-header {
    margin-bottom: 2rem;
  }
  
  .promo-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .promo-icon i {
    font-size: 1.5rem;
  }
  
  .promo-title {
    font-size: 1.4rem;
  }
  
  .promo-list li {
    font-size: 0.95rem;
    padding: 0.75rem 0;
  }
  
  .promo-list li i {
    font-size: 1rem;
  }
  
  .promo-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}