/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700;800&display=swap');

/* Base Styles */
:root {
  --primary-color: #ff3e6c;
  --secondary-color: #4e00ff;
  --accent-color: #00e0ff;
  --dark-bg: #0a0b15;
  --dark-bg-2: #111326;
  --text-color: #ffffff;
  --text-color-muted: rgba(255, 255, 255, 0.7);
  --gradient-1: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-2: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  --border-radius: 15px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Prompt', sans-serif;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-color-muted);
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: -1;
}

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

.primary-btn {
  background: var(--gradient-1);
  color: var(--text-color);
}

.secondary-btn {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.secondary-btn:hover {
  background-color: var(--accent-color);
  color: var(--dark-bg);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  background-color: rgba(10, 11, 21, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
}

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

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

.logo-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  filter: drop-shadow(0 0 5px rgba(255, 62, 108, 0.5));
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
}

nav {
  transition: all 0.3s ease;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-1);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a i {
  margin-right: 5px;
  color: var(--primary-color);
}

.mobile-menu {
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: none;
  align-items: center;
  justify-content: center;
}

.mobile-menu:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu i {
  transition: all 0.3s ease;
}

.mobile-menu.active {
  background-color: var(--primary-color);
}

.mobile-menu.active i {
  transform: rotate(90deg);
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 11, 21, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

nav.active {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

nav.active ul {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding-top: 80px;
}

nav.active ul li {
  margin: 15px 0;
  opacity: 0;
  animation: slideIn 0.3s ease forwards;
}

nav.active ul li:nth-child(1) { animation-delay: 0.1s; }
nav.active ul li:nth-child(2) { animation-delay: 0.2s; }
nav.active ul li:nth-child(3) { animation-delay: 0.3s; }
nav.active ul li:nth-child(4) { animation-delay: 0.4s; }
nav.active ul li:nth-child(5) { animation-delay: 0.5s; }
nav.active ul li:nth-child(6) { animation-delay: 0.6s; }

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

nav.active ul li a {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  padding: 12px 25px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.05);
  width: 220px;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

nav.active ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--primary-color);
}

nav.active ul li a i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Hero Section */
.hero-section {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg-2);
}

.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  padding-right: 50px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content span {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

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

.hero-image {
  flex: 1;
  position: relative;
  transform: perspective(1000px) rotateY(-10deg);
  transition: all 0.5s ease;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 3px solid var(--secondary-color);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 62, 108, 0.2) 0%, rgba(255, 62, 108, 0) 70%);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(78, 0, 255, 0.1) 0%, rgba(78, 0, 255, 0) 70%);
  bottom: -200px;
  left: -200px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 224, 255, 0.15) 0%, rgba(0, 224, 255, 0) 70%);
  bottom: 100px;
  right: 30%;
}

/* Main Content Section */
.main-content {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg);
}

.content-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.content-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  font-size: 2.5rem;
  font-weight: 700;
}

.content-header h2::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 4px;
  bottom: 0;
  left: 25%;
  background: var(--gradient-1);
  border-radius: 10px;
}

.content-body {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Games Section */
.games-section {
  padding: 100px 0;
  background-color: var(--dark-bg-2);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--gradient-1);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.game-card {
  background-color: rgba(20, 22, 36, 0.8);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--primary-color);
}

.game-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.1);
}

.game-info {
  padding: 20px;
  position: relative;
  z-index: 1;
}

.game-info h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.game-info p {
  margin-bottom: 20px;
}

.game-btn {
  background: var(--gradient-2);
  padding: 10px 20px;
  border-radius: 30px;
  color: var(--text-color);
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
}

.game-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  color: var(--accent-color);
  opacity: 0.2;
  transition: all 0.3s ease;
}

.game-card:hover .game-icon {
  opacity: 0.6;
  transform: scale(1.2);
}

/* Promotion Section */
.promotion-section {
  padding: 100px 0;
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.promotion-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.promotion-card {
  background-color: rgba(20, 22, 36, 0.7);
  padding: 30px 20px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.promotion-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
  background: var(--gradient-1);
}

.promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
}

.promotion-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: var(--dark-bg-2);
  position: relative;
  overflow: hidden;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.contact-item {
  text-align: center;
  padding: 30px 20px;
  background-color: rgba(20, 22, 36, 0.7);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--primary-color);
}

