@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #FBB1F7;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #740083;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(images/background.gif);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
}


a {
  text-decoration: none;
  color: var(--accent-primary);
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.navbar {
  background-color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
}

.navbar .logo img {
  height: 50px;
  align-items: center;
}

.navbar-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar-menu li a:hover {
  color: var(--primary-color);
}

.navbar .auth-buttons {
  display: flex;
  gap: 10px;
}

.btn-login {
  background-color: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

.btn-register {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-login:hover {
  background-color: transparent;
  color: var(--text-primary);
}

.btn-register:hover {
  background-color: var(--text-primary);
  color: var(--secondary-color);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--third-color) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 80px 50px;
  top: 20px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(251, 177, 247, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(116, 0, 131, 0.3) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 30px;
  line-height: 1.8;
  opacity: 0.95;
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-weight: 500;
}

.hero-feature-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--text-primary);
  color: var(--secondary-color);
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid var(--text-primary);
}

.btn-hero-secondary:hover {
  background: var(--text-primary);
  color: var(--secondary-color);
}

/* Section 2: About Us - Asymmetric Split with Diagonal Design */
.about-us {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 60px;
  position: relative;
  background: var(--third-color);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.about-us::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.about-us-banner {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
  position: relative;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

.about-us-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(116, 0, 131, 0.3) 0%, transparent 100%);
  z-index: 1;
}

.about-us-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.1);
}

.about-us-intro {
  flex: 1;
  max-width: 50%;
  padding: 50px 40px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--third-color) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-left: 3px solid var(--primary-color);
}

.about-us-intro::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, transparent 50%, var(--accent-primary) 50%);
  opacity: 0.1;
}

.about-us-intro h2 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.about-us-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Section 3: Bonus - Zigzag Layout with Pattern Background */
.bonus {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
  position: relative;
  padding: 50px;
  background: 
    repeating-linear-gradient(
      45deg,
      var(--third-color) 0px,
      var(--third-color) 10px,
      var(--secondary-color) 10px,
      var(--secondary-color) 20px
    );
  border-radius: 30px;
  border: 2px solid var(--accent-primary);
  box-shadow: inset 0 0 50px rgba(116, 0, 131, 0.2), 0 10px 40px rgba(0, 0, 0, 0.4);
}

.bonus::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--primary-color);
}

.bonus-carousel {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  position: relative;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
  border: 3px solid var(--primary-color);
  z-index: 2;
}

.bonus-carousel a {
  flex-shrink: 0;
  width: 100%;
}

.bonus-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.bonus-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.bonus-banner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  max-width: 600px;
  margin-top: 30px;
  height: auto;
}

.bonus-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.bonus-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(251, 177, 247, 0.3);
  position: relative;
  z-index: 2;
}

.bonus-intro h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.bonus-intro h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.bonus-card h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  margin-top: 10px;
}

.bonus-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.bonus-card {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(135deg, var(--third-color) 0%, var(--secondary-color) 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bonus-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(251, 177, 247, 0.3);
}

.bonus-card:hover::before {
  opacity: 0.1;
}

.bonus-card > * {
  position: relative;
  z-index: 1;
}

.bonus-card h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.bonus-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.bonus-card i {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent-primary);
}

/* Section 4: Games - Hexagon-Inspired Grid with Glassmorphism */
.games {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 40px;
  border-radius: 0;
  background: 
    linear-gradient(135deg, var(--secondary-color) 0%, var(--third-color) 50%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
}

.games::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(251, 177, 247, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(116, 0, 131, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.games-intro {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(251, 177, 247, 0.2);
}

.games-intro h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.games-intro p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.game-card {
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(251, 177, 247, 0.2);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 5% 100%, 0 90%);
}

.game-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(251, 177, 247, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.game-card:hover {
  transform: translateY(-15px) rotate(1deg);
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(251, 177, 247, 0.4);
}

.game-card:hover::after {
  opacity: 1;
}

.game-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.game-card {
  display: flex;
  flex-direction: column;
}

.game-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.game-card-content h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.game-card-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.btn-play {
  background: var(--accent-primary);
  color: var(--text-primary);
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-play:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.game-card h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin: 0;
}

/* Section 9: FAQ - Staircase Accordion Design */
.faq {
  margin-top: 60px;
  padding: 60px 40px;
  border-radius: 0;
  background: 
    linear-gradient(180deg, var(--third-color) 0%, var(--secondary-color) 100%);
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  border-top: 3px solid var(--primary-color);
}

.faq::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color) 50%, transparent);
}

