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

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

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

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

img {
  max-width: 100%;
  height: auto;
}

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

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

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

/* Hero Text */
.hero-text {
  animation: fadeInLeft 1s ease-out;
}

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

.hero-description {
  font-size: 1.25rem;
  color: #b8b8b8;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn::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.5s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #1a1a2e;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

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

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

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

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

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

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

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

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

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

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 0, 0.9);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.live-dot {
  animation: pulse 2s infinite;
  font-size: 0.6rem;
}

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

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    padding: 0 30px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .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.4rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    justify-content: center;
    margin-bottom: 40px;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 16px;
  }
  
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .feature-item {
    padding: 12px 16px;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
}

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

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

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

/* Header Brand */
.header-brand {
  flex-shrink: 0;
}

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

.brand-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

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

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

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

.nav-item {
  position: relative;
}

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

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

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

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

/* Header CTA */
.header-cta {
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-btn::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.5s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

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

.cta-btn i {
  font-size: 0.9rem;
  animation: bounce 2s ease-in-out infinite;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15, 15, 35, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

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

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

.mobile-brand-text {
  font-family: 'Prompt', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  -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: 5px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #ffd700;
  transform: rotate(90deg);
}

/* Mobile Navigation */
.mobile-nav {
  flex: 1;
}

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

.mobile-nav-item {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInMobile 0.5s ease forwards;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-item:nth-child(5) { animation-delay: 0.5s; }

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

.mobile-nav-link:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  color: #ffd700;
  transform: translateX(10px);
}

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

.mobile-nav-link:hover i {
  color: #ffd700;
  transform: scale(1.2);
}

/* Mobile CTA Button */
.mobile-cta-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
}

.mobile-cta-btn::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.5s ease;
}

.mobile-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

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

.mobile-cta-btn i {
  color: #ffffff;
  animation: bounce 2s ease-in-out infinite;
}

/* Animations */
@keyframes slideInMobile {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Body padding for fixed header */
body {
  padding-top: 80px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 30px;
  }
  
  .nav-list {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 0;
  }
  
  .header-container {
    padding: 0 20px;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .desktop-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .brand-text {
    font-size: 1.3rem;
  }
  
  body {
    padding-top: 70px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 16px;
  }
  
  .brand-text {
    font-size: 1.2rem;
  }
  
  .mobile-menu-content {
    padding: 16px;
  }
  
  .mobile-nav-link {
    padding: 15px 16px;
    font-size: 1rem;
  }
  
  .mobile-cta-btn {
    padding: 16px 18px;
    font-size: 1rem;
  }
}

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

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

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

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

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

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

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

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

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

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

.features-grid {
  background: rgba(255, 255, 255, 0.03);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(10px);
}

.features-title {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 25px;
  text-align: center;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-point {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 12px;
  border-left: 3px solid #ffd700;
  transition: all 0.3s ease;
}

.feature-point:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(10px);
}

.feature-point i {
  color: #ff6b35;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.feature-point span {
  font-weight: 500;
  color: #ffffff;
  font-size: 1rem;
}

/* About Image */
.about-image {
  position: relative;
  animation: fadeInUp 1s ease-out 0.2s both;
}

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

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

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

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  animation: bounceIn 1s ease-out;
}

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

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

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

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-container {
    padding: 0 30px;
  }
  
  .about-content {
    gap: 60px;
  }
  
  .about-title {
    font-size: 2.2rem;
  }
  
  .about-description p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .about-description p {
    font-size: 1rem;
    text-align: justify;
  }
  
  .features-grid {
    padding: 25px;
  }
  
  .features-title {
    font-size: 1.2rem;
  }
  
  .feature-point {
    padding: 12px 16px;
  }
  
  .feature-point span {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about-container {
    padding: 0 16px;
  }
  
  .about-section {
    padding: 60px 0;
  }
  
  .about-content {
    gap: 40px;
  }
  
  .about-title {
    font-size: 1.7rem;
  }
  
  .about-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .features-grid {
    padding: 20px;
  }
  
  .features-title {
    font-size: 1.1rem;
  }
  
  .feature-point {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px;
  }
  
  .feature-point:hover {
    transform: translateY(-5px);
  }
  
  .feature-point i {
    font-size: 1.5rem;
  }
  
  .badge {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}

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

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

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

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

/* Platform Image */
.platform-image {
  position: relative;
  order: 1;
  animation: slideInLeft 1s ease-out;
}

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

.platform-img:hover {
  transform: scale(1.03) rotateY(-5deg);
}

.platform-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quality-badge, .streaming-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.quality-badge {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 193, 7, 0.9));
  color: #000;
}