.contact-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Footer */
footer {
  padding: 80px 0 20px;
  background-color: var(--dark-bg);
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

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

.footer-logo-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  filter: drop-shadow(0 0 5px rgba(255, 62, 108, 0.5));
}

.footer-logo h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
  margin: 0;
}

.footer-links h3, .footer-social h3 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}

.footer-links h3::after, .footer-social h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--gradient-1);
  bottom: 0;
  left: 0;
  border-radius: 10px;
}

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

.footer-links ul li a {
  color: var(--text-color-muted);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

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

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--gradient-1);
  transform: translateY(-5px);
}

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

/* Sticky Buttons */
.sticky-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background-color: rgba(10, 11, 21, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  margin: 0 5px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-btn.active-btn {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.login-btn {
  background-color: var(--dark-bg-2);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.login-btn:hover, .login-btn.active-btn {
  background-color: var(--primary-color);
  color: var(--text-color);
}

.register-btn {
  background: var(--gradient-1);
  color: var(--text-color);
}

.register-btn.active-btn {
  opacity: 0.9;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.credit-btn {
  background-color: var(--dark-bg-2);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}

.credit-btn:hover, .credit-btn.active-btn {
  background-color: var(--accent-color);
  color: var(--dark-bg);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-section {
    padding: 150px 0 80px;
  }
  
  .hero-section .container {
    flex-direction: column;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 50px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-bg);
    display: none;
    z-index: 1000;
    padding-top: 80px;
    overflow-y: auto;
  }
  
  .mobile-menu {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-header h2,
  .content-header h2 {
    font-size: 2rem;
  }
  
  .sticky-btn {
    font-size: 0.8rem;
    padding: 10px 5px;
  }
  
  .sticky-btn i {
    margin-right: 5px;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .promotion-content {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links h3::after, 
  .footer-social h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
  
  nav.active ul li a {
    width: 180px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-header h2,
  .content-header h2 {
    font-size: 1.5rem;
  }
  
  .section-header p,
  .content-body p {
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .sticky-btn {
    font-size: 0.7rem;
  }
  
  .sticky-btn i {
    margin-right: 3px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .content-header h2 {
    font-size: 1.8rem;
  }
  
  nav.active ul li a {
    width: 150px;
    font-size: 1rem;
    padding: 10px 15px;
  }
  
  .mobile-menu {
    width: 35px;
    height: 35px;
  }
}

/* Casino World Section */
.casino-world-section {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg);
  margin-top: -40px;
}

.casino-world-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.casino-world-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.header-line {
  width: 150px;
  height: 4px;
  background: var(--gradient-2);
  margin: 0 auto;
  border-radius: 10px;
  position: relative;
}

.header-line::before,
.header-line::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: -5px;
}

.header-line::before {
  left: -10px;
  background-color: var(--primary-color);
}

.header-line::after {
  right: -10px;
  background-color: var(--accent-color);
}

.casino-world-content {
  position: relative;
  z-index: 2;
}

.content-card {
  display: flex;
  align-items: center;
  background: rgba(20, 22, 36, 0.7);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--accent-color);
}

.content-icon {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
}

.content-icon i {
  font-size: 2.5rem;
  color: var(--text-color);
}

.content-text {
  flex: 1;
}

.content-text p {
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.casino-world-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 50px;
}

.grid-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 3px solid var(--secondary-color);
  height: 100%;
}

.grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(78, 0, 255, 0.3), rgba(255, 62, 108, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.grid-image:hover .image-overlay {
  opacity: 1;
}

.image-overlay i {
  font-size: 5rem;
  color: var(--text-color);
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.grid-image:hover .image-overlay i {
  transform: scale(1);
}

.grid-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grid-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.grid-content p:last-child {
  margin-bottom: 0;
}

.grid-content p strong {
  color: var(--text-color);
  font-weight: 600;
}

.casino-world-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-box {
  background: linear-gradient(135deg, rgba(20, 22, 36, 0.7), rgba(25, 28, 45, 0.7));
  border-radius: var(--border-radius);
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box:hover::before {
  opacity: 0.05;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transform: rotate(5deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--text-color);
}

.feature-text h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: var(--text-color);
}

.feature-text p {
  margin-bottom: 0;
  line-height: 1.7;
}

.section-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.section-shape {
  position: absolute;
  opacity: 0.2;
}

.section-shape-1 {
  width: 500px;
  height: 500px;
  border-radius: 46% 54% 55% 45% / 31% 46% 54% 69%;
  background: linear-gradient(135deg, var(--secondary-color), transparent);
  top: -200px;
  right: -200px;
  animation: floatingShape 15s infinite alternate ease-in-out;
}

.section-shape-2 {
  width: 600px;
  height: 600px;
  border-radius: 33% 67% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, var(--primary-color), transparent);
  bottom: -300px;
  left: -200px;
  animation: floatingShape 20s infinite alternate-reverse ease-in-out;
}

@keyframes floatingShape {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(30px, 30px) rotate(10deg);
  }
}

/* Responsive Styles for Casino World Section */
@media (max-width: 992px) {
  .casino-world-section {
    padding: 100px 0 80px;
  }
  
  .casino-world-header h2 {
    font-size: 2rem;
  }
  
  .casino-world-grid {
    grid-template-columns: 1fr;
  }
  
  .grid-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .content-card {
    flex-direction: column;
    text-align: center;
  }
  
  .content-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .casino-world-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .casino-world-header h2 {
    font-size: 1.8rem;
  }
  
  .content-text p,
  .grid-content p,
  .feature-text p {
    font-size: 0.95rem;
  }
  
  .feature-box {
    padding: 30px 20px;
  }
}

/* Promotion Details Section */
.promotion-details-section {
  position: relative;
  padding: 120px 0 100px;
  background-color: var(--dark-bg-2);
  overflow: hidden;
}

.promo-bg-wrapper {
  position: relative;
  z-index: 1;
}

.promo-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.promo-title-wrap {
  position: relative;
  display: inline-block;
}

.promo-title-wrap::before,
.promo-title-wrap::after {
  content: '';
  position: absolute;
  height: 3px;
  background: var(--gradient-1);
  width: 70px;
  top: 50%;
}

.promo-title-wrap::before {
  right: 105%;
}

.promo-title-wrap::after {
  left: 105%;
}

.promo-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0;
  color: var(--text-color);
  position: relative;
  padding: 0 15px;
}

.promo-content {
  position: relative;
  z-index: 2;
}

.promo-text-block {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.promo-text-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.promo-text-block p:last-child {
  margin-bottom: 0;
}

.promo-cards-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.promo-highlight-card {
  background: linear-gradient(135deg, rgba(25, 28, 45, 0.8), rgba(20, 22, 36, 0.8));
  border-radius: var(--border-radius);
  padding: 40px;
  position: relative;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.promo-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-1);
}

.promo-card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transform: rotate(-5deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.promo-card-icon i {
  font-size: 2.5rem;
  color: var(--text-color);
}

.promo-highlight-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.promo-highlight-card p {
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.promo-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.promo-step:hover {
  transform: translateX(10px);
}

.step-number {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-content {
  flex: 1;
}

.step-content p {
  margin-bottom: 0;
  font-size: 1rem;
}

.promo-info-card {
  background: rgba(20, 22, 36, 0.7);
  border-radius: var(--border-radius);
  padding: 40px;
  position: relative;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.info-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.info-card-header i {
  font-size: 2rem;
  color: var(--accent-color);
}

.info-card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--text-color);
}

.promo-info-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.info-card-benefits {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  flex-wrap: wrap;
  gap: 15px;
}

.benefit-item {
  flex: 1;
  min-width: 100px;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 15px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item:hover {
  transform: translateY(-5px);
  background: rgba(78, 0, 255, 0.1);
  border-color: var(--secondary-color);
}

.benefit-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.benefit-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-color);
}

.promo-support {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(25, 28, 45, 0.7), rgba(20, 22, 36, 0.7));
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 50px;
  gap: 25px;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
}

.promo-support::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 5px;
  background: var(--gradient-2);
  left: 0;
  top: 0;
}

.support-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-icon i {
  font-size: 2rem;
  color: var(--text-color);
}

.support-text {
  flex: 1;
}

.support-text h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.support-text p {
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.promo-conclusion {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.promo-conclusion p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.promo-cta-btn {
  background: var(--gradient-1);
  color: var(--text-color);
  font-size: 1.1rem;
  padding: 15px 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(255, 62, 108, 0.3);
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promo-cta-btn:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(255, 62, 108, 0.4);
}

.promo-cta-btn i {
  transition: transform 0.3s ease;
}

.promo-cta-btn:hover i {
  transform: translateX(5px);
}

.promo-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-coin, 
.floating-element {
  position: absolute;
  opacity: 0.15;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.floating-coin {
  color: var(--primary-color);
  animation-name: floatCoin;
}

.floating-element {
  color: var(--accent-color);
  animation-name: float;
}

.coin-1 {
  top: 15%;
  left: 5%;
  font-size: 3rem;
  animation-delay: 0s;
}

.coin-2 {
  top: 60%;
  right: 8%;
  font-size: 2.5rem;
  animation-delay: 3s;
}

.coin-3 {
  bottom: 10%;
  left: 15%;
  font-size: 4rem;
  animation-delay: 6s;
}

.elem-1 {
  top: 30%;
  right: 10%;
  font-size: 4rem;
  animation-delay: 2s;
}

.elem-2 {
  bottom: 25%;
  right: 20%;
  font-size: 3rem;
  animation-delay: 5s;
}

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

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

/* Responsive Styles for Promotion Details Section */
@media (max-width: 992px) {
  .promotion-details-section {
    padding: 100px 0 80px;
  }
  
  .promo-header h2 {
    font-size: 2rem;
  }
  
  .promo-cards-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .promo-title-wrap::before,
  .promo-title-wrap::after {
    width: 40px;
  }
}

@media (max-width: 768px) {
  .promo-support {
    flex-direction: column;
    text-align: center;
  }
  
  .support-text h3 {
    margin-top: 15px;
  }
  
  .promo-highlight-card,
  .promo-info-card {
    padding: 30px 25px;
  }
  
  .info-card-benefits {
    justify-content: center;
    gap: 20px;
  }
  
  .benefit-item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .promo-header h2 {
    font-size: 1.8rem;
  }
  
  .promo-title-wrap::before,
  .promo-title-wrap::after {
    display: none;
  }
  
  .promo-text-block p,
  .promo-highlight-card p,
  .promo-info-card p,
  .support-text p,
  .promo-conclusion p {
    font-size: 0.95rem;
  }
  
  .promo-step {
    align-items: center;
  }
  
  .promo-highlight-card,
  .promo-info-card {
    padding: 25px 20px;
  }
  
  .benefit-item {
    flex: 0 0 100%;
  }
  
  .promo-cta-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Login Guide Section */
.login-guide-section {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(20, 22, 36, 0.9) 100%);
  overflow: hidden;
}

.login-guide-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.guide-title {
  position: relative;
  display: inline-block;
}

.guide-title h2 {
  position: relative;
  font-size: 2.5rem;
  margin-bottom: 0;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 15px;
  display: inline-block;
  background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.guide-title::before,
.guide-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 3px;
  background: var(--gradient-1);
  transform: translateY(-50%);
}

.guide-title::before {
  left: -100px;
}

.guide-title::after {
  right: -100px;
}

.login-guide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.login-device-mockup {
  background: linear-gradient(145deg, #222, #111);
  border-radius: 30px;
  padding: 15px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  transition: all 0.5s ease;
  transform: perspective(1000px) rotateY(-15deg);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.login-device-mockup:hover {
  transform: perspective(1000px) rotateY(0deg);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.device-screen {
  background: #0a0a0a;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 500px;
}

.login-interface {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  background: radial-gradient(circle at center, rgba(78, 0, 255, 0.15) 0%, rgba(10, 10, 10, 0) 70%);
}

.login-logo {
  color: var(--text-color);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-shadow: 0 0 20px rgba(78, 0, 255, 0.7);
  letter-spacing: 2px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.form-field input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  border-radius: 8px;
  color: var(--text-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.login-button {
  background: var(--gradient-1);
  color: var(--text-color);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(78, 0, 255, 0.3);
}

.forgot-password {
  color: var(--accent-color);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.forgot-password:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.device-home-button {
  width: 50px;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  margin: 15px auto 0;
}

.login-instructions {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.instructions-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-color);
}

.login-steps {
  margin-top: 30px;
}

.login-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  position: relative;
  transition: all 0.3s ease;
  padding: 15px;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.login-step:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}

.step-indicator {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-indicator span {
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.step-details {
  flex: 1;
}

.step-details p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--text-color);
}

.login-help-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.help-card {
  background: linear-gradient(135deg, rgba(25, 28, 45, 0.6), rgba(20, 22, 36, 0.9));
  border-radius: var(--border-radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.help-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-1);
}

.help-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.help-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

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

.help-icon i {
  font-size: 2rem;
  color: var(--text-color);
}

.help-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.help-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--text-color);
}

.trouble-card::before {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.access-card::before {
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.deposit-info {
  background: linear-gradient(135deg, rgba(20, 22, 36, 0.8), rgba(25, 28, 45, 0.8));
  border-radius: var(--border-radius);
  padding: 40px;
  margin-bottom: 60px;
  position: relative;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.deposit-info::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(78, 0, 255, 0.2) 0%, rgba(78, 0, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.deposit-text {
  max-width: 800px;
  margin: 0 auto 30px;
}

.deposit-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0;
  text-align: center;
  color: var(--text-color);
}

.deposit-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.option-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100px;
  transition: all 0.3s ease;
}

.option-item:hover {
  transform: translateY(-10px);
}

.option-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.option-item:hover i {
  color: var(--primary-color);
  transform: scale(1.2);
}

.option-item span {
  font-size: 0.9rem;
  color: var(--text-color);
  text-align: center;
  font-weight: 500;
}

.login-conclusion {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.login-conclusion p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--text-color);
}

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

.login-now-btn {
  background: var(--gradient-1);
  color: var(--text-color);
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(78, 0, 255, 0.3);
}

.login-now-btn:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(78, 0, 255, 0.4);
}

.register-now-btn {
  background: var(--gradient-2);
  color: var(--text-color);
  border-radius: 50px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 224, 255, 0.3);
}

.register-now-btn:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0, 224, 255, 0.4);
}

.login-now-btn i,
.register-now-btn i {
  transition: all 0.3s ease;
}

.login-now-btn:hover i,
.register-now-btn:hover i {
  transform: translateX(5px);
}

.login-guide-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.login-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 5%);
}

.login-glow {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(50px);
}

.login-glow-1 {
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--primary-color);
  animation: glowPulse 8s infinite alternate;
}

.login-glow-2 {
  bottom: 10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: var(--secondary-color);
  animation: glowPulse 6s infinite alternate-reverse;
}

@keyframes glowPulse {
  0% {
    opacity: 0.05;
    transform: scale(1);
  }
  100% {
    opacity: 0.15;
    transform: scale(1.2);
  }
}

/* Responsive Styles for Login Guide Section */
@media (max-width: 992px) {
  .login-guide-section {
    padding: 100px 0 80px;
  }
  
  .guide-title h2 {
    font-size: 2rem;
  }
  
  .login-guide-content {
    grid-template-columns: 1fr;
  }
  
  .login-device-mockup {
    transform: perspective(1000px) rotateY(0);
    margin-bottom: 40px;
  }
  
  .login-help-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .conclusion-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .login-now-btn,
  .register-now-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .guide-title::before,
  .guide-title::after {
    width: 40px;
  }
  
  .guide-title::before {
    left: -60px;
  }
  
  .guide-title::after {
    right: -60px;
  }
  
  .login-step {
    padding: 15px 10px;
  }
  
  .step-indicator {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
  
  .step-indicator span {
    font-size: 1.2rem;
  }
  
  .help-card {
    padding: 25px 20px;
  }
  
  .help-icon {
    width: 60px;
    height: 60px;
  }
  
  .help-icon i {
    font-size: 1.8rem;
  }
  
  .deposit-options {
    gap: 20px;
  }
  
  .option-item {
    width: 80px;
  }
  
  .option-item i {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .login-guide-header {
    margin-bottom: 40px;
  }
  
  .guide-title h2 {
    font-size: 1.8rem;
  }
  
  .guide-title::before,
  .guide-title::after {
    display: none;
  }
  
  .login-device-mockup {
    max-width: 320px;
  }
  
  .device-screen {
    height: 450px;
  }
  
  .instructions-text p,
  .step-details p,
  .help-content p,
  .deposit-text p,
  .login-conclusion p {
    font-size: 0.95rem;
  }
  
  .login-logo {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .login-step {
    margin-bottom: 15px;
  }
  
  .deposit-info {
    padding: 30px 20px;
  }
  
  .option-item {
    width: 70px;
  }
  
  .login-now-btn,
  .register-now-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

/* Popular Games Section */
.popular-games-section {
  position: relative;
  padding: 120px 0 100px;
  background-color: var(--dark-bg);
  overflow: hidden;
}

.popular-games-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.popular-games-header h2 {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 0;
  color: var(--text-color);
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.games-showcase {
  position: relative;
  z-index: 2;
}

.games-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  background: rgba(20, 22, 36, 0.6);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.games-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(78, 0, 255, 0.2) 0%, rgba(10, 11, 21, 0) 70%);
  pointer-events: none;
}

.spotlight-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.spotlight-action {
  margin-top: 20px;
}

.spotlight-btn {
  background: var(--gradient-2);
  color: var(--text-color);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  padding: 15px 30px;
  box-shadow: 0 10px 25px rgba(0, 224, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.spotlight-btn:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0, 224, 255, 0.4);
}

.spotlight-btn i {
  transition: all 0.3s ease;
}

.spotlight-btn:hover i {
  transform: rotate(45deg);
}

.spotlight-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(10deg);
  transition: all 0.5s ease;
  border: 3px solid var(--accent-color);
  height: 100%;
}

.spotlight-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.spotlight-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
}

.jackpot-badge {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 62, 108, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
}

.jackpot-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 5px;
}

.jackpot-amount {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-color);
}

.game-providers {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.provider-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 120px;
  transition: all 0.3s ease;
}

.provider-item:hover {
  transform: translateY(-10px);
}

.provider-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--dark-bg-2), rgba(20, 22, 36, 0.7));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
}