.faq h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-align: center;
}

.faq-intro {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.faq-item {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 0;
  padding: 30px;
  cursor: pointer;
  transition: all 0.4s ease;
  border-left: 5px solid var(--accent-primary);
  position: relative;
  margin-left: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.faq-item:nth-child(odd) {
  margin-left: 20px;
  border-left-color: var(--primary-color);
}

.faq-item:nth-child(even) {
  margin-left: 40px;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-primary) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 10px 40px rgba(251, 177, 247, 0.3);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item.active {
  border-left-width: 8px;
  background: rgba(17, 17, 17, 0.9);
}

.faq-item h4 {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  list-style: none;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 10px;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--accent-primary);
}

.footer {
  background-color: var(--secondary-color);
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 1px solid var(--);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  height: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-copy p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

/* Section 5: Mobile - Curved Design with Wave Pattern */
.mobile-section {
  margin-top: 60px;
  padding: 0;
  background: var(--secondary-color);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.mobile-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(251, 177, 247, 0.03) 2px,
      rgba(251, 177, 247, 0.03) 4px
    );
}

.mobile-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--third-color);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.mobile-content {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 60px 40px;
  position: relative;
  z-index: 1;
}

.mobile-text {
  flex: 1;
}

.mobile-text h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.mobile-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.mobile-features {
  list-style: none;
  margin: 30px 0;
}

.mobile-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.mobile-features li i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.mobile-visual {
  flex: 1;
  border-radius: 50px 0 50px 0;
  overflow: hidden;
  position: relative;
  box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.5);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}

.mobile-visual:hover {
  transform: rotate(0deg) scale(1.05);
}

.mobile-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(116, 0, 131, 0.3) 0%, transparent 100%);
  z-index: 1;
}

.mobile-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.95);
}

/* Section 6: Security - Diamond Grid Pattern */
.security-section {
  margin-top: 60px;
  padding: 80px 40px;
  background: 
    linear-gradient(45deg, var(--third-color) 25%, transparent 25%),
    linear-gradient(-45deg, var(--third-color) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--third-color) 75%),
    linear-gradient(-45deg, transparent 75%, var(--third-color) 75%);
  background-size: 30px 30px;
  background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
  background-color: var(--secondary-color);
  border-radius: 0;
  position: relative;
  border-top: 5px solid var(--primary-color);
  border-bottom: 5px solid var(--primary-color);
}

.security-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(251, 177, 247, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.security-header {
  text-align: center;
  margin-bottom: 50px;
}

.security-header h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.security-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.security-card {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 0;
  text-align: center;
  transition: all 0.4s ease;
  border: 3px solid var(--accent-primary);
  position: relative;
  clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
  transform: rotate(0deg);
}

.security-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-primary), var(--primary-color));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
}

.security-card:hover {
  transform: translateY(-10px) rotate(2deg) scale(1.05);
  box-shadow: 0 20px 50px rgba(251, 177, 247, 0.4);
}

.security-card:hover::before {
  opacity: 1;
}

.security-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.security-card h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.security-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Section 7: Payment - Staggered Columns with Neon Accents */
.payment-section {
  margin-top: 60px;
  padding: 0;
  background: var(--third-color);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.payment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(251, 177, 247, 0.05), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.payment-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 60px 40px 40px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--secondary-color) 0%, transparent 100%);
}

.payment-header h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.payment-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.payment-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding: 0 40px 60px;
  position: relative;
  z-index: 1;
}

.payment-info {
  flex: 1;
}

.payment-info h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 30px 0 15px 0;
}

.payment-info h3:first-child {
  margin-top: 0;
}