.streaming-badge {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.9), rgba(0, 86, 179, 0.9));
  color: #ffffff;
}

/* Platform Text */
.platform-text {
  order: 2;
  animation: slideInRight 1s ease-out;
}

.platform-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 35px;
  background: linear-gradient(135deg, #ff6b35, #ffd700, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.platform-description p {
  font-size: 1.05rem;
  color: #c8c8c8;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

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

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

/* Tech Features */
.tech-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.tech-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

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

.tech-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.tech-feature:hover .tech-icon {
  transform: scale(1.1) rotate(5deg);
}

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

.tech-info h4 {
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 8px;
  font-weight: 600;
}

.tech-info p {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.5;
  margin: 0;
}

/* Animation Keyframes */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .platform-container {
    padding: 0 30px;
  }
  
  .platform-content {
    gap: 60px;
  }
  
  .platform-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 968px) {
  .tech-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tech-feature {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 80px 0;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .platform-image {
    order: 1;
  }
  
  .platform-text {
    order: 2;
  }
  
  .platform-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .platform-description p {
    font-size: 1rem;
  }
  
  .platform-overlay {
    bottom: 15px;
    right: 15px;
  }
  
  .quality-badge, .streaming-badge {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .platform-container {
    padding: 0 16px;
  }
  
  .platform-section {
    padding: 60px 0;
  }
  
  .platform-content {
    gap: 40px;
  }
  
  .platform-title {
    font-size: 1.7rem;
  }
  
  .platform-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .tech-feature {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .tech-icon {
    align-self: center;
  }
  
  .tech-info h4 {
    font-size: 1rem;
  }
  
  .tech-info p {
    font-size: 0.9rem;
  }
}

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

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

.vip-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

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

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

/* VIP Text */
.vip-text {
  animation: fadeInLeft 1s ease-out;
}

.vip-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffd700, #ffed4a, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.vip-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 2px;
}

.vip-description {
  margin-bottom: 50px;
}

.vip-description p {
  font-size: 1.1rem;
  color: #c8c8c8;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

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

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

/* VIP Benefits */
.vip-benefits {
  margin-bottom: 50px;
}

.benefits-title {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.benefits-title::before {
  content: '★';
  position: absolute;
  left: -30px;
  color: #ff6b35;
  animation: twinkle 2s ease-in-out infinite;
}

.benefits-title::after {
  content: '★';
  position: absolute;
  right: -30px;
  color: #ff6b35;
  animation: twinkle 2s ease-in-out infinite 1s;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.benefit-item:hover::before {
  left: 100%;
}

.benefit-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.benefit-text h4 {
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 8px;
  font-weight: 600;
}

.benefit-text p {
  font-size: 0.95rem;
  color: #b8b8b8;
  line-height: 1.5;
  margin: 0;
}

/* VIP CTA */
.vip-cta {
  text-align: center;
}

.vip-register-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  color: #000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

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

.vip-register-btn i {
  animation: bounce 2s ease-in-out infinite;
}

.vip-note {
  font-size: 0.9rem;
  color: #b8b8b8;
  margin-top: 15px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* VIP Image */
.vip-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

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

.vip-img:hover {
  transform: scale(1.02) rotateY(5deg);
}

.vip-levels {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vip-level {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: slideInLeft 1s ease-out;
}

.vip2 {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.9), rgba(169, 169, 169, 0.9));
  color: #000;
  animation-delay: 0.2s;
}

.vip3 {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 193, 7, 0.9));
  color: #000;
  animation-delay: 0.4s;
}

.vip-max {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(75, 0, 130, 0.9));
  color: #ffffff;
  animation-delay: 0.6s;
}

.vip-level i {
  font-size: 1rem;
  animation: twinkle 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
  .vip-container {
    padding: 0 30px;
  }
  
  .vip-content {
    gap: 60px;
  }
  
  .vip-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .vip-section {
    padding: 80px 0;
  }
  
  .vip-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .vip-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .vip-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .vip-description p {
    font-size: 1rem;
  }
  
  .benefits-title::before,
  .benefits-title::after {
    display: none;
  }
  
  .benefit-item {
    padding: 15px;
  }
  
  .benefit-text h4 {
    font-size: 1rem;
  }
  
  .benefit-text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .vip-container {
    padding: 0 16px;
  }
  
  .vip-section {
    padding: 60px 0;
  }
  
  .vip-content {
    gap: 40px;
  }
  
  .vip-title {
    font-size: 1.7rem;
  }
  
  .vip-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .benefits-list {
    gap: 15px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .benefit-item:hover {
    transform: translateY(-5px);
  }
  
  .benefit-number {
    align-self: center;
    margin-bottom: 10px;
  }
  
  .vip-register-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .vip-levels {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
  }
  
  .vip-level {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}

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

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

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

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

/* Main Platform Text */
.main-platform-text {
  animation: fadeInUp 1s ease-out;
}

.main-platform-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffd700, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.main-platform-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  border-radius: 2px;
}

.main-platform-description {
  margin-bottom: 50px;
}

.main-platform-description p {
  font-size: 1.05rem;
  color: #c8c8c8;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

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

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

.main-platform-description a {
  color: #ff6b35;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.main-platform-description a:hover {
  color: #ffd700;
}

/* Verification Steps */
.verification-steps {
  background: rgba(255, 255, 255, 0.03);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
}

.verification-title {
  font-size: 1.4rem;
  color: #ffd700;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.verification-title::before {
  content: '🔍';
  position: absolute;
  left: -40px;
  font-size: 1.2rem;
}

.verification-title::after {
  content: '✅';
  position: absolute;
  right: -40px;
  font-size: 1.2rem;
}

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

.verification-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 20px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 12px;
  border-left: 3px solid #ff6b35;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.verification-item:hover {
  background: rgba(255, 107, 53, 0.08);
  transform: translateX(8px);
  border-left-color: #ffd700;
}

.verification-item:hover::before {
  left: 100%;
}

.verification-item i {
  color: #ff6b35;
  font-size: 1.3rem;
  width: 25px;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.verification-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.verification-content h4 {
  font-size: 1rem;
  color: #ffd700;
  margin-bottom: 5px;
  font-weight: 600;
}

.verification-content p {
  font-size: 0.9rem;
  color: #b8b8b8;
  line-height: 1.4;
  margin: 0;
}

/* Trusted Partner */
.trusted-partner {
  text-align: center;
  padding: 20px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.partner-note {
  font-size: 1rem;
  color: #c8c8c8;
  line-height: 1.6;
  margin: 0;
}

.partner-note a {
  color: #ff6b35;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.partner-note a:hover {
  color: #ffd700;
}

/* Main Platform Image */
.main-platform-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.main-platform-img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease;
}

.main-platform-img:hover {
  transform: scale(1.02) rotateY(-3deg);
}

.security-badges {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: bounceIn 1s ease-out;
}

.ssl {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.9), rgba(32, 201, 151, 0.9));
  color: #ffffff;
  animation-delay: 0.2s;
}

.licensed {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.9), rgba(0, 86, 179, 0.9));
  color: #ffffff;
  animation-delay: 0.4s;
}

