@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #FFD700;
  --secondary-color: #0A0E27;
  --third-color: #1A1F3A;
  --text-primary: #FFFFFF;
  --text-secondary: #B8BCC8;
  --accent-primary: #FF6B35;
  --accent-gold: #FFD700;
  --accent-silver: #C0C0C0;
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  --gradient-dark: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
  --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-image: linear-gradient(rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95)), url(images/background.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


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;
}

.breadcrumbs {
  padding: 15px 0;
  margin-bottom: 20px;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 10px;
  color: var(--text-secondary);
}

.breadcrumbs a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.hero {
  position: relative;
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  min-height: 500px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(76, 149, 184, 0.9) 0%, rgba(17, 17, 17, 0.9) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text-content h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  letter-spacing: -0.5px;
}

.hero-text-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: justify;
}

.hero-cta-group {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.btn-hero-primary {
  background: var(--gradient-gold);
  color: var(--secondary-color);
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  box-shadow: var(--shadow-glow);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.btn-hero-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-gold);
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: var(--gradient-gold);
  color: var(--secondary-color);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-glow);
}

.hero-visual-content {
  position: relative;
}

.hero-feature-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-us {
  margin-top: 40px;
}

.about-us-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--gradient-dark);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.about-us-image-section {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about-us-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 20px;
  z-index: 2;
}

.stat-item {
  background: rgba(0, 0, 0, 0.7);
  padding: 15px 25px;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-number {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-us-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-us-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 15px;
}

.about-us-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.about-us-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 15px;
  text-align: justify;
}

.bonus {
  margin-top: 40px;
}

.bonus-container {
  background: var(--gradient-dark);
  border-radius: 15px;
  padding: 50px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.bonus-header {
  text-align: center;
  margin-bottom: 40px;
}

.bonus-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}

.bonus-content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.bonus-text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonus-text-section p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 15px;
  text-align: justify;
}

.bonus-text-section a {
  color: var(--primary-color);
  text-decoration: underline;
}

.bonus-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.bonus-promo-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.bonus-promo-card:hover {
  transform: scale(1.05);
}

.bonus-promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 25px;
  color: var(--text-primary);
}

.promo-overlay h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-overlay p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.7;
  font-weight: 400;
}

.btn-promo {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--secondary-color);
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.bonus-featured-banners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.featured-banner {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.featured-banner:hover {
  transform: translateY(-5px);
}

.featured-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.why-choose {
  margin-top: 40px;
  padding: 50px;
  background: var(--gradient-dark);
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.why-choose-header {
  text-align: center;
  margin-bottom: 40px;
}

.why-choose-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-choose-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.why-choose-card {
  background-color: var(--third-color);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.why-choose-card.card-featured {
  background: linear-gradient(135deg, var(--third-color) 0%, rgba(255, 215, 0, 0.1) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: var(--shadow-glow);
}

.card-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.why-choose-card:hover .card-image-wrapper img {
  transform: scale(1.1);
}

.card-content {
  padding: 25px;
}

.card-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}

.games {
  margin-top: 40px;
}

.games-container {
  background: var(--gradient-dark);
  border-radius: 15px;
  padding: 50px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.games-header {
  text-align: center;
  margin-bottom: 40px;
}

.games-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.games-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}

.games-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.game-feature-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, var(--third-color) 0%, rgba(26, 31, 58, 0.8) 100%);
  border-radius: 15px;
  padding: 35px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.game-feature-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}

.game-feature-large:nth-child(even) {
  direction: rtl;
}

.game-feature-large:nth-child(even) > * {
  direction: ltr;
}

.game-feature-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.game-feature-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.game-feature-content h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-feature-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 400;
  text-align: justify;
}

.game-samples {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.game-samples img {
  flex: 1;
  max-width: 120px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.game-samples img:hover {
  transform: scale(1.1);
}

.security {
  margin-top: 40px;
}

.security-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--gradient-dark);
  border-radius: 15px;
  overflow: hidden;
  align-items: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.security-visual {
  height: 100%;
  min-height: 400px;
}

.security-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.security-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.security-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.security-content > p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: justify;
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}

.security-feature-item {
  padding: 25px;
  background-color: var(--third-color);
  border-radius: 10px;
  border-left: 4px solid var(--accent-gold);
  transition: all 0.3s ease;
}

.security-feature-item:hover {
  border-left-color: var(--accent-primary);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
}

.security-feature-item h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.security-feature-item p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}

.mobile-experience {
  margin-top: 40px;
}

