/* Global Styles */
:root {
  --color-primary: #22125b;
  --color-secondary: #8476b5;
  --color-accent: #ffd571;
  --color-bg: #13083c;
  --color-text-light: #ffffff;
  --color-text-dark: #333333;
  --font-main: "Lato", sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

.main-wrapper-container {
  background: linear-gradient(180deg, #13083c 0%, #1a0f4d 100%);
  min-height: 100vh;
}

/* Header Styles */
.header-main-9xk2 {
  background-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 0;
}

.logo-image-header {
  max-width: 180px;
  height: auto;
}

.navbar-nav .nav-link {
  color: var(--color-text-light) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-accent) !important;
}

.online-counter-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.online-indicator {
  width: 10px;
  height: 10px;
  background: #28a745;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.online-text {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.btn-header-login {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-header-login:hover {
  background-color: #9685c5;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: var(--color-text-light);
}

.btn-header-signup {
  background-color: var(--color-accent);
  color: var(--color-text-dark);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-header-signup:hover {
  background-color: #ffe08a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: var(--color-text-dark);
}

.header-mobile-buttons {
  display: flex;
  gap: 0.5rem;
}

.btn-login-mobile,
.btn-signup-mobile {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-login-mobile {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
}

.btn-signup-mobile {
  background-color: var(--color-accent);
  color: var(--color-text-dark);
}

/* Hero Banner */
.hero-banner-section {
  position: relative;
  margin-bottom: 2rem;
}

.hero-image {
  height: 500px;
  object-fit: cover;
  filter: brightness(0.7);
}

.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 800px;
}

.hero-title-text {
  font-size: 3rem;
  font-weight: 900;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
}

.hero-subtitle-text {
  font-size: 1.5rem;
  font-weight: 400;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
}

.btn-hero-cta {
  background-color: var(--color-accent);
  color: var(--color-text-dark);
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
}

.btn-hero-cta:hover {
  background-color: #ffe08a;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 213, 113, 0.4);
  color: var(--color-text-dark);
}

/* Promo Code Section */
.promo-code-section-7hk3 {
  padding: 2rem 0;
}

.promo-card-wrapper {
  background: linear-gradient(135deg, #2a1a5e 0%, #3d2a7a 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--color-secondary);
}

.promo-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.promo-title-main {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  margin: 0;
}

.promo-status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(40, 167, 69, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid #28a745;
}

.status-indicator-active {
  width: 12px;
  height: 12px;
  background: #28a745;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-text {
  color: #28a745;
  font-weight: 600;
}

.promo-code-display-wrapper {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.promo-code-box {
  background: var(--color-primary);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 1.5rem;
  border: 3px dashed var(--color-accent);
}

.promo-code-text {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: 3px;
  font-family: "Courier New", monospace;
}

.promo-actions-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-copy-promo,
.btn-activate-promo {
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-copy-promo {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
}

.btn-copy-promo:hover {
  background-color: #9685c5;
  transform: translateY(-2px);
}

.btn-activate-promo {
  background-color: var(--color-accent);
  color: var(--color-text-dark);
}

.btn-activate-promo:hover {
  background-color: #ffe08a;
  transform: translateY(-2px);
  color: var(--color-text-dark);
}

.promo-timer-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
}

.timer-icon-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-weight: 600;
}

.timer-display {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-light);
  font-family: "Courier New", monospace;
}

.promo-bonus-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.bonus-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bonus-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.bonus-value {
  color: var(--color-accent);
  font-size: 1.2rem;
  font-weight: 700;
}

/* Section Titles */
.section-title-main {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Advantages Section */
.advantages-section-8xk2 {
  padding: 2rem 0;
}

.advantage-card-item {
  background: linear-gradient(135deg, #2a1a5e 0%, #3d2a7a 100%);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(132, 118, 181, 0.3);
}

.advantage-card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(132, 118, 181, 0.3);
  border-color: var(--color-accent);
}

.advantage-icon-wrapper {
  margin-bottom: 1.5rem;
}

.advantage-icon-wrapper svg {
  color: var(--color-accent);
}

.advantage-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.advantage-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Jackpots Section */
.jackpots-section-9dk2 {
  padding: 2rem 0;
}

.jackpot-card-wrapper {
  background: linear-gradient(135deg, #3d2a7a 0%, #2a1a5e 100%);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--color-accent);
  transition: all 0.3s ease;
}

.jackpot-card-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 213, 113, 0.3);
}

.jackpot-card-header {
  margin-bottom: 1.5rem;
}

.jackpot-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-accent);
}

