.thumbnail-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 0 auto;
}

.post-preview {
  background-color: #f9f7f2;
  border-radius: 8px;
  padding: 15px;
}

.post-title {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 8px;
}

.post-excerpt {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.read-more {
  display: inline-block;
  font-size: 0.95rem;
  color: #e74c3c;
  text-decoration: none;
  font-weight: 500;
}

.read-more:hover {
  text-decoration: underline;
}

.social-list {
  list-style: none;
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.social-icon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon:hover img {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

p, ul, ol {
  margin-bottom: 1.25em;
}

.site-footer {
  background-color: transparent;
  text-align: center;
  padding: 20px 0;
  color: #666;
  font-size: 0.9rem;
}

.map-description {
  text-align: center;
  padding: 15px;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4;
  background-color: #fff;
}

.site-footer p {
  font-style: italic;
}

.post-image {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  margin: 1.25em auto;
  border-radius: 8px;
}

.pv-breadcrumb-nav {
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left; 
}

.pv-breadcrumb-nav .pv-nav-link {
  display: inline-block;
  font-size: 0.9rem;
  color: #e74c3c !important; 
  text-decoration: none;
  font-weight: 500;
  font-family: 'Libre Franklin', sans-serif;
}

.pv-breadcrumb-nav .pv-nav-link:hover {
  text-decoration: underline;
}

.pv-nav-split {
  margin: 0 12px;
  color: #ddd;
  font-size: 0.9rem;
}

.pv-nav-line {
  border: 0;
  border-top: 1px solid #eee;
  margin: 15px 0 20px 0;
  width: 100%;
}
/* =========================================
   GAMBLING MARKET STYLES
   ========================================= */

/* Grid and Cards */
.market-grid { display: grid; gap: 20px; margin-top: 20px; }
.event-card { 
  background: #f9f7f2; padding: 20px; border-radius: 8px; 
  border-left: 5px solid #e74c3c;
}

/* Banner */
.balance-banner { 
  background: #2c3e50; color: white; padding: 10px; 
  border-radius: 8px; text-align: center; margin-bottom: 20px;
}
.payout { font-weight: bold; color: #e74c3c; }

/* Login Overlay */
.login-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.9); display: flex; justify-content: center;
  align-items: center; z-index: 1000;
}
.login-box {
  background: #f9f7f2; padding: 40px; border-radius: 8px; text-align: center;
  border-top: 5px solid #e74c3c; color: #2c3e50;
}
.hidden { display: none !important; }
.logout-btn { 
  float: right; color: #e74c3c; cursor: pointer; 
  text-decoration: underline; font-size: 0.8em; 
}

/* Beautiful Inputs & Buttons */
.bet-input {
  padding: 10px; border: 2px solid #ccc; border-radius: 6px;
  font-size: 16px; width: 130px; outline: none; transition: border 0.3s;
  font-family: inherit;
}
.bet-input:focus { border-color: #e74c3c; }

.bet-button {
  padding: 10px 20px; background-color: #e74c3c; color: white;
  border: none; border-radius: 6px; font-size: 16px; font-weight: bold;
  cursor: pointer; transition: background 0.3s; margin-left: 10px;
}
.bet-button:hover { background-color: #c0392b; transform: translateY(-1px); }

/* Toast Notifications */
.toast {
  visibility: hidden; min-width: 250px; background-color: #2c3e50; 
  color: #fff; text-align: center; border-radius: 8px; padding: 16px; 
  position: fixed; z-index: 1001; left: 50%; bottom: 20px; 
  transform: translateX(-50%); font-size: 16px; box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
  opacity: 0; transition: opacity 0.3s, bottom 0.3s; font-weight: bold;
}
.toast.show { visibility: visible; opacity: 1; bottom: 40px; }
.toast.error { background-color: #e74c3c; }