.verified {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 193, 7, 0.9));
  color: #000;
  animation-delay: 0.6s;
}

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

/* Trust Indicators */
.trust-indicators {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 20px;
}

.trust-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  animation: slideInUp 1s ease-out;
}

.trust-indicator:nth-child(1) {
  animation-delay: 0.2s;
}

.trust-indicator:nth-child(2) {
  animation-delay: 0.4s;
}

.trust-indicator:nth-child(3) {
  animation-delay: 0.6s;
}

.trust-indicator i {
  color: #ffd700;
  font-size: 1.2rem;
}

.trust-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.stat-label {
  font-size: 0.8rem;
  color: #b8b8b8;
  line-height: 1;
}

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .main-platform-container {
    padding: 0 30px;
  }
  
  .main-platform-content {
    gap: 60px;
  }
  
  .main-platform-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .main-platform-section {
    padding: 80px 0;
  }
  
  .main-platform-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .main-platform-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .main-platform-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .main-platform-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .verification-steps {
    padding: 25px;
  }
  
  .verification-title::before,
  .verification-title::after {
    display: none;
  }
  
  .verification-item {
    padding: 15px;
  }
  
  .verification-content h4 {
    font-size: 0.95rem;
  }
  
  .verification-content p {
    font-size: 0.85rem;
  }
  
  .trust-indicators {
    position: static;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  
  .security-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .main-platform-container {
    padding: 0 16px;
  }
  
  .main-platform-section {
    padding: 60px 0;
  }
  
  .main-platform-content {
    gap: 40px;
  }
  
  .main-platform-title {
    font-size: 1.7rem;
  }
  
  .main-platform-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .verification-steps {
    padding: 20px;
  }
  
  .verification-title {
    font-size: 1.2rem;
  }
  
  .verification-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .verification-item:hover {
    transform: translateY(-5px);
  }
  
  .verification-item i {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
  
  .trust-indicators {
    gap: 10px;
  }
  
  .trust-indicator {
    padding: 12px 16px;
  }
  
  .stat-number {
    font-size: 1rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .security-badge {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}

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

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

.strategies-section::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

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

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

/* Strategies Image */
.strategies-image {
  position: relative;
  order: 1;
  animation: slideInLeft 1s ease-out;
}

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

.strategies-img:hover {
  transform: scale(1.03) rotateY(5deg);
}

.strategies-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.demo-badge, .strategy-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: bounceIn 1s ease-out;
}

.demo-badge {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.9), rgba(32, 201, 151, 0.9));
  color: #ffffff;
  animation-delay: 0.3s;
}

