/* Reviewstero Custom Styles - Casino Review Theme */
:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --background: #f8f9fa;
  --card-bg: #ffffff;
  --text: #2c3e50;
  --text-muted: #6c757d;
  --border: #e9ecef;
  --success: #28a745;
  --warning: #ffc107;
  --error: #dc3545;
  --reviewstero-bg: #f8f9fa;
  --reviewstero-bg-light: #ffffff;
  --reviewstero-white: #fff;
  --reviewstero-green: #28a745;
  --casino-card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --casino-card-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
}

h1, .reviewstero-banner-title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

h2, .reviewstero-section-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: -0.3px;
  text-align: center;
  color: var(--primary);
}

h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

h5 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

h6 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

.reviewstero-banner-desc, .reviewstero-section-title, .reviewstero-feature-desc, .reviewstero-banner-cta {
  font-size: 2.4rem;
}

/* Banner Section */
.reviewstero-banner {
  min-height: 500px;
  background: linear-gradient(135deg, var(--primary) 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 60px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.reviewstero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.reviewstero-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.reviewstero-banner-left {
  flex: 1 1 500px;
  min-width: 300px;
  padding-left: 20px;
}

.reviewstero-banner-right {
  flex: 1 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewstero-banner-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.reviewstero-banner-highlight {
  color: var(--accent);
}

.reviewstero-banner-desc {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.reviewstero-banner-cta {
  font-size: 1.4rem;
  padding: 18px 45px;
  border-radius: 50px;
  background: var(--accent);
  color: white;
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.reviewstero-banner-cta:hover {
  background: #d63384;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
  color: white;
  text-decoration: none;
}

.reviewstero-banner-img {
  width: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Casino Cards Grid */
.reviewstero-casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.reviewstero-casino-card {
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: var(--casino-card-shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.reviewstero-casino-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--casino-card-hover);
}

.reviewstero-casino-header {
  background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
  color: white;
  padding: 25px;
  position: relative;
}

.reviewstero-casino-logo {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 15px;
}

.reviewstero-casino-name {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.reviewstero-casino-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.reviewstero-rating-stars {
  color: #ffc107;
  font-size: 1.6rem;
}

.reviewstero-rating-score {
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.2rem;
}

.reviewstero-casino-bonus {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid var(--accent);
}

.reviewstero-bonus-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.reviewstero-bonus-desc {
  font-size: 1.2rem;
  opacity: 0.9;
}

.reviewstero-casino-body {
  padding: 25px;
}

.reviewstero-casino-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.reviewstero-casino-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewstero-casino-features li:last-child {
  border-bottom: none;
}

.reviewstero-feature-icon {
  color: var(--success);
  font-size: 1.3rem;
}

.reviewstero-casino-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.reviewstero-payment-method {
  background: var(--background);
  padding: 8px 16px;
  border-radius: 15px;
  font-size: 1.1rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.reviewstero-play-button {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
}

.reviewstero-play-button:hover {
  background: #d63384;
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

/* Features Section */
.reviewstero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.reviewstero-feature-card {
  background: var(--card-bg);
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--casino-card-shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.reviewstero-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--casino-card-hover);
}

.reviewstero-feature-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.reviewstero-feature-title {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.reviewstero-feature-desc {
  color: var(--text-muted);
  font-size: 1.3rem;
  line-height: 1.6;
}

/* Section Styling */
.reviewstero-section {
  padding: 80px 0;
}

.reviewstero-section-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 50px;
}

.reviewstero-howitworks-list,
.reviewstero-ideas-list {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text);
  padding-left: 1.2em;
}

/* Game Placeholder */
.reviewstero-game-placeholder {
  min-height: 400px;
  background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
  color: var(--reviewstero-white);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--casino-card-shadow);
  position: relative;
  overflow: hidden;
}

.reviewstero-game-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="game-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23game-pattern)"/></svg>');
}

/* Footer */
.reviewstero-footer {
  background: var(--primary);
  color: var(--reviewstero-white) !important;
  padding: 50px 0 30px;
}

.reviewstero-footer a {
  color: white;
  text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .reviewstero-banner {
    padding: 60px 20px 40px;
  }
  
  .reviewstero-banner-title {
    font-size: 2rem;
  }
  
  .reviewstero-banner-desc {
    font-size: 1.1rem;
  }
  
  .reviewstero-banner-inner {
    flex-direction: column;
    gap: 40px;
  }
  
  .reviewstero-banner-img {
    width: 90vw;
    max-width: 350px;
  }
  
  .reviewstero-casino-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .reviewstero-features {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .reviewstero-section {
    padding: 60px 0;
  }
  
  h1, .reviewstero-banner-title {
    font-size: 1.8rem;
  }
  
  h2, .reviewstero-section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .reviewstero-banner-title {
    font-size: 1.6rem;
  }
  
  .reviewstero-banner-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
  
  .reviewstero-casino-card {
    margin: 0 10px;
  }
}

/* Navigation */
.reviewstero-navbar-pill {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.reviewstero-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
}

.reviewstero-navbar-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewstero-navbar-home-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
}

.reviewstero-navbar-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.reviewstero-navbar-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.reviewstero-navbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.reviewstero-nav-link-pill {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.reviewstero-nav-link-pill.active,
.reviewstero-nav-link-pill:focus,
.reviewstero-nav-link-pill:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.reviewstero-nav-link-cta {
  background: var(--accent);
  color: white !important;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
}

.reviewstero-nav-link-cta:hover {
  background: #d63384;
  transform: translateY(-2px);
}

/* Hamburger menu always visible and styled on mobile */
.reviewstero-navbar-toggle {
  display: block !important;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 2001;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.reviewstero-navbar-toggle-bar {
  width: 28px;
  height: 4px;
  background: var(--accent);
  margin: 6px 0;
  border-radius: 2px;
  display: block;
  transition: 0.3s;
}
@media (min-width: 769px) {
  .reviewstero-navbar-toggle {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .reviewstero-navbar-right {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .reviewstero-navbar-right.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .reviewstero-nav-link-pill {
    padding: 15px 20px;
    width: 100%;
    text-align: center;
  }
}

/* Utility Classes */
.reviewstero-badge {
  background: var(--accent);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.reviewstero-text-center {
  text-align: center;
}

.reviewstero-mb-4 {
  margin-bottom: 2rem;
}

.reviewstero-mt-4 {
  margin-top: 2rem;
}

/* Game iframe styling */
.reviewstero-game-iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 15px;
  box-shadow: var(--casino-card-shadow);
}

.reviewstero-game-placeholder-clean {
  min-height: 400px;
  background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

/* Contact form styling */
.reviewstero-contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Map iframe */
.reviewstero-map-iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 15px;
}

/* About page specific */
.reviewstero-about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.reviewstero-about-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Ideas page specific */
.reviewstero-ideas-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  font-size: 1.5rem;
}

.reviewstero-idea-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--casino-card-shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.reviewstero-idea-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--casino-card-hover);
}

.reviewstero-idea-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
}

.reviewstero-idea-desc {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Page card styling */
.reviewstero-page-card {
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: var(--casino-card-shadow);
  padding: 40px;
  margin: 40px auto;
  max-width: 800px;
  border: 1px solid var(--border);
}

/* GDPR and Age popup styling */
.reviewstero-age-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.reviewstero-age-popup-content {
  background: var(--reviewstero-white);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
  margin: 20px;
}

.reviewstero-age-popup.d-none {
  display: none;
}

/* GDPR Cookie Consent Popup */
#reviewstero-gdpr-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--card-bg);
  color: var(--text);
  border-radius: 15px;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  max-width: 600px;
  margin: 0 auto;
}

#reviewstero-gdpr-popup.hide {
  display: none;
}

.reviewstero-gdpr-content {
  padding: 25px;
}

.reviewstero-gdpr-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.reviewstero-gdpr-header h4 {
  margin: 0;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
}

.reviewstero-gdpr-header h4 i {
  margin-right: 8px;
  color: var(--accent);
}

.reviewstero-gdpr-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.reviewstero-gdpr-close:hover {
  background: var(--border);
  color: var(--text);
}

.reviewstero-gdpr-body {
  margin-bottom: 20px;
}

.reviewstero-gdpr-body p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--text);
}

.reviewstero-gdpr-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.reviewstero-gdpr-list li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: var(--text);
}

.reviewstero-gdpr-list li i {
  color: var(--accent);
  margin-right: 10px;
  font-size: 0.9rem;
}

.reviewstero-gdpr-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.reviewstero-gdpr-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1.3rem;
}

