/* Base Theme Styles */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #f7931e;
  --accent-color: #ffd700;
  --bg-dark: #0d1117;
  --bg-darker: #010409;
  --card-bg: #161b22;
  --text-primary: #ffffff;
  --text-secondary: #8b949e;
  --border-color: #30363d;
  --success-color: #238636;
  --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  --gradient-dark: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
  --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Sarabun', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background: var(--card-bg);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Hero Section */
.hero-section {
  padding: 80px 0 60px;
  background: var(--gradient-dark);
  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, 107, 53, 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: 1;
}

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 20px;
  font-size: 14px;
  color: var(--text-primary);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 16px;
}

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

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-heavy);
  transition: transform 0.3s ease;
}

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

.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-medium);
}

.hero-badge i {
  color: var(--accent-color);
}

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

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .hero-content {
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .hero-section {
    padding: 40px 0 30px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .hero-buttons {
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 15px;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .feature-item {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  .hero-badge {
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 30px 0 25px;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-item {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

/* Header Styles */
.site-header {
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(13, 17, 23, 0.98);
  box-shadow: var(--shadow-medium);
}

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

.logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

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

.logo-link i {
  color: var(--primary-color);
  font-size: 1.4rem;
}

.logo-text {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Prompt', sans-serif;
}

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

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

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle:hover .hamburger-line {
  background: var(--primary-color);
}

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

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

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

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

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

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

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

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.mobile-logo i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--primary-color);
  background: rgba(255, 107, 53, 0.1);
}

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

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

.mobile-nav-item {
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-item:last-child {
  border-bottom: none;
  margin-top: 20px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

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

.mobile-cta .mobile-nav-link {
  background: var(--gradient-primary);
  color: white;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 10px;
  justify-content: center;
  font-weight: 600;
  box-shadow: var(--shadow-light);
}

.mobile-cta .mobile-nav-link:hover {
  padding-left: 20px;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.mobile-cta .mobile-nav-link i {
  color: white;
}

.desktop-only {
  display: flex;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .nav-list {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
  
  .btn-cta {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 10px 0;
  }
  
  .main-nav {
    display: none;
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-link {
    font-size: 1.1rem;
  }
  
  .logo-link i {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 8px 0;
  }
  
  .logo-link {
    font-size: 1rem;
  }
  
  .logo-link i {
    font-size: 1.1rem;
  }
  
  .mobile-menu-toggle {
    width: 28px;
    height: 28px;
  }
  
  .hamburger-line {
    width: 18px;
  }
  
  .mobile-menu-header {
    padding: 16px;
  }
  
  .mobile-nav {
    padding: 16px;
  }
  
  .mobile-nav-link {
    font-size: 0.95rem;
  }
}

/* Platform Section */
.platform-section {
  padding: 80px 0;
  background: var(--bg-darker);
  position: relative;
}

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

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

.platform-info {
  animation: fadeInLeft 1s ease-out 0.2s both;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}

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

.platform-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.inline-link {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.inline-link:hover {
  border-bottom-color: var(--primary-color);
  color: var(--secondary-color);
}

.platform-highlights {
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateX(5px);
}

.highlight-number {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.highlight-text h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin: 0;
}

.platform-summary {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.platform-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.platform-visual {
  animation: fadeInRight 1s ease-out 0.4s both;
  position: relative;
}

.platform-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.platform-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.platform-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(13, 17, 23, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  justify-content: space-around;
  border: 1px solid var(--border-color);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.stat-number i {
  font-size: 1rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .platform-section {
    padding: 60px 0;
  }
  
  .platform-content {
    gap: 40px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .platform-text p {
    font-size: 0.95rem;
  }
  
  .platform-stats {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 50px 0;
  }
  
  .platform-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .platform-text p {
    font-size: 0.9rem;
  }
  
  .highlight-item {
    padding: 12px;
  }
  
  .highlight-text h4 {
    font-size: 0.95rem;
  }
  
  .platform-summary {
    font-size: 0.9rem;
    padding: 16px;
  }
  
  .platform-cta {
    justify-content: center;
  }
  
  .platform-stats {
    flex-direction: column;
    gap: 12px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 12px;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  
  .stat-number {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .platform-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .platform-text p {
    font-size: 0.85rem;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 16px;
  }
  
  .highlight-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  
  .highlight-text h4 {
    font-size: 0.9rem;
  }
  
  .platform-summary {
    font-size: 0.85rem;
    padding: 14px;
  }
  
  .platform-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .stat-number {
    font-size: 1rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}

/* Streaming Section */
.streaming-section {
  padding: 80px 0;
  background: var(--bg-dark);
  position: relative;
}

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

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

.streaming-visual {
  animation: fadeInLeft 1s ease-out 0.2s both;
}

.streaming-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  margin-bottom: 30px;
}

.streaming-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.streaming-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(13, 17, 23, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.streaming-image-wrapper:hover .streaming-overlay {
  opacity: 1;
}

.streaming-image-wrapper:hover .streaming-img {
  transform: scale(1.05);
}

.play-button {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-heavy);
}

.quality-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(13, 17, 23, 0.9);
  backdrop-filter: blur(10px);
  color: var(--accent-color);
  padding: 8px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border-color);
}

.streaming-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 107, 53, 0.05);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.feature-content p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
}

.streaming-info {
  animation: fadeInRight 1s ease-out 0.4s both;
}

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

.streaming-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.tech-highlights {
  margin-bottom: 30px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(247, 147, 30, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: rgba(247, 147, 30, 0.1);
  transform: translateX(5px);
}

.tech-item i {
  color: var(--secondary-color);
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.tech-content h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.tech-content span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .streaming-section {
    padding: 60px 0;
  }
  
  .streaming-content {
    gap: 40px;
  }
  
  .streaming-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .streaming-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .streaming-section {
    padding: 50px 0;
  }
  
  .streaming-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-title {
    text-align: center;
  }
  
  .streaming-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .feature-card {
    padding: 16px;
  }
  
  .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .feature-content h4 {
    font-size: 0.85rem;
  }
  
  .feature-content p {
    font-size: 0.75rem;
  }
  
  .streaming-text p {
    font-size: 0.9rem;
  }
  
  .tech-item {
    padding: 12px;
  }
  
  .tech-item i {
    font-size: 18px;
  }
  
  .tech-content h4 {
    font-size: 0.95rem;
  }
  
  .tech-content span {
    font-size: 0.8rem;
  }
  
  .streaming-cta {
    text-align: center;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .quality-badge {
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .streaming-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .streaming-image-wrapper {
    margin-bottom: 20px;
  }
  
  .streaming-features {
    gap: 10px;
  }
  
  .feature-card {
    flex-direction: column;
    text-align: center;
    padding: 16px 12px;
  }
  
  .feature-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .streaming-text p {
    font-size: 0.85rem;
  }
  
  .tech-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 16px;
  }
  
  .tech-content h4 {
    font-size: 0.9rem;
  }
  
  .tech-content span {
    font-size: 0.75rem;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .play-button {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .quality-badge {
    top: 10px;
    right: 10px;
    padding: 5px 8px;
    font-size: 10px;
  }
}

/* Baccarat Section */
.baccarat-section {
  padding: 80px 0;
  background: var(--bg-darker);
  position: relative;
}

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

.baccarat-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.baccarat-info {
  animation: fadeInLeft 1s ease-out 0.2s both;
}

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

.baccarat-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.game-types {
  margin-bottom: 40px;
}

.game-type-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.game-type-item:hover {
  background: rgba(255, 107, 53, 0.05);
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.game-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.game-content h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0 0 6px 0;
}

.game-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.baccarat-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.baccarat-visual {
  animation: fadeInRight 1s ease-out 0.4s both;
}

.baccarat-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  margin-bottom: 30px;
}

.baccarat-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.95) 0%, transparent 100%);
  padding: 20px;
}

.table-types {
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.table-type {
  text-align: center;
  flex: 1;
}

.table-min {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.table-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.side-bets {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.side-bets-title {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-align: center;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 8px;
}

.side-bets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.side-bet-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 6px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.side-bet-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: scale(1.02);
}

.bet-name {
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 500;
}

.bet-payout {
  font-size: 0.8rem;
  color: var(--secondary-color);
  font-weight: 700;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .baccarat-section {
    padding: 60px 0;
  }
  
  .baccarat-content {
    gap: 40px;
  }
  
  .game-type-item {
    padding: 16px;
  }
  
  .game-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .baccarat-text p {
    font-size: 0.95rem;
  }
  
  .side-bets {
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .baccarat-section {
    padding: 50px 0;
  }
  
  .baccarat-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-title {
    text-align: center;
  }
  
  .game-type-item {
    padding: 16px;
  }
  
  .game-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .game-content h4 {
    font-size: 1rem;
  }
  
  .game-content p {
    font-size: 0.85rem;
  }
  
  .baccarat-text p {
    font-size: 0.9rem;
  }
  
  .baccarat-cta {
    justify-content: center;
  }
  
  .table-types {
    flex-direction: column;
    gap: 8px;
  }
  
  .table-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 17, 23, 0.7);
    padding: 6px 12px;
    border-radius: 4px;
  }
  
  .table-min {
    margin-bottom: 0;
    font-size: 1rem;
  }
  
  .table-label {
    font-size: 0.75rem;
  }
  
  .side-bets-grid {
    grid-template-columns: 1fr;
  }
  
  .side-bet-item {
    padding: 10px 12px;
  }
  
  .bet-name {
    font-size: 0.85rem;
  }
  
  .bet-payout {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .baccarat-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .game-type-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px 16px;
  }
  
  .game-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .game-content h4 {
    font-size: 0.95rem;
  }
  
  .game-content p {
    font-size: 0.8rem;
  }
  
  .baccarat-text p {
    font-size: 0.85rem;
  }
  
  .baccarat-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .game-overlay {
    padding: 15px;
  }
  
  .table-min {
    font-size: 0.9rem;
  }
  
  .table-label {
    font-size: 0.7rem;
  }
  
  .side-bets {
    padding: 16px;
  }
  
  .side-bets-title {
    font-size: 1rem;
  }
  
  .side-bet-item {
    padding: 8px 10px;
  }
  
  .bet-name {
    font-size: 0.75rem;
  }
  
  .bet-payout {
    font-size: 0.75rem;
  }
}

/* Dealers Section */
.dealers-section {
  padding: 80px 0;
  background: var(--bg-dark);
  position: relative;
}

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

.dealers-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.dealers-visual {
  animation: fadeInLeft 1s ease-out 0.2s both;
}

.dealers-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  margin-bottom: 30px;
}

.dealers-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.dealers-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-medium);
}

.dealers-badge i {
  font-size: 12px;
}

.dealers-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--card-bg);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.highlight-info h4 {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.dealers-info {
  animation: fadeInRight 1s ease-out 0.4s both;
}

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

.dealers-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateX(5px);
}

.service-item i {
  color: var(--accent-color);
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.service-content h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.service-content span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.dealers-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .dealers-section {
    padding: 60px 0;
  }
  
  .dealers-content {
    gap: 40px;
  }
  
  .highlight-card {
    padding: 14px;
  }
  
  .highlight-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .highlight-info h4 {
    font-size: 0.85rem;
  }
  
  .dealers-text p {
    font-size: 0.95rem;
  }
  
  .service-item {
    padding: 14px;
  }
}

@media (max-width: 768px) {
  .dealers-section {
    padding: 50px 0;
  }
  
  .dealers-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-title {
    text-align: center;
  }
  
  .dealers-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .highlight-card {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 16px 12px;
  }
  
  .highlight-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  
  .highlight-info h4 {
    font-size: 0.8rem;
  }
  
  .dealers-text p {
    font-size: 0.9rem;
  }
  
  .service-item {
    padding: 12px;
  }
  
  .service-item i {
    font-size: 18px;
  }
  
  .service-content h4 {
    font-size: 0.95rem;
  }
  
  .service-content span {
    font-size: 0.8rem;
  }
  
  .dealers-cta {
    justify-content: center;
  }
  
  .dealers-badge {
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .dealers-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .dealers-image-wrapper {
    margin-bottom: 20px;
  }
  
  .dealers-highlights {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .highlight-card {
    padding: 14px 12px;
  }
  
  .highlight-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  
  .highlight-info h4 {
    font-size: 0.75rem;
  }
  
  .dealers-text p {
    font-size: 0.85rem;
  }
  
  .service-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 16px 12px;
  }
  
  .service-content h4 {
    font-size: 0.9rem;
  }
  
  .service-content span {
    font-size: 0.75rem;
  }
  
  .dealers-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .dealers-badge {
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-size: 12px;
  }
  
  .dealers-badge i {
    font-size: 10px;
  }
}

/* VIP Section */
.vip-section {
  padding: 80px 0;
  background: var(--bg-darker);
  position: relative;
}

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

.vip-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.vip-info {
  animation: fadeInLeft 1s ease-out 0.2s both;
}

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

.vip-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.vip-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.vip-visual {
  animation: fadeInRight 1s ease-out 0.4s both;
}

.vip-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  margin-bottom: 30px;
}

.vip-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.vip-crown {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #ffec8b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8860b;
  font-size: 20px;
  box-shadow: var(--shadow-medium);
  animation: pulse 2s infinite;
}

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

.vip-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.tier-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tier-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  transition: all 0.3s ease;
}

.tier-bronze {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.05) 0%, var(--card-bg) 100%);
}

.tier-bronze::before {
  background: #cd7f32;
}

.tier-bronze:hover {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.1) 0%, var(--card-bg) 100%);
  transform: translateX(5px);
}

.tier-silver {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.05) 0%, var(--card-bg) 100%);
}

.tier-silver::before {
  background: #c0c0c0;
}

.tier-silver:hover {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, var(--card-bg) 100%);
  transform: translateX(5px);
}