.provider-item:hover .provider-icon {
  background: var(--gradient-1);
  transform: rotate(10deg);
}

.provider-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.provider-item:hover .provider-icon i {
  color: var(--text-color);
  transform: scale(1.1);
}

.provider-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-color);
}

.games-experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.experience-card {
  background: linear-gradient(135deg, rgba(25, 28, 45, 0.6), rgba(20, 22, 36, 0.6));
  border-radius: var(--border-radius);
  padding: 40px 30px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-1);
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.experience-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  background: var(--gradient-2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: rotate(-5deg);
}

.experience-card:hover .experience-icon {
  transform: rotate(5deg);
}

.experience-icon i {
  font-size: 2rem;
  color: var(--text-color);
}

.experience-content {
  flex: 1;
}

.experience-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.experience-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.games-features {
  background: linear-gradient(135deg, rgba(20, 22, 36, 0.7), rgba(25, 28, 45, 0.7));
  border-radius: var(--border-radius);
  padding: 50px;
  margin-bottom: 60px;
  position: relative;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.games-features::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 224, 255, 0.3) 0%, rgba(0, 224, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.features-text {
  max-width: 800px;
  margin: 0 auto 40px;
}

.features-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
}

.features-text p:last-child {
  margin-bottom: 0;
}

.slot-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

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