.reviewstero-gdpr-btn[data-action="accept"] {
  background: var(--accent);
  color: white;
}

.reviewstero-gdpr-btn[data-action="accept"]:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.reviewstero-gdpr-btn[data-action="reject"] {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.reviewstero-gdpr-btn[data-action="reject"]:hover {
  background: var(--border);
  color: var(--text);
}

/* Mobile responsive */
@media (max-width: 768px) {
  #reviewstero-gdpr-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .reviewstero-gdpr-content {
    padding: 20px;
  }
  
  .reviewstero-gdpr-footer {
    flex-direction: column;
  }
  
  .reviewstero-gdpr-btn {
    width: 100%;
    margin-bottom: 10px;
  }
} 

@media (max-width: 768px) {
  .reviewstero-banner-inner {
    flex-direction: column;
    margin-top: 50px;
    gap: 30px;
    padding: 0;
  }

  .reviewstero-banner-right {
    display: none;
  }
  .reviewstero-banner-left {
    min-width: 0;
    padding: 0;
    width: 100%;
  }
  .reviewstero-banner-left {
    max-height: 200px;
    overflow: hidden;
    padding: 0;
    margin: 0;
  }
  .reviewstero-logo-bg {
    min-height: 220px;
    padding: 20px;
    border-radius: 16px;
  }
  .reviewstero-banner {
    min-height: 320px;
    padding: 30px 10px 20px 10px;
  }
  .reviewstero-banner-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  .reviewstero-banner-desc {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
  .reviewstero-banner-cta {
    font-size: 1rem;
    padding: 12px 24px;
  }
  .reviewstero-navbar-toggle {
    display: block !important;
  }
  .reviewstero-navbar-right {
    top: 56px;
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .reviewstero-logo-bg img {
    width: 60vw !important;
    max-width: 320px;
  }
  .reviewstero-logo-bg {
    min-height: 120px;
    padding: 8px;
  }
  .reviewstero-banner-title {
    font-size: 1.3rem;
  }
} 

/* Utility for logo image */
.reviewstero-logo-img {
  width: 400px;
  border-radius: 15px;
}

/* Banner min-height utility */
.reviewstero-banner-minheight {
  min-height: 400px;
}

/* Section background utility */
.reviewstero-section-bg {
  background-color: var(--background);
}

/* Casino logo gradients */
.reviewstero-casino-logo-bf {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}
.reviewstero-casino-logo-ub {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}
.reviewstero-casino-logo-mb {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}
.reviewstero-casino-logo-wb {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
} 