.tier-gold {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, var(--card-bg) 100%);
}

.tier-gold::before {
  background: var(--accent-color);
}

.tier-gold:hover {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, var(--card-bg) 100%);
  transform: translateX(5px);
}

.tier-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.tier-bronze .tier-icon {
  background: linear-gradient(135deg, #cd7f32 0%, #daa520 100%);
  color: white;
}

.tier-silver .tier-icon {
  background: linear-gradient(135deg, #c0c0c0 0%, #e5e5e5 100%);
  color: #666;
}

.tier-gold .tier-icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, #ffec8b 100%);
  color: #b8860b;
}

.tier-info h4 {
  font-size: 1rem;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.tier-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0 0 6px 0;
}

.tier-bonus {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.tier-bronze .tier-bonus {
  background: rgba(205, 127, 50, 0.2);
  color: #cd7f32;
}

.tier-silver .tier-bonus {
  background: rgba(192, 192, 192, 0.2);
  color: #c0c0c0;
}

.tier-gold .tier-bonus {
  background: rgba(255, 215, 0, 0.2);
  color: var(--accent-color);
}

.vip-benefits {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.benefits-title {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-align: center;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 6px;
  transition: all 0.3s ease;
}

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

.benefit-item i {
  color: var(--accent-color);
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.benefit-item span {
  font-size: 0.85rem;
  color: var(--text-primary);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .vip-section {
    padding: 60px 0;
  }
  
  .vip-content {
    gap: 40px;
  }
  
  .vip-text p {
    font-size: 0.95rem;
  }
  
  .tier-card {
    padding: 14px;
  }
  
  .tier-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .vip-benefits {
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .vip-section {
    padding: 50px 0;
  }
  
  .vip-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-title {
    text-align: center;
  }
  
  .vip-text p {
    font-size: 0.9rem;
  }
  
  .vip-cta {
    justify-content: center;
  }
  
  .vip-tiers {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  
  .tier-card {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 16px 12px;
  }
  
  .tier-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .tier-info h4 {
    font-size: 0.9rem;
  }
  
  .tier-info p {
    font-size: 0.75rem;
  }
  
  .tier-bonus {
    font-size: 0.75rem;
  }
  
  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .benefit-item {
    padding: 6px 10px;
  }
  
  .benefit-item span {
    font-size: 0.8rem;
  }
  
  .vip-crown {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .vip-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .vip-text p {
    font-size: 0.85rem;
  }
  
  .vip-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .vip-tiers {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .tier-card {
    padding: 14px 12px;
  }
  
  .tier-icon {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
  
  .tier-info h4 {
    font-size: 0.85rem;
  }
  
  .tier-info p {
    font-size: 0.7rem;
  }
  
  .tier-bonus {
    font-size: 0.7rem;
  }
  
  .benefits-title {
    font-size: 1rem;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
  }
  
  .benefit-item {
    padding: 8px 10px;
  }
  
  .benefit-item i {
    font-size: 12px;
  }
  
  .benefit-item span {
    font-size: 0.75rem;
  }
  
  .vip-crown {
    width: 35px;
    height: 35px;
    font-size: 14px;
    top: 12px;
    right: 12px;
  }
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, var(--bg-darker) 0%, #000 100%);
  color: var(--text-secondary);
  padding: 60px 0 0;
  margin-top: 80px;
  position: relative;
}

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

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

.footer-brand {
  max-width: 100%;
}

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

.footer-logo i {
  color: var(--primary-color);
  font-size: 1.8rem;
}

.footer-logo-text {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-item i {
  color: var(--primary-color);
  width: 16px;
  text-align: center;
}

.footer-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 8px;
  display: inline-block;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 4px 0;
  transition: all 0.3s ease;
}

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

.footer-link i {
  color: var(--primary-color);
  width: 14px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

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

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.badge-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.badge-desc {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
}

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

.footer-copyright p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.payment-methods {
  display: flex;
  gap: 8px;
}

.payment-methods i {
  width: 32px;
  height: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.payment-methods i:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.footer-disclaimer {
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.disclaimer-text {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
  color: var(--text-secondary);
}

.disclaimer-text i {
  color: #ffc107;
  margin-top: 2px;
  flex-shrink: 0;
}

.age-restriction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(220, 38, 127, 0.1);
  border: 1px solid rgba(220, 38, 127, 0.3);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #dc267f;
}

.age-restriction i {
  color: #dc267f;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .site-footer {
    padding: 50px 0 0;
    margin-top: 60px;
  }
  
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
  }
  
  .footer-title {
    font-size: 1rem;
  }
  
  .footer-link {
    font-size: 0.8rem;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 0;
    margin-top: 50px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }
  
  .footer-social {
    grid-column: 1 / -1;
    margin-top: 20px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-payment {
    flex-direction: column;
    gap: 8px;
  }
  
  .payment-methods {
    justify-content: center;
  }
  
  .footer-badges {
    flex-direction: row;
    gap: 8px;
  }
  
  .badge-item {
    flex: 1;
    padding: 6px 8px;
  }
  
  .badge-title {
    font-size: 0.75rem;
  }
  
  .badge-desc {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 30px 0 0;
    margin-top: 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-brand {
    margin-bottom: 15px;
  }
  
  .footer-logo-text {
    font-size: 1.1rem;
  }
  
  .footer-description {
    font-size: 0.85rem;
  }
  
  .footer-title {
    font-size: 0.95rem;
  }
  
  .footer-link {
    font-size: 0.8rem;
  }
  
  .contact-item {
    font-size: 0.8rem;
  }
  
  .social-link {
    width: 34px;
    height: 34px;
  }
  
  .footer-badges {
    flex-direction: column;
  }
  
  .badge-item {
    padding: 8px 10px;
  }
  
  .payment-methods i {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .footer-copyright p {
    font-size: 0.8rem;
  }
  
  .payment-text {
    font-size: 0.75rem;
  }
  
  .disclaimer-text {
    font-size: 0.75rem;
  }
  
  .age-restriction {
    font-size: 0.75rem;
  }
}

/* Sticky Bottom Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 999;
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  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: var(--text-primary);
  transition: all 0.3s ease;
  border-right: 1px solid var(--border-color);
  position: relative;
  min-height: 70px;
}

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

.sticky-btn:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
  transform: translateY(-2px);
}

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

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

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

.sticky-btn-login {
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.1) 0%, transparent 100%);
}

.sticky-btn-login:hover {
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
}

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

.sticky-btn-register {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
}

.sticky-btn-register:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
}

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

.sticky-btn-bonus {
  background: var(--gradient-primary);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.sticky-btn-bonus:hover {
  background: var(--gradient-primary);
  background-size: 200% 200%;
  animation: gradientShift 1.5s ease infinite;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.sticky-btn-bonus i {
  color: white;
}

.sticky-btn-bonus .sticky-btn-text {
  color: white;
}

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

/* Add pulse animation to bonus button */
.sticky-btn-bonus::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: inherit;
  z-index: -1;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

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

/* Tablet Styles */
@media (max-width: 1024px) {
  .sticky-btn {
    padding: 10px 6px;
    min-height: 65px;
  }
  
  .sticky-btn i {
    font-size: 1.1rem;
  }
  
  .sticky-btn-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .sticky-btn {
    padding: 8px 4px;
    min-height: 60px;
  }
  
  .sticky-btn i {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn-text {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .sticky-btn {
    padding: 6px 2px;
    min-height: 55px;
  }
  
  .sticky-btn i {
    font-size: 0.9rem;
    margin-bottom: 2px;
  }
  
  .sticky-btn-text {
    font-size: 0.65rem;
    line-height: 1.1;
  }
}

/* Adjust body padding to prevent content from being hidden behind sticky buttons */
body {
  padding-bottom: 70px;
}

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

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

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

/* Login Section Styles */
.login-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 80px;
  position: relative;
}

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

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

.login-container {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-heavy);
  overflow: hidden;
  position: relative;
}

.login-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.login-logo {
  text-align: center;
  padding: 30px 30px 20px;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease;
}

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

.login-form-wrapper {
  padding: 0 30px 30px;
}

.login-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.error-message {
  background: rgba(220, 38, 127, 0.1);
  border: 1px solid rgba(220, 38, 127, 0.3);
  color: #dc267f;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  animation: shake 0.5s ease-in-out;
}

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

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

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

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

.form-label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

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

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  z-index: 2;
  transition: color 0.3s ease;
}

.form-input {
  width: 100%;
  padding: 14px 14px 14px 42px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input:focus + .input-icon,
.input-wrapper:focus-within .input-icon {
  color: var(--primary-color);
}

.form-input.error {
  border-color: #dc267f;
  background: rgba(220, 38, 127, 0.05);
}

.form-input.success {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.05);
}

.password-toggle {
  position: absolute;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
  z-index: 2;
}

.password-toggle:hover {
  color: var(--primary-color);
  background: rgba(255, 107, 53, 0.1);
}

.field-error {
  color: #dc267f;
  font-size: 0.75rem;
  margin-top: 4px;
  min-height: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.field-error:empty {
  display: none;
}

.login-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.login-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

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

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

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

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

.register-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.register-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(255, 107, 53, 0.05);
}

.additional-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.back-link,
.promo-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.promo-link:hover {
  color: var(--accent-color);
  background: rgba(255, 215, 0, 0.1);
}

.security-badge {
  background: rgba(34, 197, 94, 0.1);
  border-top: 1px solid rgba(34, 197, 94, 0.2);
  padding: 12px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #22c55e;
  font-size: 0.8rem;
  font-weight: 500;
}

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

/* Tablet Styles */
@media (max-width: 768px) {
  .login-section {
    padding: 80px 0 60px;
  }
  
  .login-wrapper {
    max-width: 400px;
  }
  
  .login-logo {
    padding: 25px 25px 15px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .login-form-wrapper {
    padding: 0 25px 25px;
  }
  
  .login-title {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 12px 12px 12px 38px;
  }
  
  .input-icon {
    left: 12px;
  }
  
  .password-toggle {
    right: 12px;
  }
  
  .login-btn {
    padding: 14px 20px;
  }
  
  .additional-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .login-section {
    padding: 70px 0 50px;
  }
  
  .login-wrapper {
    max-width: 350px;
    margin: 0 20px;
  }
  
  .login-logo {
    padding: 20px 20px 10px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .login-form-wrapper {
    padding: 0 20px 20px;
  }
  
  .login-title {
    font-size: 1.4rem;
  }
  
  .login-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    padding: 10px 10px 10px 35px;
    font-size: 0.85rem;
  }
  
  .input-icon {
    left: 10px;
    font-size: 0.8rem;
  }
  
  .password-toggle {
    right: 10px;
  }
  
  .login-btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
  
  .form-label {
    font-size: 0.85rem;
  }
  
  .field-error {
    font-size: 0.7rem;
  }
  
  .register-link {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .back-link,
  .promo-link {
    font-size: 0.8rem;
  }
  
  .security-badge {
    padding: 10px 15px;
    font-size: 0.75rem;
  }
}

/* Register Section Styles */
.register-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 80px;
  position: relative;
}

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

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

.register-container {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-heavy);
  overflow: hidden;
  position: relative;
}

.register-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.register-logo {
  text-align: center;
  padding: 30px 30px 20px;
}

.logo-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease;
}

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

.register-form-wrapper {
  padding: 0 30px 20px;
}

.register-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.register-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 25px;
  line-height: 1.4;
}

.success-message {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  animation: fadeInUp 0.5s ease-out;
}

.success-message i {
  color: #22c55e;
  font-size: 1rem;
}

.error-message {
  background: rgba(220, 38, 127, 0.1);
  border: 1px solid rgba(220, 38, 127, 0.3);
  color: #dc267f;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  animation: shake 0.5s ease-in-out;
}

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

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

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

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

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

.form-label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

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

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  z-index: 2;
  transition: color 0.3s ease;
}

.form-input {
  width: 100%;
  padding: 16px 14px 16px 42px;
  background: var(--bg-dark);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input:focus + .input-icon,
.input-wrapper:focus-within .input-icon {
  color: var(--primary-color);
}

.form-input.error {
  border-color: #dc267f;
  background: rgba(220, 38, 127, 0.05);
}

.form-input.success {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.05);
}

.field-error {
  color: #dc267f;
  font-size: 0.75rem;
  margin-top: 4px;
  min-height: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.field-error:empty {
  display: none;
}

.field-help {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  margin-top: 4px;
}

.field-help i {
  color: var(--primary-color);
  font-size: 0.7rem;
}

.register-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 18px 24px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.register-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

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

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

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

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

.login-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  background: transparent;
}

.login-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(255, 107, 53, 0.05);
}

.additional-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.back-link,
.promo-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.promo-link:hover {
  color: var(--accent-color);
  background: rgba(255, 215, 0, 0.1);
}

.security-badge {
  background: rgba(34, 197, 94, 0.1);
  border-top: 1px solid rgba(34, 197, 94, 0.2);
  padding: 12px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #22c55e;
  font-size: 0.8rem;
  font-weight: 500;
}

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

.benefits-section {
  padding: 20px;
  background: rgba(255, 107, 53, 0.05);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.benefits-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 12px;
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.benefit-item i {
  color: var(--primary-color);
  width: 16px;
  text-align: center;
}

/* Tablet Styles */
@media (max-width: 768px) {
  .register-section {
    padding: 80px 0 60px;
  }
  
  .register-wrapper {
    max-width: 420px;
  }
  
  .register-logo {
    padding: 25px 25px 15px;
  }
  
  .logo-image {
    width: 70px;
    height: 70px;
  }
  
  .register-form-wrapper {
    padding: 0 25px 15px;
  }
  
  .register-title {
    font-size: 1.6rem;
  }
  
  .form-input {
    padding: 14px 12px 14px 38px;
    font-size: 0.95rem;
  }
  
  .input-icon {
    left: 12px;
  }
  
  .register-btn {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .additional-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .benefits-section {
    padding: 16px;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .register-section {
    padding: 70px 0 50px;
  }
  
  .register-wrapper {
    max-width: 360px;
    margin: 0 20px;
  }
  
  .register-logo {
    padding: 20px 20px 10px;
  }
  
  .logo-image {
    width: 60px;
    height: 60px;
  }
  
  .register-form-wrapper {
    padding: 0 20px 15px;
  }
  
  .register-title {
    font-size: 1.4rem;
  }
  
  .register-subtitle {
    font-size: 0.85rem;
  }
  
  .form-input {
    padding: 12px 10px 12px 35px;
    font-size: 0.9rem;
  }
  
  .input-icon {
    left: 10px;
    font-size: 0.8rem;
  }
  
  .register-btn {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
  
  .form-label {
    font-size: 0.85rem;
  }
  
  .field-error,
  .field-help {
    font-size: 0.7rem;
  }
  
  .login-link {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .back-link,
  .promo-link {
    font-size: 0.8rem;
  }
  
  .security-badge {
    padding: 10px 15px;
    font-size: 0.75rem;
    flex-direction: column;
    gap: 4px;
  }
  
  .benefits-section {
    padding: 15px;
  }
  
  .benefits-title {
    font-size: 0.9rem;
  }
  
  .benefit-item {
    font-size: 0.8rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px;
  background: var(--bg-darker);
  background-image: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  position: relative;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
  pointer-events: none;
}

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

.hero-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
  margin: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow-medium);
  animation: pulse 2s infinite;
}

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

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

/* Promotion Sections */
.promo-section {
  padding: 40px 0;
  background: var(--bg-dark);
}

.promo-section:nth-child(even) {
  background: var(--bg-darker);
}

.promo-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transition: all 0.3s ease;
  position: relative;
  animation: fadeInScale 0.8s ease-out;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.promo-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.promo-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.8rem;
  color: white;
}

.promo-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.promo-amount {
  font-size: 2.5rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 25px;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.promo-content {
  padding: 30px;
}

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

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

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

.feature-item:hover {
  background: rgba(255, 107, 53, 0.05);
  padding-left: 8px;
  border-radius: 6px;
}

.feature-item i {
  color: #22c55e;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item span {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

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

.promo-cta .btn {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.promo-cta .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}

.promo-cta .btn:hover::before {
  width: 300px;
  height: 300px;
}

.promo-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-badge {
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  .promo-section {
    padding: 30px 0;
  }
  
  .promo-header {
    padding: 25px;
  }
  
  .promo-title {
    font-size: 1.4rem;
  }
  
  .promo-amount {
    font-size: 2.2rem;
  }
  
  .promo-content {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 50px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-badge {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .promo-section {
    padding: 25px 0;
  }
  
  .promo-header {
    padding: 20px;
  }
  
  .promo-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .promo-title {
    font-size: 1.2rem;
  }
  
  .promo-amount {
    font-size: 1.8rem;
    padding: 6px 16px;
  }
  
  .promo-content {
    padding: 20px;
  }
  
  .feature-item {
    padding: 10px 0;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .promo-cta .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 70px 0 40px;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-badge {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
  
  .promo-section {
    padding: 20px 0;
  }
  
  .promo-header {
    padding: 18px 15px;
  }
  
  .promo-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .promo-title {
    font-size: 1.1rem;
  }
  
  .promo-amount {
    font-size: 1.6rem;
    padding: 5px 14px;
  }
  
  .promo-content {
    padding: 18px 15px;
  }
  
  .feature-item {
    padding: 8px 0;
    gap: 10px;
  }
  
  .feature-item i {
    font-size: 0.9rem;
  }
  
  .feature-item span {
    font-size: 0.85rem;
  }
  
  .promo-cta .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
  }
}