.slot-feature:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, rgba(78, 0, 255, 0.1), rgba(0, 224, 255, 0.1));
  border-color: var(--accent-color);
}

.slot-feature i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.slot-feature:hover i {
  transform: scale(1.2);
  color: var(--primary-color);
}

.slot-feature span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  text-align: center;
}

.games-conclusion {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.games-conclusion p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
}

.slot-machine {
  display: flex;
  position: relative;
  background: linear-gradient(to bottom, #333, #222);
  border-radius: 15px;
  padding: 30px 50px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border: 3px solid var(--primary-color);
}

.slot-reel {
  width: 80px;
  height: 80px;
  background: #111;
  margin: 0 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.slot-reel::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.slot-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  animation: spinReel 3s infinite;
}

@keyframes spinReel {
  0% {
    transform: translateY(-50px) scale(0.5);
    opacity: 0;
  }
  20% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  80% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(50px) scale(0.5);
    opacity: 0;
  }
}

.slot-reel:nth-child(2) .slot-icon {
  color: var(--secondary-color);
  animation-delay: 0.2s;
}

.slot-reel:nth-child(3) .slot-icon {
  color: var(--accent-color);
  animation-delay: 0.4s;
}

.slot-handle {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 100px;
  background: linear-gradient(to right, #777, #999);
  border-radius: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slot-handle i {
  font-size: 1.5rem;
  color: #111;
}

.slot-handle:hover {
  background: linear-gradient(to right, #999, #bbb);
}

.games-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.game-shape {
  position: absolute;
  opacity: 0.1;
}

.game-shape-1 {
  width: 400px;
  height: 400px;
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  top: 10%;
  right: -100px;
  animation: rotate 30s linear infinite;
}

.game-shape-2 {
  width: 500px;
  height: 500px;
  border-radius: 73% 27% 59% 41% / 57% 59% 41% 43%;
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  bottom: 5%;
  left: -150px;
  animation: rotate 40s linear infinite reverse;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spotlight-rays {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  animation: pulse 4s infinite;
}

/* Responsive Styles for Popular Games Section */
@media (max-width: 992px) {
  .popular-games-section {
    padding: 100px 0 80px;
  }
  
  .popular-games-header h2 {
    font-size: 2rem;
  }
  
  .games-spotlight {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .spotlight-image {
    height: 300px;
    transform: perspective(1000px) rotateY(0);
  }
  
  .games-experience {
    grid-template-columns: 1fr;
  }
  
  .slot-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .game-providers {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .provider-item {
    margin-bottom: 20px;
  }
  
  .games-features {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .popular-games-header h2 {
    font-size: 1.8rem;
  }
  
  .spotlight-text p,
  .experience-content p,
  .features-text p {
    font-size: 0.95rem;
  }
  
  .slot-features {
    grid-template-columns: 1fr;
  }
  
  .slot-machine {
    padding: 20px 40px;
  }
  
  .slot-reel {
    width: 60px;
    height: 60px;
    margin: 0 5px;
  }
  
  .slot-icon {
    font-size: 2rem;
  }
  
  .experience-card {
    padding: 30px 20px;
  }
  
  .spotlight-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .login-now-btn,
  .register-now-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

/* Security Section */
.security-section {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, var(--dark-bg-2), var(--dark-bg));
  overflow: hidden;
}

.security-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.security-title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.security-title h2 {
  font-size: 2.5rem;
  margin: 0 25px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  text-align: center;
}

.title-accent {
  height: 4px;
  width: 70px;
  background: var(--gradient-2);
  position: relative;
  border-radius: 10px;
}

.title-accent::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-color);
}

.title-accent:first-child::before {
  right: -6px;
}

.title-accent:last-child::before {
  left: -6px;
}

.security-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.security-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-container {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(25, 28, 45, 0.9), rgba(20, 22, 36, 0.9));
  border-radius: 60% 60% 45% 45%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
              inset 0 10px 30px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--primary-color);
  position: relative;
  z-index: 3;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateY(25deg);
  transition: transform 0.5s ease;
}

.shield:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.shield i {
  font-size: 5rem;
  color: var(--primary-color);
  text-shadow: 0 0 15px rgba(255, 62, 108, 0.7);
  transform: translateZ(20px);
}

.shield-rays {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 62, 108, 0.2) 0%, rgba(255, 62, 108, 0) 70%);
  animation: pulse 4s infinite;
  z-index: 1;
}

.security-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  background: linear-gradient(135deg, rgba(0, 224, 255, 0.9), rgba(78, 0, 255, 0.9));
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transform: rotate(15deg);
  z-index: 2;
  transition: all 0.3s ease;
}

