:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  --card-bg: #FFFFFF;
  --page-bg: #F4F7FB;
  --text-main: #1F2D3D;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
}

.page-register {
  color: var(--text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: var(--page-bg);
}

.page-register__section {
  padding: 60px 0;
  position: relative;
}

.page-register__dark-section {
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-register__light-bg {
  background-color: var(--page-bg);
  color: var(--text-main);
}

.page-register__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register__heading {
  font-size: 36px;
  font-weight: bold;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-register__dark-section .page-register__heading {
  color: #ffffff;
}

.page-register__sub-heading {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  color: #555;
}

.page-register__dark-section .page-register__sub-heading {
  color: rgba(255, 255, 255, 0.9);
}

.page-register__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
  border: none;
  cursor: pointer;
}

.page-register__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-register__cta-block {
  text-align: center;
  margin-top: 50px;
}

/* HERO Section */
.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for visual spacing */
}

.page-register__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-register__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-register__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-register__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-register__hero-content h1 {
  color: var(--text-main);
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.page-register__hero-content p {
  color: #555;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Why Register Section */
.page-register__why-register-section .page-register__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-register__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.page-register__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-register__card-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-register__card p {
  font-size: 16px;
  color: #555;
}

/* Registration Steps Section */
.page-register__registration-steps-section .page-register__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.page-register__registration-steps-section .page-register__steps-list {
  flex: 1;
  min-width: 300px;
}

.page-register__registration-steps-section .page-register__image-wrapper {
  flex: 1;
  min-width: 400px;
  text-align: center;
}

.page-register__registration-steps-section .page-register__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-register__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.page-register__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  min-width: 45px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  margin-right: 20px;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-register__step-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--text-main);
  margin-top: 5px;
  margin-bottom: 5px;
}

.page-register__step-item p {
  font-size: 16px;
  color: #555;
}

/* Welcome Offers Section */
.page-register__welcome-offers-section .page-register__offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-register__offer-card {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-register__offer-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register__offer-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-register__offer-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

/* Gaming Options Section */
.page-register__gaming-options-section .page-register__gaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-register__gaming-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-register__gaming-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-register__gaming-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-register__gaming-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-register__gaming-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-register__gaming-title a:hover {
  text-decoration: underline;
}

.page-register__gaming-card p {
  font-size: 16px;
  color: #555;
}

/* Secure Payments Section */
.page-register__secure-payments-section .page-register__payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-register__payment-item {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 25px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-register__payment-item img {
  width: 100%;
  
  height: auto;
  margin-bottom: 15px;
}

.page-register__payment-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-register__payment-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/* Customer Support Section */
.page-register__customer-support-section .page-register__support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-register__support-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.page-register__support-item img {
  width: 100%;
  
  height: auto;
  margin-bottom: 15px;
}

.page-register__support-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-register__support-item p {
  font-size: 15px;
  color: #555;
}

/* FAQ Section */
.page-register__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details.page-register__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

details.page-register__faq-item summary.page-register__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

details.page-register__faq-item summary.page-register__faq-question::-webkit-details-marker {
  display: none;
}

details.page-register__faq-item summary.page-register__faq-question:hover {
  background: #f0f5ff;
}

.page-register__faq-qtext {
  flex: 1;
  line-height: 1.5;
  text-align: left;
}

.page-register__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-register__faq-item .page-register__faq-answer {
  padding: 0 25px 20px;
  background: #f9fbfd;
  border-radius: 0 0 10px 10px;
  color: #555;
  font-size: 16px;
}

/* Latest Blog Section */
.page-register__latest-blog-section .page-register__blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-register__blog-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.page-register__blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-register__blog-card img {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-register__blog-content {
  padding: 25px;
}

.page-register__blog-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-register__blog-title a {
  color: var(--text-main);
  text-decoration: none;
}

.page-register__blog-title a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-register__blog-excerpt {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}

.page-register__read-more {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}

.page-register__read-more:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-register__heading {
    font-size: 32px;
  }
  .page-register__sub-heading {
    font-size: 16px;
  }
  .page-register__hero-content h1 {
    font-size: clamp(24px, 5vw, 40px);
  }
  .page-register__hero-content p {
    font-size: 16px;
  }
  .page-register__card-title, .page-register__offer-title, .page-register__gaming-title, .page-register__payment-title, .page-register__support-title, .page-register__blog-title {
    font-size: 20px;
  }
  details.page-register__faq-item summary.page-register__faq-question {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-register__section {
    padding: 40px 0;
  }
  .page-register__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-register__hero-image img {
    border-radius: 8px;
  }
  .page-register__hero-content h1 {
    font-size: clamp(22px, 6vw, 36px);
  }
  .page-register__hero-content p {
    font-size: 15px;
    margin: 0 auto 20px;
  }
  .page-register__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-register__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-register__sub-heading {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .page-register__container {
    padding: 0 15px;
  }
  .page-register__grid, .page-register__offer-grid, .page-register__gaming-grid, .page-register__payment-grid, .page-register__support-channels, .page-register__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-register__registration-steps-section .page-register__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-register__registration-steps-section .page-register__image-wrapper {
    min-width: unset;
  }
  .page-register__step-item {
    margin-bottom: 20px;
  }
  .page-register__step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 20px;
    margin-right: 15px;
  }
  .page-register__step-title {
    font-size: 18px;
  }
  .page-register__card, .page-register__offer-card, .page-register__gaming-card, .page-register__payment-item, .page-register__support-item, .page-register__blog-card {
    padding: 20px;
  }
  details.page-register__faq-item summary.page-register__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-register__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-register__faq-item .page-register__faq-answer {
    padding: 0 20px 15px;
  }
  .page-register__blog-card img {
    
  }
  .page-register__blog-content {
    padding: 20px;
  }
  .page-register__blog-title {
    font-size: 18px;
  }
  .page-register__blog-excerpt {
    font-size: 14px;
  }
  .page-register img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-register__section,
  .page-register__card,
  .page-register__container,
  .page-register__cta-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-register__hero-content h1 {
    font-size: clamp(20px, 7vw, 32px);
  }
  .page-register__hero-content p {
    font-size: 14px;
  }
  .page-register__heading {
    font-size: 24px;
  }
  .page-register__card-title, .page-register__offer-title, .page-register__gaming-title, .page-register__payment-title, .page-register__support-title, .page-register__blog-title {
    font-size: 18px;
  }
  details.page-register__faq-item summary.page-register__faq-question {
    font-size: 15px;
  }
}