/* style/index-user-registration-entrance.css */
.page-index-user-registration-entrance {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-index-user-registration-entrance .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-user-registration-entrance .text-center {
  text-align: center;
}

.page-index-user-registration-entrance .mt-5 {
  margin-top: 3rem !important;
}

.page-index-user-registration-entrance .hero-section {
  background: linear-gradient(135deg, #007bff, #4da3ff); /* Darker blue to lighter blue */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-user-registration-entrance .hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-index-user-registration-entrance .hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  color: #fff;
}

.page-index-user-registration-entrance .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #e0e0e0;
}

.page-index-user-registration-entrance .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  position: relative;
  z-index: 1;
}

.page-index-user-registration-entrance .btn-primary {
  background-color: #ffc107; /* Auxiliary color for CTA */
  color: #333; /* Dark text for contrast */
  border: 2px solid #ffc107;
}

.page-index-user-registration-entrance .btn-primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
}

.page-index-user-registration-entrance .btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-index-user-registration-entrance .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.page-index-user-registration-entrance .btn-outline-primary {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-index-user-registration-entrance .btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

.page-index-user-registration-entrance .section-title {
  font-size: 2.5rem;
  color: #0056b3; /* Darker blue for headings */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-user-registration-entrance .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-user-registration-entrance .section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555;
}

.page-index-user-registration-entrance .content-section {
  padding: 60px 0;
}

.page-index-user-registration-entrance .why-join {
  background-color: #f1f7fe;
}

.page-index-user-registration-entrance .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-index-user-registration-entrance .feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-index-user-registration-entrance .feature-item:hover {
  transform: translateY(-10px);
}

.page-index-user-registration-entrance .feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-user-registration-entrance .feature-item h3 {
  font-size: 1.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-user-registration-entrance .feature-item p {
  color: #666;
}

.page-index-user-registration-entrance .registration-guide {
  background-color: #fff;
}

.page-index-user-registration-entrance .guide-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.page-index-user-registration-entrance .step-item {
  display: flex;
  align-items: center;
  background-color: #fefefe;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  max-width: 900px;
  width: 100%;
}

.page-index-user-registration-entrance .step-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-index-user-registration-entrance .step-image {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-index-user-registration-entrance .step-content h4 {
  font-size: 1.8rem;
  color: #007bff;
  margin-bottom: 10px;
}

.page-index-user-registration-entrance .step-content p {
  font-size: 1.05rem;
  color: #444;
}

.page-index-user-registration-entrance .step-content p a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-index-user-registration-entrance .step-content p a:hover {
  text-decoration: underline;
}

.page-index-user-registration-entrance .exclusive-offers {
  background-color: #f1f7fe;
}

.page-index-user-registration-entrance .offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-index-user-registration-entrance .offer-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-index-user-registration-entrance .offer-item:hover {
  transform: translateY(-10px);
}

.page-index-user-registration-entrance .offer-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-user-registration-entrance .offer-item h3 {
  font-size: 1.6rem;
  color: #ffc107; /* Auxiliary color for offers */
  margin-bottom: 15px;
}

.page-index-user-registration-entrance .offer-item p {
  color: #666;
}

.page-index-user-registration-entrance .app-download {
  background-color: #fff;
  padding: 80px 0;
}

.page-index-user-registration-entrance .app-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-index-user-registration-entrance .app-text {
  flex: 1;
  min-width: 300px;
}

.page-index-user-registration-entrance .app-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #444;
}

.page-index-user-registration-entrance .app-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-user-registration-entrance .app-text ul li {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #333;
  position: relative;
  padding-left: 25px;
}

.page-index-user-registration-entrance .app-text ul li::before {
  content: '✓';
  color: #ffc107;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-user-registration-entrance .app-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-user-registration-entrance .app-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-index-user-registration-entrance .responsible-gambling {
  background-color: #f1f7fe;
  padding-bottom: 80px;
}

.page-index-user-registration-entrance .floating-ad-menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-index-user-registration-entrance .floating-ad-item {
  background-color: rgba(0, 123, 255, 0.9); /* Main color with transparency */
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-index-user-registration-entrance .floating-ad-item:hover {
  transform: translateX(-10px);
  background-color: #ffc107; /* Auxiliary color on hover */
}

.page-index-user-registration-entrance .floating-ad-item:hover span {
  color: #333; /* Dark text for contrast on auxiliary color */
}

.page-index-user-registration-entrance .floating-ad-item a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}

.page-index-user-registration-entrance .floating-ad-item .ad-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  filter: brightness(0) invert(1); /* Make icon white */
}

.page-index-user-registration-entrance .floating-ad-item:hover .ad-icon {
  filter: none; /* Reset filter on hover if icon should change color */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-user-registration-entrance .hero-title {
    font-size: 2.8rem;
  }
  .page-index-user-registration-entrance .hero-subtitle {
    font-size: 1.2rem;
  }
  .page-index-user-registration-entrance .section-title {
    font-size: 2rem;
  }
  .page-index-user-registration-entrance .step-item {
    flex-direction: column;
    text-align: center;
  }
  .page-index-user-registration-entrance .step-item:nth-child(even) {
    flex-direction: column;
  }
  .page-index-user-registration-entrance .step-image {
    margin: 0 auto 20px;
  }
  .page-index-user-registration-entrance .app-info {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-index-user-registration-entrance .hero-title {
    font-size: 2.2rem;
  }
  .page-index-user-registration-entrance .hero-subtitle {
    font-size: 1rem;
  }
  .page-index-user-registration-entrance .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-index-user-registration-entrance .section-title {
    font-size: 1.8rem;
  }
  .page-index-user-registration-entrance .feature-grid, .page-index-user-registration-entrance .offer-grid {
    grid-template-columns: 1fr;
  }
  .page-index-user-registration-entrance .floating-ad-menu {
    bottom: 10px;
    right: 10px;
  }
  .page-index-user-registration-entrance .floating-ad-item a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  .page-index-user-registration-entrance .floating-ad-item .ad-icon {
    width: 25px;
    height: 25px;
  }
}