.security-badge:hover {
  transform: rotate(0deg) scale(1.1);
}

.lock-badge {
  position: absolute;
  bottom: 40px;
  left: 50px;
  background: linear-gradient(135deg, rgba(255, 62, 108, 0.9), rgba(255, 150, 0, 0.9));
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transform: rotate(-15deg);
  z-index: 2;
  transition: all 0.3s ease;
}

.lock-badge:hover {
  transform: rotate(0deg) scale(1.1);
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.badge-icon i {
  font-size: 2rem;
  color: var(--text-color);
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
}

.security-paths {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.path-line {
  position: absolute;
  height: 3px;
  background: var(--gradient-1);
  opacity: 0.3;
  border-radius: 3px;
}

.path-dot {
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent-color);
  animation: moveDot 3s infinite alternate;
}

.path-1 {
  width: 160px;
  top: 30%;
  right: 20%;
  transform: rotate(25deg);
}

.path-2 {
  width: 140px;
  bottom: 35%;
  left: 25%;
  transform: rotate(-20deg);
}

.path-3 {
  width: 180px;
  bottom: 25%;
  right: 15%;
  transform: rotate(40deg);
}

.dot-1 {
  top: 30%;
  right: 20%;
  animation-delay: 0s;
}

.dot-2 {
  bottom: 35%;
  left: 25%;
  animation-delay: 1s;
}

.dot-3 {
  bottom: 25%;
  right: 15%;
  animation-delay: 2s;
}

@keyframes moveDot {
  0% {
    transform: translateX(0) scale(1);
  }
  100% {
    transform: translateX(40px) scale(1.3);
  }
}

.security-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.security-paragraph {
  background: rgba(20, 22, 36, 0.6);
  border-radius: var(--border-radius);
  padding: 25px 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.security-paragraph::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-2);
}