.payment-info p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.payment-methods {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.payment-method-item {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--third-color) 100%);
  padding: 40px 30px;
  border-radius: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
  border: 2px solid var(--accent-primary);
  position: relative;
  transform: skew(-2deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.payment-method-item:nth-child(even) {
  transform: skew(2deg);
}

.payment-method-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.payment-method-item:hover {
  transform: skew(0deg) translateY(-10px) scale(1.1);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(251, 177, 247, 0.5);
}

.payment-method-item:hover::after {
  opacity: 0.3;
}

.payment-method-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.payment-method-item span {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.05rem;
}

/* Section 8: Support - Parallax Effect with Overlapping Cards */
.support-section {
  margin-top: 60px;
  padding: 0;
  background: 
    radial-gradient(ellipse at top, var(--accent-primary) 0%, transparent 50%),
    var(--secondary-color);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.support-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 177, 247, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.support-content {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 80px 40px;
  position: relative;
  z-index: 1;
}

.support-visual {
  flex: 1;
  border-radius: 0;
  overflow: visible;
  position: relative;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.4s ease;
}

.support-visual:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.support-visual::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid var(--primary-color);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
}

.support-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 30px 30px 0 var(--accent-primary);
  filter: grayscale(20%) contrast(1.1);
}

.support-info {
  flex: 1;
}

.support-info h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.support-info > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.support-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.support-feature {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 25px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.support-feature:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateX(10px);
  border-left-width: 6px;
}