.strategy-badge {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.9));
  color: #ffffff;
  animation-delay: 0.5s;
}

/* Strategies Text */
.strategies-text {
  order: 2;
  animation: slideInRight 1s ease-out;
}

.strategies-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ff6b35, #ffd700, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.strategies-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 70px;
  height: 3px;
  background: linear-gradient(135deg, #ff6b35, #ffd700);
  border-radius: 2px;
}

.strategies-description {
  margin-bottom: 50px;
}

.strategies-description p {
  font-size: 1.05rem;
  color: #c8c8c8;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

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

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

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

.strategies-description a:hover {
  color: #ffd700;
}

/* Advanced Techniques */
.advanced-techniques {
  margin-bottom: 50px;
}

.techniques-title {
  font-size: 1.5rem;
  color: #ffd700;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.techniques-title::before {
  content: '🎯';
  position: absolute;
  left: -35px;
  font-size: 1.3rem;
}

.techniques-title::after {
  content: '🏆';
  position: absolute;
  right: -35px;
  font-size: 1.3rem;
}

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

.technique-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.technique-card:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

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

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

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

.technique-icon i {
  font-size: 1.5rem;
  color: #000;
}

.technique-info h4 {
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 10px;
  font-weight: 600;
}

.technique-info p {
  font-size: 0.9rem;
  color: #b8b8b8;
  line-height: 1.5;
  margin: 0;
}

/* Strategies Conclusion */
.strategies-conclusion {
  text-align: center;
  padding: 30px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.conclusion-text {
  font-size: 1.1rem;
  color: #c8c8c8;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

.conclusion-text strong {
  color: #ffd700;
  font-weight: 600;
}

.strategy-cta {
  display: flex;
  justify-content: center;
}

.strategy-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
}

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

.strategy-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

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

.strategy-btn i {
  animation: pulse 2s ease-in-out infinite;
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
  .strategies-container {
    padding: 0 30px;
  }
  
  .strategies-content {
    gap: 60px;
  }
  
  .strategies-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 968px) {
  .techniques-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .technique-card {
    padding: 20px 15px;
  }
}

@media (max-width: 768px) {
  .strategies-section {
    padding: 80px 0;
  }
  
  .strategies-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .strategies-image {
    order: 1;
  }
  
  .strategies-text {
    order: 2;
  }
  
  .strategies-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .strategies-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .strategies-description p {
    font-size: 1rem;
    text-align: left;
  }
  
  .techniques-title::before,
  .techniques-title::after {
    display: none;
  }
  
  .techniques-grid {
    grid-template-columns: 1fr;
  }
  
  .conclusion-text {
    font-size: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .strategies-container {
    padding: 0 16px;
  }
  
  .strategies-section {
    padding: 60px 0;
  }
  
  .strategies-content {
    gap: 40px;
  }
  
  .strategies-title {
    font-size: 1.7rem;
  }
  
  .strategies-description p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .advanced-techniques {
    margin-bottom: 40px;
  }
  
  .techniques-title {
    font-size: 1.3rem;
  }
  
  .technique-card {
    padding: 20px 15px;
  }
  
  .technique-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .technique-icon i {
    font-size: 1.3rem;
  }
  
  .technique-info h4 {
    font-size: 1rem;
  }
  
  .technique-info p {
    font-size: 0.85rem;
  }
  
  .strategies-conclusion {
    padding: 20px;
  }
  
  .conclusion-text {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .strategy-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .strategies-overlay {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
  }
  
  .demo-badge, .strategy-badge {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}

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

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

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

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

/* Footer Brand Section */
.footer-brand {
  max-width: 350px;
}

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

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

.footer-description {
  font-size: 1rem;
  color: #b8b8b8;
  line-height: 1.7;
  margin-bottom: 25px;
}

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

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

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

/* Footer Sections */
.footer-section {
  animation: fadeInUp 1s ease-out;
}

.footer-section:nth-child(2) { animation-delay: 0.1s; }
.footer-section:nth-child(3) { animation-delay: 0.2s; }
.footer-section:nth-child(4) { animation-delay: 0.3s; }

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  position: relative;
}

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

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

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

.footer-item:hover {
  transform: translateX(8px);
}

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

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

.footer-link i {
  color: #ff6b35;
  width: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.footer-link:hover i {
  color: #ffd700;
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 0;
}

.footer-bottom-content {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
}

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

.footer-copyright p {
  margin: 0;
}

/* Payment Methods */
.footer-payments {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 15px;
}

.payment-item {
  width: 40px;
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.payment-item i {
  color: #ffffff;
  font-size: 1.2rem;
}

.payment-text {
  font-size: 0.8rem;
  color: #b8b8b8;
  text-align: center;
}

/* Security Badges */
.footer-security {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.security-badges {
  display: flex;
  gap: 15px;
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.security-badge:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}

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

.security-badge span {
  font-size: 0.7rem;
  color: #b8b8b8;
  text-align: center;
  white-space: nowrap;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-container {
    padding: 0 30px;
  }
  
  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 50px 0;
  }
  
  .footer-brand {
    grid-column: 1;
    text-align: center;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-item:hover {
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    padding: 25px 0;
  }
  
  .payment-methods {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .security-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 16px;
  }
  
  .footer-content {
    padding: 40px 0;
    gap: 30px;
  }
  
  .footer-brand-text {
    font-size: 1.5rem;
  }
  
  .footer-description {
    font-size: 0.95rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .footer-link {
    font-size: 0.9rem;
    justify-content: center;
  }
  
  .contact-item {
    justify-content: center;
    font-size: 0.9rem;
  }
  
  .footer-copyright {
    font-size: 0.85rem;
  }
  
  .payment-item {
    width: 35px;
    height: 25px;
  }
  
  .payment-item i {
    font-size: 1rem;
  }
  
  .payment-text {
    font-size: 0.75rem;
  }
  
  .security-badge {
    padding: 8px 10px;
  }
  
  .security-badge i {
    font-size: 1rem;
  }
  
  .security-badge span {
    font-size: 0.65rem;
  }
}

/* Sticky Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 1000;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding: 8px;
  gap: 4px;
  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;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 60px;
}

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

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

.sticky-login {
  background: linear-gradient(135deg, #16213e, #1a1a2e);
  color: #ffffff;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.sticky-login:hover {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.sticky-register {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  box-shadow: 0 2px 15px rgba(255, 107, 53, 0.3);
}

.sticky-register:hover {
  background: linear-gradient(135deg, #f7931e, #ff6b35);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.sticky-bonus {
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #000000;
  box-shadow: 0 2px 15px rgba(255, 215, 0, 0.3);
  animation: pulse-glow 2s ease-in-out infinite;
}

.sticky-bonus:hover {
  background: linear-gradient(135deg, #ffed4a, #ffd700);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

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

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

.btn-text {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.3s ease;
}

.sticky-btn:hover .btn-text {
  transform: scale(1.05);
}

/* Pulse glow animation for bonus button */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 2px 15px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 2px 15px rgba(255, 215, 0, 0.6), 0 0 25px rgba(255, 215, 0, 0.3);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .sticky-buttons {
    padding: 6px;
    gap: 3px;
  }
  
  .sticky-btn {
    padding: 10px 6px;
    min-height: 55px;
    border-radius: 10px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .btn-text {
    font-size: 0.75rem;
  }
  
  body {
    padding-bottom: 75px;
  }
}

@media (max-width: 480px) {
  .sticky-buttons {
    padding: 4px;
    gap: 2px;
  }
  
  .sticky-btn {
    padding: 8px 4px;
    min-height: 50px;
    border-radius: 8px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 3px;
  }
  
  .btn-text {
    font-size: 0.7rem;
  }
  
  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 360px) {
  .sticky-btn {
    padding: 6px 3px;
    min-height: 45px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
  }
  
  .btn-text {
    font-size: 0.65rem;
  }
  
  body {
    padding-bottom: 65px;
  }
}

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

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

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

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

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

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

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

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

.login-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-subtitle {
  font-size: 1rem;
  color: #b8b8b8;
  margin: 0;
  line-height: 1.5;
}

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

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

.error-text {
  color: #dc3545;
  font-weight: 500;
  font-size: 0.95rem;
}

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

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

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

.form-label i {
  color: #ff6b35;
  width: 16px;
  text-align: center;
}

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

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

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

.form-input:invalid {
  border-color: rgba(220, 53, 69, 0.5);
}

.form-input:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.2);
}

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

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

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

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

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

.field-error.show {
  display: block;
  animation: fadeInUp 0.3s ease-out;
}

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

.login-btn::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.5s ease;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

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

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

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

.loading-spinner {
  position: absolute;
}

/* Divider */
.login-divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 215, 0, 0.2);
}

.divider-text {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 20px;
  color: #888888;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* Register Button */
.register-btn {
  width: 100%;
  padding: 16px 24px;
  background: rgba(255, 215, 0, 0.1);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.register-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

/* Login Footer */
.login-footer {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.forgot-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.forgot-link i {
  font-size: 0.8rem;
}

.security-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888888;
  font-size: 0.85rem;
  text-align: center;
}

.security-note i {
  color: #28a745;
  font-size: 0.9rem;
}

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

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-section {
    padding: 20px 16px;
  }
  
  .login-card {
    padding: 30px 25px;
    border-radius: 20px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-title {
    font-size: 1.7rem;
  }
  
  .login-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 18px;
  }
  
  .login-btn {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .register-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-container {
    max-width: 100%;
  }
  
  .login-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-title {
    font-size: 1.5rem;
  }
  
  .login-subtitle {
    font-size: 0.9rem;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  
  .login-footer {
    margin-top: 25px;
    gap: 12px;
  }
  
  .forgot-link {
    font-size: 0.85rem;
  }
  
  .security-note {
    font-size: 0.8rem;
  }
}

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

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

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

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

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

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

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

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

.register-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.register-subtitle {
  font-size: 1rem;
  color: #b8b8b8;
  margin: 0;
  line-height: 1.5;
}

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

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

.error-text {
  color: #dc3545;
  font-weight: 500;
  font-size: 0.95rem;
}

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

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

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

.form-label i {
  color: #ff6b35;
  width: 16px;
  text-align: center;
}

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

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

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

.form-input:invalid {
  border-color: rgba(220, 53, 69, 0.5);
}

.form-input:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.2);
}

/* Field Helper */
.field-help {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #888888;
  font-size: 0.85rem;
}

.field-help i {
  color: #ffd700;
  font-size: 0.8rem;
}

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

.field-error.show {
  display: block;
  animation: fadeInUp 0.3s ease-out;
}

/* Terms Agreement */
.terms-agreement {
  margin-bottom: 30px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-container input {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkmark:after {
  content: '';
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #ffd700;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark {
  background: rgba(255, 215, 0, 0.2);
  border-color: #ffd700;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-text {
  color: #c8c8c8;
}

.terms-link, .privacy-link {
  color: #ffd700;
  text-decoration: underline;
  margin: 0 4px;
  transition: color 0.3s ease;
}

.terms-link:hover, .privacy-link:hover {
  color: #ff6b35;
}

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

.register-btn::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.5s ease;
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

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

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

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

.loading-spinner {
  position: absolute;
}

/* Divider */
.register-divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.register-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 215, 0, 0.2);
}

.divider-text {
  background: rgba(255, 255, 255, 0.05);
  padding: 0 20px;
  color: #888888;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* Login Button */
.login-btn {
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  color: #ffd700;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.login-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

/* Register Footer */
.register-footer {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.register-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

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

.benefit-item:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-3px);
}

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

.benefit-item span {
  color: #c8c8c8;
  font-size: 0.8rem;
  text-align: center;
  font-weight: 500;
}

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

.security-note i {
  color: #28a745;
  font-size: 0.9rem;
}

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

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .register-section {
    padding: 20px 16px;
  }
  
  .register-card {
    padding: 30px 25px;
    border-radius: 20px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-title {
    font-size: 1.7rem;
  }
  
  .register-subtitle {
    font-size: 0.95rem;
  }
  
  .form-input {
    padding: 14px 18px;
  }
  
  .register-btn {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .login-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  
  .register-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .register-container {
    max-width: 100%;
  }
  
  .register-card {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-title {
    font-size: 1.5rem;
  }
  
  .register-subtitle {
    font-size: 0.9rem;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-input {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .register-btn {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .login-btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  
  .register-footer {
    margin-top: 30px;
    gap: 20px;
  }
  
  .benefit-item {
    padding: 12px 8px;
  }
  
  .benefit-item i {
    font-size: 1.1rem;
  }
  
  .benefit-item span {
    font-size: 0.75rem;
  }
  
  .security-note {
    font-size: 0.8rem;
  }
  
  .checkbox-container {
    font-size: 0.85rem;
  }
  
  .field-help {
    font-size: 0.8rem;
  }
}

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

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

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

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

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

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

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
  position: relative;
  overflow: hidden;
}

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

.hero-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.6);
}

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

.hero-cta-btn i {
  animation: pulse 2s ease-in-out infinite;
}

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

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

.promotions-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Promotion Cards */
.promotion-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  padding: 35px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}

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

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

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

.promotion-card.featured {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.2);
}

.promotion-card:nth-child(1) { animation-delay: 0.1s; }
.promotion-card:nth-child(2) { animation-delay: 0.2s; }
.promotion-card:nth-child(3) { animation-delay: 0.3s; }
.promotion-card:nth-child(4) { animation-delay: 0.4s; }

/* Promotion Header */
.promotion-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.promotion-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  animation: bounceIn 1s ease-out;
}

.promotion-badge:nth-of-type(1) { animation-delay: 0.5s; }
.promotion-badge:nth-of-type(2) { animation-delay: 0.6s; }
.promotion-badge:nth-of-type(3) { animation-delay: 0.7s; }
.promotion-badge:nth-of-type(4) { animation-delay: 0.8s; }

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

.promotion-badge.bonus {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
}

.promotion-badge.vip {
  background: linear-gradient(135deg, #6f42c1, #495057);
  color: #ffffff;
}

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

.promotion-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.promotion-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
  background: linear-gradient(135deg, #ffd700, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Promotion Content */
.promotion-content {
  text-align: left;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border-left: 3px solid rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 215, 0, 0.05);
  border-left-color: #ffd700;
  transform: translateX(5px);
}

.benefit-item i {
  color: #ff6b35;
  font-size: 1.1rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.benefit-item:hover i {
  color: #ffd700;
  transform: scale(1.1);
}

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

/* CTA Buttons */
.promotion-cta-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.promotion-cta-btn::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.5s ease;
}

.promotion-cta-btn:hover {
  transform: translateY(-2px);
}

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

.promotion-cta-btn.primary {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.promotion-cta-btn.primary:hover {
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.promotion-cta-btn.secondary {
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  color: #000000;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.promotion-cta-btn.secondary:hover {
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.promotion-cta-btn.tertiary {
  background: linear-gradient(135deg, #6f42c1, #495057);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(111, 66, 193, 0.4);
}

.promotion-cta-btn.tertiary:hover {
  box-shadow: 0 12px 35px rgba(111, 66, 193, 0.6);
}

.promotion-cta-btn.demo-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.promotion-cta-btn.demo-btn:hover {
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.6);
}

.promotion-cta-btn i {
  animation: bounce 2s ease-in-out infinite;
}

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-container, .promotions-container {
    padding: 0 30px;
  }
  
  .promotions-container {
    gap: 30px;
  }
}

@media (max-width: 968px) {
  .promotions-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .promotion-card {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta-btn {
    padding: 18px 35px;
    font-size: 1.2rem;
  }
  
  .promotions-section {
    padding: 60px 0;
  }
  
  .promotion-title {
    font-size: 1.25rem;
  }
  
  .promotion-icon {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero-container, .promotions-container {
    padding: 0 16px;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta-btn {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
  
  .promotions-section {
    padding: 50px 0;
  }
  
  .promotion-card {
    padding: 25px 20px;
    border-radius: 20px;
  }
  
  .promotion-title {
    font-size: 1.1rem;
  }
  
  .promotion-icon {
    font-size: 2rem;
  }
  
  .benefit-item {
    padding: 10px 12px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .benefit-item i {
    margin-top: 0;
  }
  
  .benefit-item span {
    font-size: 0.9rem;
  }
  
  .promotion-cta-btn {
    padding: 14px 20px;
    font-size: 1rem;
  }
  
  .promotion-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
}