.security-paragraph p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: var(--text-color);
}

.security-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.security-left, .security-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.security-card {
  background: linear-gradient(135deg, rgba(25, 28, 45, 0.6), rgba(20, 22, 36, 0.6));
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.security-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.license-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.payment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.credit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: rotate(-5deg);
  transition: all 0.3s ease;
}

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

.card-icon i {
  font-size: 2.5rem;
  color: var(--text-color);
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.card-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.security-updates {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, rgba(20, 22, 36, 0.7), rgba(25, 28, 45, 0.7));
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.security-updates::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(78, 0, 255, 0.05), rgba(0, 224, 255, 0.05));
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.security-updates:hover::before {
  transform: translateX(0);
}

.update-icon {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.update-icon i {
  font-size: 2.5rem;
  color: var(--text-color);
  animation: rotate 5s linear infinite;
}

.update-content {
  flex: 1;
}

.update-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.update-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.security-conclusion {
  background: rgba(25, 28, 45, 0.6);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.security-conclusion::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 62, 108, 0.2) 0%, rgba(255, 62, 108, 0) 70%);
  border-radius: 50%;
}

.security-conclusion p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: var(--text-color);
}

.security-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.security-shape {
  position: absolute;
  opacity: 0.1;
}

.security-shape-1 {
  width: 600px;
  height: 600px;
  border-radius: 46% 54% 36% 64% / 36% 55% 45% 64%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  top: -200px;
  right: -200px;
  animation: rotate 40s linear infinite;
}

