/* 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 {
  color: #ffd700;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #ffed4e;
}

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

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

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

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

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

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

/* Hero Section Styles */
.hero-section {
  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 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

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

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

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

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

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: #e0e0e0;
  opacity: 0.9;
}

.hero-features {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #ffffff;
  opacity: 0.9;
}

.feature-item i {
  color: #ffd700;
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .hero-badge {
    top: 10px;
    right: 10px;
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  
  .hero-features {
    margin-bottom: 30px;
  }
  
  .feature-item {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-img {
    max-width: 100%;
  }
}

/* Header Styles */
.site-header {
  background: rgba(15, 15, 35, 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);
  transition: all 0.3s ease;
}

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

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

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

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

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

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

.logo-link i {
  font-size: 2rem;
  color: #ffd700;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

.btn-cta {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0f0f23;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

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

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

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

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

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

.mobile-nav-item {
  margin-bottom: 5px;
}

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

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

.mobile-nav-link.cta-link {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0f0f23;
  margin: 20px 25px 10px;
  border-radius: 25px;
  text-align: center;
  justify-content: center;
  font-weight: 600;
  border-left: none;
}

.mobile-nav-link.cta-link:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  color: #0f0f23;
  transform: scale(1.02);
}

.mobile-nav-link i {
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0;
}

/* Responsive Design for Header */
@media (max-width: 1024px) {
  .nav-list {
    gap: 30px;
  }
  
  .btn-cta {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 940px) {
  .header-content {
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .logo-link i {
    font-size: 1.8rem;
  }
  
  .main-nav,
  .header-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }
  
  .header-content {
    height: 55px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-link i {
    font-size: 1.6rem;
  }
  
  .mobile-menu {
    max-width: 100%;
  }
  
  .mobile-menu-header {
    padding: 20px 20px 15px;
  }
  
  .mobile-menu-title {
    font-size: 1.3rem;
  }
  
  .mobile-nav-link {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .mobile-nav-link.cta-link {
    margin: 15px 20px 10px;
  }
}

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

@media (max-width: 940px) {
  body {
    padding-top: 60px;
  }
}

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

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

.platform-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%);
  pointer-events: none;
}

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

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

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

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

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

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

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

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

.platform-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
  opacity: 0.95;
}

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

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

.platform-highlights {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #ffffff;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  opacity: 1;
  transform: translateX(10px);
}

.highlight-item i {
  color: #ffd700;
  font-size: 1.2rem;
  width: 24px;
  flex-shrink: 0;
}

.highlight-item span {
  font-size: 1rem;
  font-weight: 500;
}

.platform-actions {
  display: flex;
  gap: 20px;
}

/* Responsive Design for Platform Section */
@media (max-width: 1024px) {
  .platform-content {
    gap: 40px;
  }
  
  .platform-title {
    font-size: 2.2rem;
  }
  
  .platform-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 60px 0;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  
  .platform-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .platform-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .platform-highlights {
    margin-bottom: 30px;
  }
  
  .highlight-item {
    padding: 10px 0;
  }
  
  .highlight-item:hover {
    transform: none;
  }
  
  .platform-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .platform-container {
    padding: 0 15px;
  }
  
  .platform-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .platform-description {
    margin-bottom: 30px;
  }
  
  .platform-description p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .platform-highlights {
    margin-bottom: 25px;
  }
  
  .highlight-item {
    padding: 8px 0;
    font-size: 0.9rem;
  }
  
  .highlight-item i {
    font-size: 1.1rem;
    width: 22px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

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

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

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

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

.website-text {
  animation: fadeInUp 1s ease-out;
}

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

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

.website-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
  opacity: 0.95;
}

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

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

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

.website-description a:hover {
  color: #ffed4e;
}

.website-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

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

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

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

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

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffd700;
}

.feature-card p {
  font-size: 0.95rem;
  color: #e0e0e0;
  opacity: 0.9;
  line-height: 1.5;
}

.website-image {
  position: relative;
  text-align: center;
  animation: fadeInRight 1s ease-out;
}

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

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

.website-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-item {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0f0f23;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

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

/* Responsive Design for Website Section */
@media (max-width: 1024px) {
  .website-content {
    gap: 40px;
  }
  
  .website-title {
    font-size: 2.2rem;
  }
  
  .website-description p {
    font-size: 1rem;
  }
  
  .website-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .website-section {
    padding: 60px 0;
  }
  
  .website-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .website-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .website-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .website-features {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .website-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .website-container {
    padding: 0 15px;
  }
  
  .website-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .website-description {
    margin-bottom: 30px;
  }
  
  .website-description p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .website-features {
    margin-top: 25px;
  }
  
  .feature-card {
    padding: 18px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .feature-icon i {
    font-size: 1.3rem;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .website-badges {
    gap: 8px;
  }
  
  .badge-item {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

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

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

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

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

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

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

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

.system-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.overlay-item {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: #ffd700;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.overlay-item i {
  font-size: 0.8rem;
}

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

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

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

.system-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
  opacity: 0.95;
}

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

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

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

.system-description a:hover {
  color: #ffed4e;
}

.system-features {
  margin-bottom: 40px;
}

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

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

.list-item:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateX(10px);
}

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

.item-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffd700;
}

.item-content p {
  font-size: 0.95rem;
  color: #e0e0e0;
  opacity: 0.9;
  line-height: 1.5;
  margin: 0;
}

.system-quote {
  background: rgba(255, 215, 0, 0.1);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #ffd700;
  margin-bottom: 40px;
  position: relative;
}

.system-quote i {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.system-quote p {
  font-size: 1.1rem;
  color: #ffffff;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

.system-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design for System Section */
@media (max-width: 1024px) {
  .system-content {
    gap: 40px;
  }
  
  .system-title {
    font-size: 2.2rem;
  }
  
  .system-description p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .system-section {
    padding: 60px 0;
  }
  
  .system-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .system-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .system-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .numbered-list {
    gap: 15px;
  }
  
  .list-item {
    padding: 18px;
  }
  
  .list-item:hover {
    transform: none;
  }
  
  .system-quote {
    padding: 20px;
  }
  
  .system-quote i {
    font-size: 1.3rem;
  }
  
  .system-quote p {
    font-size: 1rem;
  }
  
  .system-actions {
    justify-content: center;
  }
  
  .system-overlay {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .system-container {
    padding: 0 15px;
  }
  
  .system-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .system-description {
    margin-bottom: 30px;
  }
  
  .system-description p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .system-features {
    margin-bottom: 30px;
  }
  
  .list-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .item-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .item-content h4 {
    font-size: 1.1rem;
  }
  
  .item-content p {
    font-size: 0.9rem;
  }
  
  .system-quote {
    padding: 18px;
    margin-bottom: 30px;
  }
  
  .system-quote i {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .system-quote p {
    font-size: 0.95rem;
  }
  
  .system-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .system-overlay {
    gap: 8px;
  }
  
  .overlay-item {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

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

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

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

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

.casino-text {
  animation: fadeInUp 1s ease-out;
}

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

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

.casino-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
  opacity: 0.95;
}

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

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

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

.casino-description a:hover {
  color: #ffed4e;
}

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

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

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

.feature-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.feature-header i {
  color: #ffd700;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.feature-box:hover .feature-header i {
  transform: scale(1.1);
}

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

.feature-box p {
  font-size: 0.95rem;
  color: #e0e0e0;
  opacity: 0.9;
  line-height: 1.5;
  margin: 0;
}

.casino-image {
  position: relative;
  text-align: center;
  animation: fadeInRight 1s ease-out;
}

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

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

.casino-stats {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #ffffff;
  opacity: 0.9;
  margin-top: 2px;
}

.casino-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

/* Responsive Design for Casino Section */
@media (max-width: 1024px) {
  .casino-content {
    gap: 40px;
  }
  
  .casino-title {
    font-size: 2.2rem;
  }
  
  .casino-description p {
    font-size: 1rem;
  }
  
  .casino-features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .casino-section {
    padding: 60px 0;
  }
  
  .casino-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .casino-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .casino-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .casino-features-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }
  
  .feature-box {
    padding: 20px;
  }
  
  .feature-header i {
    font-size: 1.8rem;
  }
  
  .casino-stats {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  
  .casino-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .casino-container {
    padding: 0 15px;
  }
  
  .casino-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .casino-description {
    margin-bottom: 30px;
  }
  
  .casino-description p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .casino-features-grid {
    grid-template-columns: 1fr;
    margin-top: 25px;
  }
  
  .feature-box {
    padding: 18px;
  }
  
  .feature-header {
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .feature-header i {
    font-size: 1.6rem;
  }
  
  .feature-header h3 {
    font-size: 1.1rem;
  }
  
  .feature-box p {
    font-size: 0.9rem;
  }
  
  .casino-stats {
    gap: 8px;
  }
  
  .stat-item {
    padding: 8px 12px;
  }
  
  .stat-number {
    font-size: 1.1rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .casino-actions {
    gap: 12px;
    margin-top: 25px;
  }
  
  .btn {
    max-width: 280px;
  }
}

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

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

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

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

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

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

.professional-img:hover {
  transform: scale(1.02) rotate(1deg);
}

.professional-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0f0f23;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  animation: pulse 2s infinite;
  font-size: 1.1rem;
}

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

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

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

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

.professional-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 22px;
  color: #e0e0e0;
  opacity: 0.95;
}

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

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

.professional-highlights {
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.highlight-point {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  color: #ffffff;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.highlight-point:last-child {
  margin-bottom: 0;
}

.highlight-point:hover {
  opacity: 1;
  transform: translateX(10px);
}

.highlight-point i {
  color: #ffd700;
  font-size: 1.2rem;
  width: 25px;
  flex-shrink: 0;
}

.highlight-point span {
  font-size: 1rem;
  font-weight: 500;
}

.professional-services {
  margin-bottom: 40px;
}

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

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

.service-item:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-8px);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1) rotate(360deg);
}

.service-icon i {
  font-size: 1.8rem;
  color: #0f0f23;
}

.service-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffd700;
}

.service-item p {
  font-size: 0.95rem;
  color: #e0e0e0;
  opacity: 0.9;
  line-height: 1.5;
  margin: 0;
}

.professional-actions {
  text-align: center;
}

/* Responsive Design for Professional Section */
@media (max-width: 1024px) {
  .professional-content {
    gap: 40px;
  }
  
  .professional-title {
    font-size: 2.4rem;
  }
  
  .professional-description p {
    font-size: 1rem;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .professional-section {
    padding: 60px 0;
  }
  
  .professional-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .professional-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .professional-description p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .professional-highlights {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .highlight-point {
    margin-bottom: 15px;
  }
  
  .highlight-point:hover {
    transform: none;
  }
  
  .professional-services {
    margin-bottom: 30px;
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-item {
    padding: 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .service-icon i {
    font-size: 1.6rem;
  }
  
  .professional-badge {
    position: static;
    display: inline-flex;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .professional-container {
    padding: 0 15px;
  }
  
  .professional-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .professional-description {
    margin-bottom: 30px;
  }
  
  .professional-description p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  
  .professional-highlights {
    padding: 18px;
    margin-bottom: 25px;
  }
  
  .highlight-point {
    margin-bottom: 12px;
    font-size: 0.95rem;
  }
  
  .highlight-point i {
    font-size: 1.1rem;
    width: 22px;
  }
  
  .professional-services {
    margin-bottom: 25px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .service-item {
    padding: 18px;
  }
  
  .service-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 12px;
  }
  
  .service-icon i {
    font-size: 1.4rem;
  }
  
  .service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .service-item p {
    font-size: 0.9rem;
  }
  
  .professional-badge {
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 25px;
  }
  
  .professional-badge i {
    font-size: 1.1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

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

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

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 40px;
}

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

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

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

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

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
  opacity: 0.9;
  margin-bottom: 25px;
}

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

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

.contact-item i {
  color: #ffd700;
  font-size: 1rem;
  width: 18px;
  flex-shrink: 0;
}

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

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

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

.footer-links li {
  transition: transform 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.footer-links a:hover {
  color: #ffd700;
  opacity: 1;
}

.footer-links a i {
  font-size: 0.9rem;
  width: 16px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.footer-links a:hover i {
  color: #ffd700;
}

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

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

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

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

.security-item span {
  font-size: 0.9rem;
  color: #e0e0e0;
  font-weight: 500;
}

.footer-cta {
  margin-top: auto;
}

.btn-footer-cta {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0f0f23;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  width: 100%;
}

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

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

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.legal-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #ffd700;
  opacity: 1;
}

.copyright {
  text-align: center;
}

.copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: #e0e0e0;
  opacity: 0.8;
  line-height: 1.5;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .legal-links {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    margin-top: 60px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 50px 0 30px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .security-badges {
    align-items: center;
  }
  
  .security-item {
    max-width: 200px;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-bottom {
    padding: 25px 0;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-content {
    padding: 40px 0 25px;
    gap: 30px;
  }
  
  .footer-logo-text {
    font-size: 1.6rem;
  }
  
  .footer-logo i {
    font-size: 1.8rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .footer-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .footer-links {
    gap: 10px;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .security-badges {
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .security-item {
    padding: 8px 12px;
    max-width: 180px;
  }
  
  .security-item span {
    font-size: 0.85rem;
  }
  
  .btn-footer-cta {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .legal-links a {
    font-size: 0.85rem;
  }
  
  .copyright p {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
}

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

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

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

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

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

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

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

.sticky-btn-login {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.8) 0%, rgba(41, 128, 185, 0.8) 100%);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, rgba(52, 152, 219, 1) 0%, rgba(41, 128, 185, 1) 100%);
  transform: translateY(-2px);
  color: #ffffff;
}

.sticky-btn-register {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.8) 0%, rgba(39, 174, 96, 0.8) 100%);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, rgba(46, 204, 113, 1) 0%, rgba(39, 174, 96, 1) 100%);
  transform: translateY(-2px);
  color: #ffffff;
}

.sticky-btn-bonus {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 237, 78, 0.9) 100%);
  color: #0f0f23;
  animation: pulse-bonus 2s infinite;
}

.sticky-btn-bonus:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 1) 0%, rgba(255, 237, 78, 1) 100%);
  transform: translateY(-2px) scale(1.02);
  color: #0f0f23;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

/* Responsive Design for Sticky Buttons */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 0;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    font-size: 0.85rem;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
    margin-bottom: 3px;
  }
  
  .sticky-btn span {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 8px 4px;
    font-size: 0.8rem;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn span {
    font-size: 0.7rem;
    line-height: 1;
  }
}

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

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

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

/* 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%);
  position: relative;
  padding: 80px 20px 20px;
  overflow: hidden;
}

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

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

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

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

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

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

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

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.login-subtitle {
  color: #e0e0e0;
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.login-form-container {
  position: relative;
}

.error-message {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

.error-message i {
  font-size: 1rem;
}

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

.login-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-weight: 600;
  color: #ffd700;
  font-size: 0.95rem;
}

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

.input-icon {
  position: absolute;
  left: 15px;
  color: #ffd700;
  font-size: 1rem;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

.form-input::placeholder {
  color: #e0e0e0;
  opacity: 0.6;
}

.form-input.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.05);
}

.form-input.success {
  border-color: #27ae60;
  background: rgba(39, 174, 96, 0.05);
}

.password-toggle {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #ffd700;
  cursor: pointer;
  padding: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
  z-index: 2;
}

.password-toggle:hover {
  color: #ffed4e;
  transform: scale(1.1);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.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;
}

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

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

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

.btn-login:disabled {
  background: rgba(255, 215, 0, 0.5);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-login.loading {
  pointer-events: none;
}

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

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

.form-footer {
  margin-top: 25px;
  text-align: center;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 70px 15px 15px;
    min-height: calc(100vh - 60px);
  }
  
  .login-card {
    padding: 30px 25px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.8rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.9rem;
  }
  
  .password-toggle {
    right: 12px;
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 65px 10px 10px;
    min-height: calc(100vh - 55px);
  }
  
  .login-container {
    max-width: 100%;
  }
  
  .login-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .login-header {
    margin-bottom: 25px;
  }
  
  .login-form {
    gap: 20px;
  }
  
  .form-group {
    gap: 6px;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 10px 10px 10px 35px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 10px;
    font-size: 0.85rem;
  }
  
  .password-toggle {
    right: 10px;
    font-size: 0.85rem;
  }
  
  .btn {
    padding: 10px 15px;
    font-size: 0.9rem;
    gap: 8px;
  }
  
  .error-message {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  
  .form-footer {
    margin-top: 20px;
  }
}

/* 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%);
  position: relative;
  padding: 80px 20px 20px;
  overflow: hidden;
}

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

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

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

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

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

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

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

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.register-subtitle {
  color: #e0e0e0;
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.register-form-container {
  position: relative;
}

.error-message {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  animation: shake 0.5s ease-in-out;
}

.error-message i {
  font-size: 1rem;
}

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

.register-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-weight: 600;
  color: #ffd700;
  font-size: 0.95rem;
}

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

.input-icon {
  position: absolute;
  left: 15px;
  color: #ffd700;
  font-size: 1rem;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

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

.form-input::placeholder {
  color: #e0e0e0;
  opacity: 0.6;
}

.form-input.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.05);
}

.form-input.success {
  border-color: #27ae60;
  background: rgba(39, 174, 96, 0.05);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.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;
}

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

.btn-register {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0f0f23;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  margin-top: 10px;
}

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

.btn-register:disabled {
  background: rgba(255, 215, 0, 0.5);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-register.loading {
  pointer-events: none;
}

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

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

.form-footer {
  margin-top: 25px;
  text-align: center;
}

.btn-login {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  width: 100%;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 70px 15px 15px;
    min-height: calc(100vh - 60px);
  }
  
  .register-card {
    padding: 30px 25px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.8rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 12px 12px 12px 40px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 65px 10px 10px;
    min-height: calc(100vh - 55px);
  }
  
  .register-container {
    max-width: 100%;
  }
  
  .register-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .register-header {
    margin-bottom: 25px;
  }
  
  .register-form {
    gap: 20px;
  }
  
  .form-group {
    gap: 6px;
  }
  
  .form-label {
    font-size: 0.9rem;
  }
  
  .form-input {
    padding: 10px 10px 10px 35px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 10px;
    font-size: 0.85rem;
  }
  
  .btn {
    padding: 10px 15px;
    font-size: 0.9rem;
    gap: 8px;
  }
  
  .error-message {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  
  .form-footer {
    margin-top: 20px;
  }
}

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

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

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

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

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

.hero-subtitle {
  font-size: 1.3rem;
  color: #e0e0e0;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
}

.btn-hero {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0f0f23;
  padding: 18px 35px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

.btn-hero:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
  color: #0f0f23;
}

/* Promotion Sections Styles */
.promo-section {
  padding: 40px 0;
  position: relative;
}

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

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

.promo-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.promo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.promo-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.promo-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.promo-card:hover .promo-icon {
  transform: scale(1.1) rotate(360deg);
}

.promo-icon i {
  font-size: 1.8rem;
  color: #0f0f23;
}

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

.promo-content {
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

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

.promo-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.1rem;
  color: #e0e0e0;
  opacity: 0.95;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.promo-list li:hover {
  transform: translateX(5px);
  opacity: 1;
}

.promo-list li i {
  color: #27ae60;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.promo-footer {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-promo {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #0f0f23;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.btn-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  color: #0f0f23;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .promo-card {
    padding: 35px;
  }
  
  .promo-title {
    font-size: 1.6rem;
  }
  
  .promo-list li {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .btn-hero {
    padding: 15px 28px;
    font-size: 1.1rem;
  }
  
  .promo-section {
    padding: 30px 0;
  }
  
  .promo-card {
    padding: 30px 25px;
  }
  
  .promo-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .promo-icon {
    width: 60px;
    height: 60px;
  }
  
  .promo-icon i {
    font-size: 1.5rem;
  }
  
  .promo-title {
    font-size: 1.4rem;
  }
  
  .promo-list {
    gap: 12px;
  }
  
  .promo-list li {
    font-size: 0.95rem;
  }
  
  .promo-list li:hover {
    transform: none;
  }
  
  .btn-promo {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-container,
  .promo-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.7rem;
    margin-bottom: 18px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .btn-hero {
    padding: 12px 25px;
    font-size: 1rem;
    gap: 8px;
  }
  
  .promo-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .promo-header {
    margin-bottom: 20px;
  }
  
  .promo-icon {
    width: 55px;
    height: 55px;
  }
  
  .promo-icon i {
    font-size: 1.3rem;
  }
  
  .promo-title {
    font-size: 1.3rem;
  }
  
  .promo-content {
    margin-bottom: 25px;
  }
  
  .promo-list {
    gap: 10px;
  }
  
  .promo-list li {
    font-size: 0.9rem;
    gap: 10px;
  }
  
  .promo-list li i {
    font-size: 0.9rem;
  }
  
  .btn-promo {
    padding: 10px 20px;
    font-size: 0.95rem;
    gap: 8px;
  }
}