/**
 * Goldman Casino Visual Enhancements
 * Enhanced styling for improved user confidence and engagement
 * Version: 1.0.1 - Removed payment and trust badge sections
 */

/* Base Image Handling */
img {
  max-width: 80%; /* As per user preference */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* iFrame Styling */
.casino-iframe {
  display: block;
  width: 89%;
  height: 100% !important;
  margin: 11px auto 23px;
  border: 4px solid #2c2b4f;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Game Thumbnails and Interactive Images */
.game-thumbnail {
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 80%;
}

.game-thumbnail:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* CSS Icons and Visual Indicators */
.star-rating {
  color: gold;
  font-size: 20px;
  display: inline-block;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2c2b4f, #504e9b);
  border-radius: 50%;
  color: white;
  margin-right: 10px;
}

.badge-new {
  display: inline-block;
  background-color: #ff3e3e;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
  text-transform: uppercase;
}

.badge-hot {
  display: inline-block;
  background-color: #ff8f00;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
  text-transform: uppercase;
}

.badge-exclusive {
  display: inline-block;
  background-color: #8e44ad;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
  text-transform: uppercase;
}

.section-divider {
  height: 3px;
  background: linear-gradient(to right, transparent, #2c2b4f, transparent);
  margin: 30px 0;
}

/* PayPal-Inspired Sectioned Layout */
.card-section {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 25px;
  margin: 20px 0;
}

.hero-section {
  background: linear-gradient(135deg, #2c2b4f, #504e9b);
  color: white;
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 30% 30% / 15%;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

/* Casino Comparison Table */
.casino-comparison {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.casino-comparison thead {
  background-color: #2c2b4f;
  color: white;
}

.casino-comparison th,
.casino-comparison td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.casino-comparison tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.casino-comparison tbody tr:hover {
  background-color: #f1f1f1;
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff8f00, #ff6a00);
  color: white;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
  margin: 15px 0;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 106, 0, 0.4);
}

.cta-button-secondary {
  display: inline-block;
  background: linear-gradient(135deg, #2c2b4f, #504e9b);
  color: white;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(44, 43, 79, 0.3);
  margin: 15px 0;
}

.cta-button-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(44, 43, 79, 0.4);
}

/* Bonus Highlight Box */
.bonus-highlight {
  background: linear-gradient(135deg, rgba(255,143,0,0.1), rgba(255,106,0,0.1));
  border-left: 4px solid #ff8f00;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.bonus-highlight h3 {
  color: #ff8f00;
  margin-top: 0;
}

/* Responsible Gaming Section */
.responsible-gaming {
  background-color: rgba(44, 43, 79, 0.05);
  padding: 15px 20px;
  border-radius: 8px;
  margin: 30px 0;
  border-left: 4px solid #2c2b4f;
}

.responsible-gaming h3 {
  color: #2c2b4f;
  margin-top: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 15px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  
  .card-section {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }
  
  h2 {
    font-size: 20px;
  }
  
  .card-section {
    padding: 15px;
  }
  
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .casino-comparison th,
  .casino-comparison td {
    padding: 8px 10px;
    font-size: 14px;
  }
}