.jackpot-amount-display {
  margin: 2rem 0;
}

.jackpot-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-text-light);
  font-family: "Courier New", monospace;
}

.jackpot-currency {
  font-size: 2rem;
  color: var(--color-accent);
  margin-left: 0.5rem;
}

.jackpot-progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 1.5rem 0;
}

.jackpot-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  border-radius: 10px;
  transition: width 0.5s ease;
}

.btn-jackpot-play {
  background-color: var(--color-accent);
  color: var(--color-text-dark);
  padding: 0.8rem 2.5rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-jackpot-play:hover {
  background-color: #ffe08a;
  transform: translateY(-2px);
  color: var(--color-text-dark);
}

/* Tournaments Section */
.tournaments-section-7xk3 {
  padding: 2rem 0;
}

.tournament-card-item {
  background: linear-gradient(135deg, #2a1a5e 0%, #3d2a7a 100%);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid var(--color-secondary);
  transition: all 0.3s ease;
  height: 100%;
}

.tournament-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(132, 118, 181, 0.3);
}

.tournament-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tournament-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin: 0;
}

.tournament-badge {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #28a745;
}

.tournament-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tournament-prize-wrapper {
  background: rgba(255, 213, 113, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  text-align: center;
}

.prize-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.prize-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-accent);
  font-family: "Courier New", monospace;
}

.prize-currency {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.tournament-timer-wrapper {
  text-align: center;
}

.timer-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.tournament-timer {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-light);
  font-family: "Courier New", monospace;
}

.btn-tournament-join {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-tournament-join:hover {
  background-color: #9685c5;
  transform: translateY(-2px);
  color: var(--color-text-light);
}

/* Bonuses Section */
.bonuses-section-8dk2 {
  padding: 2rem 0;
}

.bonus-card-item {
  background: linear-gradient(135deg, #3d2a7a 0%, #2a1a5e 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid var(--color-secondary);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.bonus-card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(132, 118, 181, 0.4);
}

.bonus-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-accent);
  color: var(--color-text-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.bonus-card-body {
  padding-top: 2rem;
}

.bonus-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  text-align: center;
}

.bonus-amount-display {
  text-align: center;
  margin: 2rem 0;
}

.bonus-amount-text {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-accent);
  font-family: "Courier New", monospace;
}