.security-shape-2 {
  width: 500px;
  height: 500px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  bottom: -150px;
  left: -150px;
  animation: rotate 30s linear infinite reverse;
}

.security-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    radial-gradient(circle at 5% 20%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 70% 10%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 5%),
    radial-gradient(circle at 85% 60%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 5%);
}

/* Responsive Styles for Security Section */
@media (max-width: 992px) {
  .security-section {
    padding: 100px 0 80px;
  }
  
  .security-title h2 {
    font-size: 2rem;
  }
  
  .security-content {
    grid-template-columns: 1fr;
  }
  
  .security-visual {
    margin-bottom: 30px;
  }
  
  .shield {
    transform: perspective(1000px) rotateY(0deg);
  }
}

@media (max-width: 768px) {
  .title-accent {
    width: 40px;
  }
  
  .security-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .security-updates {
    flex-direction: column;
    text-align: center;
  }
  
  .update-icon {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .security-title h2 {
    font-size: 1.8rem;
  }
  
  .title-accent {
    display: none;
  }
  
  .shield {
    width: 150px;
    height: 150px;
  }
  
  .shield i {
    font-size: 4rem;
  }
  
  .security-badge,
  .lock-badge {
    padding: 10px;
  }
  
  .badge-icon i {
    font-size: 1.5rem;
  }
  
  .badge-text {
    font-size: 0.8rem;
  }
  
  .security-paragraph p,
  .card-content p,
  .update-content p,
  .security-conclusion p {
    font-size: 0.95rem;
  }
  
  .card-content h3,
  .update-content h3 {
    font-size: 1.3rem;
  }
  
  .security-card,
  .security-paragraph,
  .security-updates,
  .security-conclusion {
    padding: 20px;
  }
}

.device-link {
  display: block;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.device-link::before {
  content: 'คลิกเพื่อเข้าสู่เว็บ';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.device-link:hover::before {
  opacity: 1;
  bottom: -30px;
}

.device-link:hover .login-device-mockup {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.device-link:active .login-device-mockup {
  transform: translateY(-5px) scale(1.01);
}

@media (max-width: 768px) {
  .device-link::before {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 576px) {
  .device-link::before {
    display: none;
  }
}

/* Responsive Logo */
@media (max-width: 768px) {
  .logo-icon {
    width: 35px;
    height: 35px;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .footer-logo-icon {
    width: 25px;
    height: 25px;
  }
  
  .footer-logo h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .logo-icon {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }
  
  .logo-text {
    font-size: 1.6rem;
  }
  
  .footer-logo-icon {
    width: 22px;
    height: 22px;
  }
  
  .footer-logo h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 1150px) {
  nav {
    display: none;
  }
  
  .mobile-menu {
    display: flex;
  }
}

@media (min-width: 1151px) {
  .mobile-menu {
    display: none;
  }
}

