/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #222;
  background: #000;
  overflow-x: hidden;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(-45deg, #dc143c, #ffffff, #b3001b, #f5f5f5);
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Boxed layout */
.page-container {
  max-width: 1200px;
  margin: 20px auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 2px solid #ff69b4;
}

.logo a {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.4em;
  color: #ff1e1e;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

.nav a:hover {
  color: #ff69b4;
}

/* Hamburger menu */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive menu */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    border: 1px solid #ccc;
    padding: 10px;
  }
  .nav.open { display: flex; }
  .hamburger { display: block; }
}

/* Layout */
.main-content {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.left-column {
  flex: 3;
}

.right-column {
  flex: 1;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
}

/* Casino list */
.casino-item {
  display: flex;
  background: #f8f8f8;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  align-items: center;
}

.casino-logo img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  margin-right: 15px;
}

.casino-info h3 {
  margin-bottom: 5px;
  color: #ff1e1e;
}

.casino-info p {
  margin: 4px 0;
  font-size: 0.9em;
}

.btn {
  display: inline-block;
  margin-top: 8px;
  background: linear-gradient(45deg, #ff69b4, #ff1e1e);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  opacity: 0.85;
}

/* Right column offers */
.offers li {
  list-style: none;
  margin-bottom: 10px;
}
.offers a {
  color: #ff69b4;
  text-decoration: none;
}
.offers a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 30px 20px;
  background: #111;
  color: #ddd;
}

.footer h3 {
  color: #ff1e1e;
  margin-bottom: 10px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9em;
}

.footer a:hover {
  color: #ff1e1e;
}





/* Casino grid for /casinos/ page */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 15px;
}

.casino-card {
  background: #f8f8f8;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

.casino-card img {
  width: 120px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 8px;
}





/* === CASINO GRID PAGE === */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.casino-card {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

.casino-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

/* Logo area */
.casino-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 10px;
}

.casino-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 10px;
  font-weight: 700;
  color: #fff;
  font-size: 0.9em;
  text-decoration: none;
    margin-right:20px;
      overflow: hidden;
        text-decoration: none;
}



/* Casino name */
.casino-card h3 {
  margin: 10px 0 5px;
  font-size: 1em;
  color: #ff1e1e;
}

.casino-card h3 a {
  text-decoration: none;
  color: inherit;
}

.casino-card h3 a:hover {
  color: #ff69b4;
}