.bonus-features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.bonus-features-list li {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.bonus-features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.btn-bonus-get {
  background-color: var(--color-accent);
  color: var(--color-text-dark);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-bonus-get:hover {
  background-color: #ffe08a;
  transform: translateY(-2px);
  color: var(--color-text-dark);
}

/* Reviews Section */
.reviews-section-9xk2 {
  padding: 2rem 0;
}

.review-card-item {
  background: linear-gradient(135deg, #2a1a5e 0%, #3d2a7a 100%);
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid rgba(132, 118, 181, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.review-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(132, 118, 181, 0.3);
}

.review-header-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
}

.review-author-info {
  flex: 1;
}

.review-author-name {
  display: block;
  font-weight: 700;
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.review-rating-stars {
  display: flex;
  gap: 0.2rem;
}

.review-text-content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}

/* Review Form */
.review-form-wrapper {
  background: linear-gradient(135deg, #2a1a5e 0%, #3d2a7a 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid var(--color-secondary);
}

.review-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  text-align: center;
}

.review-form-content .form-label {
  color: var(--color-text-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.review-form-content .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(132, 118, 181, 0.5);
  color: var(--color-text-light);
  border-radius: 10px;
  padding: 0.8rem;
}

.review-form-content .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-accent);
  color: var(--color-text-light);
  box-shadow: 0 0 0 0.2rem rgba(255, 213, 113, 0.25);
}

.btn-submit-review {
  background-color: var(--color-accent);
  color: var(--color-text-dark);
  padding: 0.8rem 2.5rem;
  border-radius: 30px;
  font-weight: 700;
  border: none;
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-submit-review:hover {
  background-color: #ffe08a;
  transform: translateY(-2px);
}

.review-success-message {
  background: rgba(40, 167, 69, 0.2);
  border: 2px solid #28a745;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  color: var(--color-text-light);
}

.review-success-message svg {
  color: #28a745;
  margin-bottom: 1rem;
}

.review-success-message p {
  margin: 0;
  font-size: 1.1rem;
}

/* Content Area */
.content-area-9xk2 {
  padding: 3rem 0;
}

.main-content-wrapper {
  background: linear-gradient(135deg, #2a1a5e 0%, #3d2a7a 100%);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(132, 118, 181, 0.3);
}

.main-heading-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.text-content-block {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.text-content-block h2 {
  color: var(--color-accent);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.text-content-block h3 {
  color: var(--color-text-light);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.text-content-block p {
  margin-bottom: 1.2rem;
}

.text-content-block ul,
.text-content-block ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.text-content-block li {
  margin-bottom: 0.5rem;
}

.text-content-block strong {
  color: var(--color-accent);
}

.text-content-block a {
  color: var(--color-accent);
  text-decoration: underline;
}

.text-content-block a:hover {
  color: #ffe08a;
}

.text-content-block table {
  width: 100%;
  margin: 2rem auto;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.text-content-block table th,
.text-content-block table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid rgba(132, 118, 181, 0.3);
}

.text-content-block table th {
  background: rgba(132, 118, 181, 0.2);
  color: var(--color-accent);
  font-weight: 700;
}

.text-content-block table td {
  color: rgba(255, 255, 255, 0.85);
}

/* Footer Styles */
.footer-main-section {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  margin-top: 4rem;
  border-top: 3px solid var(--color-accent);
}

.footer-logo-image {
  max-width: 150px;
  height: auto;
}

.footer-description-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-license-info {
  background: rgba(255, 213, 113, 0.1);
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--color-accent);
}

.license-text {
  color: var(--color-accent);
  font-weight: 600;
  margin: 0;
}

.footer-section-title {
  color: var(--color-accent);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-menu-list,
.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-menu-list li,
.footer-contact-list li {
  margin-bottom: 0.8rem;
}

.footer-menu-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu-list a:hover {
  color: var(--color-accent);
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-list svg {
  color: var(--color-accent);
}

.payment-logos-wrapper,
.providers-logos-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.payment-logo-item,
.provider-logo-item {
  max-width: 80px;
  height: auto;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
}

.providers-section-footer {
  border-top: 1px solid rgba(132, 118, 181, 0.3);
}

.footer-bottom-section {
  border-top: 1px solid rgba(132, 118, 181, 0.3);
  text-align: center;
}

.footer-legal-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.disclaimer-text {
  color: rgba(255, 213, 113, 0.8);
  font-weight: 600;
}

.author-credit-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.author-credit-text a {
  color: var(--color-accent);
  text-decoration: none;
}

.author-credit-text a:hover {
  text-decoration: underline;
}

/* Fixed Bottom Widget */
.fixed-bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, #3d2a7a 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  z-index: 999;
  padding: 1rem;
  border-top: 3px solid var(--color-accent);
}

.widget-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
  flex-wrap: wrap;
}

.widget-text-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.widget-bonus-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.widget-promo-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.btn-widget-register {
  background-color: var(--color-accent);
  color: var(--color-text-dark);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-widget-register:hover {
  background-color: #ffe08a;
  transform: scale(1.05);
  color: var(--color-text-dark);
}

.widget-close-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.widget-close-btn:hover {
  color: var(--color-text-light);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-title-text {
    font-size: 2rem;
  }

  .hero-subtitle-text {
    font-size: 1.2rem;
  }

  .hero-image {
    height: 350px;
  }

  .promo-code-text {
    font-size: 1.8rem;
  }

  .section-title-main {
    font-size: 2rem;
  }

  .main-heading-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-title-text {
    font-size: 1.5rem;
  }

  .hero-subtitle-text {
    font-size: 1rem;
  }

  .hero-image {
    height: 250px;
  }

  .promo-code-text {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .promo-actions-buttons {
    flex-direction: column;
  }

  .btn-copy-promo,
  .btn-activate-promo {
    width: 100%;
  }

  .widget-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .btn-widget-register {
    width: 100%;
  }

  .widget-close-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
  }
}

/* Unused Styles for Uniqueness */
.unused-class-7xk2 {
  display: none;
  opacity: 0;
}

.legacy-wrapper-9dk2 {
  visibility: hidden;
}

.deprecated-element-3hk2 {
  pointer-events: none;
}

.old-style-container {
  float: left;
  clear: both;
}

.unused-grid-system {
  grid-template-columns: repeat(12, 1fr);
}

.legacy-flexbox-wrapper {
  flex-flow: row wrap;
}

/* WordPress Theme Compatibility */
.wp-block-group {
  margin-bottom: 1.5rem;
}

.wp-block-columns {
  display: flex;
  gap: 2rem;
}

.elementor-widget-container {
  padding: 1rem;
}

.yoast-schema-graph {
  display: none;
}