.mobile-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--gradient-dark);
  border-radius: 15px;
  padding: 50px;
  align-items: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-content > p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: justify;
}

.mobile-features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}

.mobile-feature {
  padding: 20px;
  background-color: var(--third-color);
  border-radius: 10px;
}

.mobile-feature h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-feature p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}

.mobile-visual {
  height: 100%;
}

.mobile-main-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.payments {
  margin-top: 40px;
}

.payments-container {
  background: var(--gradient-dark);
  border-radius: 15px;
  padding: 50px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.payments-header {
  text-align: center;
  margin-bottom: 40px;
}

.payments-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.payments-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.payment-card {
  background-color: var(--third-color);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.payment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  border-color: var(--accent-gold);
}

.payment-icon {
  font-size: 4rem;
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.payment-icon i {
  color: var(--accent-gold);
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.payment-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 165, 0, 0.3) 100%);
  border-radius: 25px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.payment-card:hover .payment-icon {
  transform: translateY(-5px) rotateX(5deg);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.payment-card:hover .payment-icon::before {
  opacity: 1;
}

.payment-card:hover .payment-icon i {
  filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.6));
  transform: scale(1.1);
}

.payment-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}

.customer-support {
  margin-top: 40px;
}

.support-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--gradient-dark);
  border-radius: 15px;
  padding: 50px;
  align-items: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.support-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.support-content h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.support-content > p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: justify;
}

.support-channels {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}

.support-channel {
  padding: 25px;
  background-color: var(--third-color);
  border-radius: 10px;
  border-left: 4px solid var(--accent-gold);
  transition: all 0.3s ease;
}

.support-channel:hover {
  border-left-color: var(--accent-primary);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
  transform: translateX(5px);
}

.channel-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
  border-radius: 18px;
  position: relative;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.channel-icon i {
  color: var(--accent-gold);
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.channel-icon::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 165, 0, 0.3) 100%);
  border-radius: 22px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.support-channel:hover .channel-icon {
  transform: translateY(-5px) rotateX(5deg);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.support-channel:hover .channel-icon::before {
  opacity: 1;
}

.support-channel:hover .channel-icon i {
  filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.6));
  transform: scale(1.1);
}

.support-channel h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.support-channel p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}

.support-visual {
  height: 100%;
}

.support-main-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq {
  margin-top: 40px;
}

.faq-container {
  background: var(--gradient-dark);
  border-radius: 15px;
  padding: 50px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.faq-item {
  background-color: var(--third-color);
  border-radius: 10px;
  padding: 25px;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background-color: rgba(76, 149, 184, 0.1);
}

.faq-item h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
  text-align: justify;
}

.faq-item a {
  color: var(--primary-color);
  text-decoration: underline;
}

.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;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-us-container {
    grid-template-columns: 1fr;
  }

  .about-us-image-section {
    min-height: 300px;
  }

  .bonus-content-layout {
    grid-template-columns: 1fr;
  }

  .security-container,
  .mobile-container,
  .support-container {
    grid-template-columns: 1fr;
  }

  .game-feature-large {
    grid-template-columns: 1fr;
  }

  .game-feature-large:nth-child(even) {
    direction: ltr;
  }

  .games-container,
  .bonus-container,
  .payments-container,
  .faq-container {
    padding: 30px;
  }
}

@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-container {
    padding: 40px 20px;
  }

  .hero-text-content h1 {
    font-size: 1.8rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .about-us-content h2,
  .why-choose-header h2,
  .bonus-header h2,
  .games-header h2,
  .security-content h2,
  .mobile-content h2,
  .payments-header h2,
  .support-content h2,
  .faq-header h2 {
    font-size: 1.6rem;
  }

  .why-choose-grid,
  .payments-grid {
    grid-template-columns: 1fr;
  }

  .bonus-promo-grid {
    grid-template-columns: 1fr;
  }

  .bonus-featured-banners {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
  }

  .hero-container {
    padding: 30px 15px;
  }

  .hero-text-content h1 {
    font-size: 1.5rem;
  }

  .hero-text-content p {
    font-size: 1rem;
  }

  .about-us-content,
  .security-content,
  .mobile-content,
  .support-content {
    padding: 25px;
  }

  .about-us-container,
  .bonus-container,
  .games-container,
  .security-container,
  .mobile-container,
  .payments-container,
  .support-container,
  .faq-container {
    padding: 25px;
  }

  .why-choose {
    padding: 25px;
  }

  .game-samples {
    flex-direction: column;
  }

  .game-samples img {
    max-width: 100%;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}