/* Bonus section */
.casino-bonus {
  min-height: 50px;
  font-size: 0.9em;
  color: #444;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Buttons */
.casino-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.casino-buttons .btn {
  display: block;
  padding: 8px;
  border-radius: 6px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-info {
  background: linear-gradient(45deg, #ff1e1e, #6a00ff);
}

.btn-bonus {
  background: linear-gradient(45deg, #ff69b4, #ff1493);
}

.btn-info:hover,
.btn-bonus:hover {
  opacity: 0.85;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .casino-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .casino-card img,
  .casino-fallback {
    width: 100px;
    height: 100px;
  }
}



/* === Pagination === */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.page-link {
  display: inline-block;
  padding: 8px 14px;
  background: #eee;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-link:hover {
  background: #ff69b4;
  color: #fff;
}

.page-link.active {
  background: linear-gradient(45deg, #ff69b4, #ff1e1e);
  color: #fff;
}

.page-link.prev,
.page-link.next {
  background: #ddd;
  font-weight: 700;
}





/* === Casino Single Page === */
.casino-single .casino-header {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 25px;
}

.casino-logo-large img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.casino-fallback-large {
  width: 180px;
  height: 180px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1em;
  color: #fff;
}

.casino-info-block h1 {
  font-size: 1.8em;
  margin-bottom: 8px;
  color: #ff1e1e;
}

.casino-info-block h3 {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 5px;
}

/* Pros & Cons */
.pros-cons {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.pros, .cons {
  flex: 1;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
}

.pros h4, .cons h4 {
  color: #ff1e1e;
  margin-bottom: 8px;
}


/* Short review */
.short-review {
  background: #fafafa;
  padding: 15px;
  border-radius: 10px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Play now big button */
.playnow {
  text-align: center;
  margin-bottom: 30px;
}

.btn.big {
  font-size: 1.1em;
  padding: 12px 20px;
}
/* === Updated Tabs === */
.casino-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 2px solid #eee;
  margin: 25px 0 15px;
}

.casino-tabs .tab {
  padding: 8px 14px;
  text-decoration: none;
  color: #333;
  border-radius: 6px 6px 0 0;
  background: #f1f1f1;
  font-weight: 600;
  transition: all 0.3s ease;
}

.casino-tabs .tab:hover {
  background: #ff69b4;
  color: #fff;
}

.casino-tabs .tab.active {
  background: linear-gradient(45deg, #ff69b4, #ff1e1e);
  color: #fff;
}

/* Promo Block */
.promo-block {
  background: linear-gradient(90deg, #ff1e1e, #ff69b4);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.promo-block h2 {
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.promo-text {
  color: #ffff66;
  font-weight: 600;
  font-size: 2.2em;
  margin-bottom: 15px;
}

.btn-yellow {
  background: #fff700;
  color: #333;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-yellow:hover {
  background: #ffe000;
  color: #111;
}

.promo-block .btn-yellow {
  margin-top: 10px;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


/* Recommended Casinos */
.recommended {
  margin-top: 40px;
}

.recommended h2 {
  color: #ff1e1e;
  margin-bottom: 15px;
}

.small-bonus {
  min-height: 40px;
  font-size: 0.9em;
  margin: 5px 0;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .casino-single .casino-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .pros-cons {
    flex-direction: column;
  }
}




/* === Bonus Page Specific === */
.bonus-content {
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.bonus-content h2 {
  color: #ff1e1e;
  margin-bottom: 10px;
}

.bonus-text {
  font-size: 0.95em;
  line-height: 1.6;
}

/* === Alternate Promo Block (Different Gradient) === */
.promo-block-alt {
  background: linear-gradient(90deg, #ff69b4, #ff1493, #ff4500);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.promo-block-alt h2 {
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 10px;
}

.promo-block-alt .promo-text {
  color: #fff700;
  font-weight: 600;
  margin-bottom: 15px;
}


/* === Games Page Specific === */
.games-content {
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.games-content h2 {
  color: #ff1e1e;
  margin-bottom: 10px;
}

.games-text {
  font-size: 0.95em;
  line-height: 1.6;
}

/* === Promo Block for Games (Different Gradient) === */
.promo-block-games {
  background: linear-gradient(90deg, #8A2BE2, #ff1e1e, #00CED1);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.promo-block-games h2 {
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 10px;
}

.promo-block-games .promo-text {
  color: #fff700;
  font-weight: 600;
  margin-bottom: 15px;
}



/* === Deposit Page Specific === */
.deposit-content {
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.deposit-content h2 {
  color: #ff1e1e;
  margin-bottom: 10px;
}

.deposit-section {
  margin-bottom: 20px;
}

.deposit-section h4 {
  color: #ff69b4;
  margin-bottom: 6px;
  font-size: 1em;
}

.deposit-section p {
  font-size: 0.95em;
  line-height: 1.6;
}

/* === Promo Block for Deposit Page === */
.promo-block-deposit {
  background: linear-gradient(90deg, #2E8B57, #ff1e1e, #6A00FF);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.promo-block-deposit h2 {
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 10px;
}

.promo-block-deposit .promo-text {
  color: #fff700;
  font-weight: 600;
  margin-bottom: 15px;
}



/* === Withdrawals Page Specific === */
.withdrawal-content {
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.withdrawal-content h2 {
  color: #ff1e1e;
  margin-bottom: 10px;
}

.withdrawal-section {
  margin-bottom: 20px;
}

.withdrawal-section h4 {
  color: #ff69b4;
  margin-bottom: 6px;
  font-size: 1em;
}

.withdrawal-section p {
  font-size: 0.95em;
  line-height: 1.6;
}

/* === Promo Block for Withdrawals Page === */
.promo-block-withdrawal {
  background: linear-gradient(90deg, #9932CC, #FF1493, #FF69B4);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.promo-block-withdrawal h2 {
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 10px;
}

.promo-block-withdrawal .promo-text {
  color: #fff700;
  font-weight: 600;
  margin-bottom: 15px;
}




/* === Review Page Specific === */
.review-content {
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.review-content h2 {
  color: #ff1e1e;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.96em;
  line-height: 1.7;
}

.review-text p {
  margin-bottom: 10px;
}

/* === Promo Block for Review Page === */
.promo-block-review {
  background: linear-gradient(90deg, #ff1e1e, #8A2BE2, #C71585);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.promo-block-review h2 {
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 10px;
}

.promo-block-review .promo-text {
  color: #fff700;
  font-weight: 600;
  margin-bottom: 15px;
}


/* === Popular Casinos Table (Inline Rows) === */
.popular-casinos-table {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  margin: 30px 0;
}

.popular-casinos-table h2 {
  color: #ff1e1e;
  margin-bottom: 15px;
}

.casino-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Row Style */
.casino-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fafafa;
  border-radius: 8px;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.casino-row:hover {
  background: #f1f6ff;
  transform: translateY(-2px);
}

/* Columns */
.casino-col.logo {
  flex: 0 0 100px;
}

.casino-col.logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.casino-fallback-inline {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.casino-col.info {
  flex: 1;
  padding-left: 15px;
}

.casino-col.info h4 {
  margin: 0;
  font-size: 1.05em;
}

.casino-col.info a {
  text-decoration: none;
  color: #ff1e1e;
  font-weight: 600;
}

.casino-col.info .bonus-text {
  color: #555;
  font-size: 0.9em;
  margin-top: 5px;
}

.casino-col.action {
  flex: 0 0 120px;
  text-align: right;
}

/* Button */
.btn-small {
  display: inline-block;
  background: linear-gradient(45deg, #ff69b4, #ff1e1e);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-small:hover {
  background: linear-gradient(45deg, #ff1e1e, #ff69b4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .casino-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .casino-col.action {
    text-align: center;
  }
}



/* === Top Search Grid === */
.tags-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.tag-item {
  display: block;
  background: linear-gradient(45deg, #ff69b4, #ff1e1e);
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag-item:hover {
  background: linear-gradient(45deg, #ff1e1e, #ff69b4);
  transform: translateY(-3px);
}

/* Tag single page */
.tag-description {
  background: #fafafa;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .tags-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .tags-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .tags-grid { grid-template-columns: 1fr; }
}



/* === Casino by Country === */
.country-block {
  margin-bottom: 30px;
}

.country-block h2 {
  color: #ff1e1e;
  margin-bottom: 10px;
}

.country-description {
  background: #fafafa;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  line-height: 1.6;
}


/* === Casino Tags === */
.casino-tags {
  margin: 20px 0 30px;
  font-size: 0.95em;
  color: #555;
}

.casino-tags strong {
  color: #ff1e1e;
  margin-right: 6px;
}

.casino-tags a {
  color: #ff69b4;
  text-decoration: none;
  font-weight: 500;
}

.casino-tags a:hover {
  text-decoration: underline;
  color: #ff1e1e;
}



/* === Games & Providers === */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.game-card {
  text-align: center;
}

.game-logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eee;
}

.game-fallback {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1em;
}

.game-card h4 {
  margin-top: 10px;
  font-size: 1em;
}

.provider-description {
  background: #fafafa;
  border-radius: 10px;
  padding: 15px;
  margin: 15px 0 25px;
  line-height: 1.6;
}



/* === Dark Vertical Casino Cards === */
.play_casino {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 25px 0;
}

/* Casino Card */
.casino-card-dark {
  background: #1a1a1a;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  cursor:pointer;
}

.casino-card-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}

/* Logo */
.casino-logo-top img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 15px;
}

.casino-fallback-dark {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0 auto 15px;
}

/* Text */
.casino-info-dark h3 {
  margin: 0;
  font-size: 1.3em;
  color: #fff;
}

.casino-info-dark a {
  color: #fff;
  text-decoration: none;
}

.casino-info-dark a:hover {
  color: #ff1e1e;
}

.bonus-text-dark {
  color: #ffd700;
  font-size: 1.1em;
  font-weight: 600;
  margin: 8px 0 15px;
}

/* Button */
.btn-play-dark {
  display: inline-block;
  background: #ff1e1e;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: all 0.3s ease;
}

.btn-play-dark:hover {
  background: #4aa3ff;
  box-shadow: 0 4px 10px rgba(30,144,255,0.4);
}

/* Responsive for mobile: sidebar below content */
@media (max-width: 768px) {
    
    
  .main-content{
    display: block !important;
    flex-direction: block !important;
  }
  .left-column {
    order: 1;
     width:100% !important;
     display: block !important;
  }
  .right-column,
  .sidebar {
    order: 2;
    margin-top: 25px;
     width:100% !important;
     display: block !important;
  }
  .casino-card-dark {
    width: 100%;
  }
}



/* === Contact page === */
.alert {
  padding: 12px 14px;
  border-radius: 8px;
  margin: 15px 0;
  font-size: 0.95em;
}
.alert.success { background: #e8fbef; color: #21784e; border: 1px solid #bff0d1; }
.alert.error   { background: #fff1f1; color: #9b1c1c; border: 1px solid #ffd2d2; }

.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  margin-top: 15px;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff1e1e;
  box-shadow: 0 0 0 4px rgba(30,144,255,0.12);
  background: #fff;
}

.contact-form .form-actions {
  text-align: right;
  margin-top: 10px;
}

.btn.btn-submit {
  background: linear-gradient(45deg, #ff1e1e, #6a00ff);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn.btn-submit:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* Stack sidebar under content on mobile (if not already) */
@media (max-width: 768px) {
  .page-container { display: block; }
  .left-column, .right-column, .sidebar { width: 100%; }
  .sidebar { margin-top: 20px; }
}



/* === HERO PROMO === */
.hero-promo {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 40px;
  color: #fff;
    cursor:pointer;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #ff69b4, #ff1e1e, #8a2be2);
  background-size: 600% 600%;
  animation: heroGradient 6s ease infinite;
  z-index: 1;
  opacity: 0.85;
}

@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 50px;
}

.hero-left {
  flex: 0 0 30%;
  text-align: center;
}

.hero-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
}

.hero-logo-fallback {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5em;
  color: #fff;
}

.hero-right {
  flex: 0 0 65%;
  text-align: left;
}

.hero-right h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
}

.hero-bonus {
  font-size: 1.3em;
  color: #ffdf4f;
  margin-bottom: 15px;
}

.btn-hero {
  display: inline-block;
  background: #ff1e1e;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background: #ff69b4;
  transform: translateY(-2px);
}


/* === PROMO GRID === */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.promo-card {
  position: relative;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
    cursor:pointer;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
  
}

.promo-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  cursor:pointer;
}

.promo-content h3 {
  margin-bottom: 8px;
  font-size: 1.2em;
}

.promo-content p {
  color: #ffdf4f;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.9em; /* reduced ~25% from original size */
  line-height: 1.3em;
}


.btn-promo {
  display: inline-block;
  background: #ff1e1e;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-promo:hover {
  background: #ff69b4;
  transform: translateY(-1px);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
  .hero-right {
    margin-top: 20px;
  }
  .hero-logo, .hero-logo-fallback {
    width: 150px;
    height: 150px;
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
}