.support-feature i {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.support-feature h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.support-feature p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .about-us {
    flex-direction: column;
  }

  .about-us-banner {
    max-width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  }

  .about-us-intro {
    max-width: 100%;
    border-left: none;
    border-top: 3px solid var(--primary-color);
  }

  .bonus {
    padding: 30px 20px;
  }

  .games {
    padding: 40px 20px;
  }

  .mobile-visual {
    transform: rotate(0deg);
  }

  .payment-method-item {
    transform: skew(0deg);
  }

  .payment-method-item:nth-child(even) {
    transform: skew(0deg);
  }

  .support-visual {
    transform: perspective(1000px) rotateY(0deg);
  }

  .faq-item:nth-child(odd),
  .faq-item:nth-child(even) {
    margin-left: 0;
  }

  .about-us-intro {
    padding: 20px;
  }

  .bonus {
    flex-direction: column;
  }

  .bonus-banner,
  .bonus-details {
    max-width: 100%;
  }

  .games {
    padding: 20px;
  }

  .faq {
    padding: 20px;
  }

  .hero {
    padding: 40px 30px;
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-features {
    gap: 20px;
  }

  .mobile-content,
  .support-content,
  .payment-content {
    flex-direction: column;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .navbar .auth-buttons {
    margin-top: 10px;
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    padding: 30px;
  }

  .hero {
    padding: 30px 20px;
    min-height: 450px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .mobile-section,
  .security-section,
  .payment-section,
  .support-section {
    padding: 30px 20px;
  }

  .mobile-text h2,
  .security-header h2,
  .payment-header h2,
  .support-info h2 {
    font-size: 1.6rem;
  }

  .about-us-intro h2 {
    font-size: 1.4rem;
  }

  .games-intro h3,
  .faq h3 {
    font-size: 1.3rem;
  }

  .footer-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
  }

  .hero {
    padding: 20px;
  }

  .hero {
    padding: 25px 15px;
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .mobile-section,
  .security-section,
  .payment-section,
  .support-section {
    padding: 25px 15px;
  }

  .mobile-text h2,
  .security-header h2,
  .payment-header h2,
  .support-info h2,
  .faq h2 {
    font-size: 1.4rem;
  }

  .about-us-intro {
    padding: 15px;
  }

  .bonus-details {
    padding: 20px;
  }

  .games {
    padding: 15px;
  }

  .faq {
    padding: 15px;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============================================
   COMPLETELY NEW DESIGNS FOR ALL SECTIONS
   ============================================ */

/* Section 1: Hero - Split Screen with Floating Cards */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
  min-height: 600px;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--third-color) 100%);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(251, 177, 247, 0.2) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

.hero-left h1 {
  font-size: 2.8rem;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.hero-left p {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 35px;
  line-height: 1.8;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.btn-hero-main {
  background: var(--text-primary);
  color: var(--secondary-color);
  padding: 16px 45px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-hero-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.btn-hero-alt {
  background: transparent;
  color: var(--text-primary);
  padding: 16px 45px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid var(--text-primary);
  transition: all 0.3s ease;
}

.btn-hero-alt:hover {
  background: var(--text-primary);
  color: var(--secondary-color);
}

.hero-trust-badges {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge i {
  font-size: 1.3rem;
  color: var(--primary-color);
}

.trust-badge span {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 40px rgba(251, 177, 247, 0.3);
  animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  top: 30%;
  right: 10%;
  animation-delay: 0.5s;
}

.floating-card:nth-child(3) {
  bottom: 30%;
  left: 5%;
  animation-delay: 1s;
}

.floating-card:nth-child(4) {
  bottom: 10%;
  right: 15%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.card-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.card-text {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
}

/* Section 2: About - Circular Timeline Design */
.about-circular {
  margin-top: 60px;
  padding: 80px 40px;
  background: var(--secondary-color);
  border-radius: 50%;
  position: relative;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-circular::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
}

.circular-center {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.circular-center h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.center-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.circular-timeline {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 40px auto;
}

.timeline-item {
  position: absolute;
  width: 200px;
  text-align: center;
}

.timeline-item.item-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item.item-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.timeline-item.item-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item.item-4 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 15px;
  box-shadow: 0 0 20px var(--primary-color);
  position: relative;
}

.timeline-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  opacity: 0.5;
}

.timeline-content h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.circular-stats {
  display: flex;
  gap: 60px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.circ-stat {
  text-align: center;
}

.circ-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
}

.circ-label {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Section 3: Bonus - Tabbed Interface with Flip Cards */
.bonus-tabs {
  margin-top: 60px;
  padding: 60px 40px;
  background: var(--third-color);
  border-radius: 30px;
  position: relative;
}

.tabs-header {
  text-align: center;
  margin-bottom: 50px;
}

.tabs-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.tabs-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.tabs-container {
  max-width: 800px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-secondary);
  border: 2px solid var(--accent-primary);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--accent-primary);
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(116, 0, 131, 0.4);
}

.tab-content {
  min-height: 400px;
  position: relative;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.flip-card {
  width: 100%;
  height: 400px;
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.flip-front {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--third-color) 100%);
  border: 3px solid var(--primary-color);
}

.flip-back {
  background: var(--secondary-color);
  border: 3px solid var(--primary-color);
  transform: rotateY(180deg);
}

.flip-front i,
.flip-back i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.flip-front h3,
.flip-back h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.flip-front p,
.flip-back p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

.btn-flip {
  margin-top: 30px;
  padding: 12px 35px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-flip:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(251, 177, 247, 0.5);
}

.bonus-showcase {
  margin-top: 50px;
  border-radius: 20px;
  overflow: hidden;
}

.bonus-showcase .bonus-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.bonus-showcase .bonus-carousel-track img {
  width: 100%;
  height: auto;
  display: block;
}

/* Section 4: Games - Masonry/Pinterest Style */
.games-masonry {
  margin-top: 60px;
  padding: 60px 20px;
  background: var(--secondary-color);
}

.masonry-header {
  text-align: center;
  margin-bottom: 50px;
}

.masonry-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.masonry-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.masonry-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.masonry-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.masonry-item:hover {
  transform: scale(1.05);
  z-index: 10;
}

.item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.item-medium {
  grid-column: span 1;
  grid-row: span 2;
}

.item-small {
  grid-column: span 1;
  grid-row: span 1;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masonry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 30px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.masonry-item:hover .masonry-overlay {
  transform: translateY(0);
}

.masonry-overlay h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.masonry-overlay p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.masonry-btn {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.masonry-btn:hover {
  transform: scale(1.1);
}

.masonry-content-text {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--third-color) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.masonry-content-text i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.masonry-content-text h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.masonry-content-text p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Section 5: Mobile - Phone Mockup */
.mobile-mockup {
  margin-top: 60px;
  padding: 80px 40px;
  background: var(--third-color);
  position: relative;
  overflow: hidden;
}

.mobile-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(251, 177, 247, 0.03) 10px,
      rgba(251, 177, 247, 0.03) 20px
    );
}

.mockup-container {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.phone-frame {
  flex: 0 0 300px;
  height: 600px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 3px var(--primary-color);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 25px;
  background: #000;
  border-radius: 0 0 15px 15px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px;
}

.screen-content h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.screen-content p {
  color: var(--text-secondary);
}

.mockup-content {
  flex: 1;
}

.mockup-content h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.mockup-content > p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

.mobile-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.mobile-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-feature i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.mobile-feature span {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
}

.btn-mobile {
  display: inline-block;
  padding: 16px 45px;
  background: var(--accent-primary);
  color: var(--text-primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(116, 0, 131, 0.4);
}

.btn-mobile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(116, 0, 131, 0.6);
}

/* Section 6: Security - Badge Wall */
.security-badges {
  margin-top: 60px;
  padding: 80px 40px;
  background: var(--secondary-color);
  position: relative;
}

.badges-header {
  text-align: center;
  margin-bottom: 60px;
}

.badges-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.badges-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.badges-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.badge-item {
  background: var(--third-color);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 3px solid var(--accent-primary);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.badge-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.badge-item:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(251, 177, 247, 0.4);
}

.badge-item:hover::before {
  opacity: 0.2;
}

.badge-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.badge-title {
  font-size: 1.3rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.badge-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* Section 7: Payment - Process Flow */
.payment-flow {
  margin-top: 60px;
  padding: 80px 40px;
  background: var(--third-color);
}

.flow-header {
  text-align: center;
  margin-bottom: 60px;
}

.flow-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.flow-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.flow-step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: var(--secondary-color);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 3px solid var(--accent-primary);
  position: relative;
  transition: all 0.4s ease;
}

.flow-step:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(251, 177, 247, 0.3);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(251, 177, 247, 0.5);
}

.step-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin: 20px 0;
}

.flow-step h3 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.flow-step p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.flow-arrow {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.method-card {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid var(--accent-primary);
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(251, 177, 247, 0.3);
}

.method-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.method-card span {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
}

/* Section 8: Support - Chat Bubbles */
.support-chat {
  margin-top: 60px;
  padding: 60px 40px;
  background: var(--secondary-color);
}

.chat-header {
  text-align: center;
  margin-bottom: 50px;
}

.chat-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.chat-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.chat-container {
  max-width: 900px;
  margin: 0 auto;
}

.chat-messages {
  background: var(--third-color);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.user-message {
  justify-content: flex-end;
}

.user-message .message-content {
  background: var(--accent-primary);
  color: var(--text-primary);
  padding: 15px 20px;
  border-radius: 20px 20px 5px 20px;
  max-width: 70%;
}

.support-message {
  justify-content: flex-start;
}

.message-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.message-avatar i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.support-message .message-content {
  background: rgba(251, 177, 247, 0.2);
  color: var(--text-primary);
  padding: 15px 20px;
  border-radius: 20px 20px 20px 5px;
  max-width: 70%;
}

.message-content p {
  margin: 0;
  line-height: 1.6;
}

.support-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.channel-item {
  background: var(--third-color);
  padding: 35px 25px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid var(--accent-primary);
  transition: all 0.3s ease;
}

.channel-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(251, 177, 247, 0.3);
}

.channel-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.channel-item h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.channel-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Section 9: FAQ - Category Search */
.faq-categories {
  margin-top: 60px;
  padding: 60px 40px;
  background: var(--third-color);
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.faq-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.faq-search {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.faq-search-input {
  width: 100%;
  padding: 18px 50px 18px 25px;
  background: var(--secondary-color);
  border: 2px solid var(--accent-primary);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 1.1rem;
  outline: none;
  transition: all 0.3s ease;
}

.faq-search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(251, 177, 247, 0.3);
}

.faq-search i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--primary-color);
}

.faq-category-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faq-cat-btn {
  padding: 12px 35px;
  background: var(--secondary-color);
  color: var(--text-secondary);
  border: 2px solid var(--accent-primary);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
  background: var(--accent-primary);
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(116, 0, 131, 0.4);
}

.faq-content-area {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category-content {
  display: none;
}

.faq-category-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.faq-question {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.faq-question:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(251, 177, 247, 0.2);
}

.faq-question h4 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.faq-question p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

/* Additional Responsive for New Sections */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
  }
  
  .circular-timeline {
    width: 400px;
    height: 400px;
  }
  
  .masonry-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  .badges-wall {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .flow-diagram {
    flex-direction: column;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .hero-left,
  .about-circular,
  .bonus-tabs,
  .games-masonry,
  .mobile-mockup,
  .security-badges,
  .payment-flow,
  .support-chat,
  .faq-categories {
    padding: 40px 20px;
  }
  
  .circular-timeline {
    width: 300px;
    height: 300px;
  }
  
  .masonry-container {
    grid-template-columns: 1fr;
  }
  
  .badges-wall,
  .payment-methods-grid,
  .support-channels {
    grid-template-columns: 1fr;
  }
  
  .mockup-container {
    flex-direction: column;
  }
  
  .phone-frame {
    flex: 0 0 250px;
    height: 500px;
  }
}