/* Base Wrapper Spacing */

.custom-matka-forum {
  margin-bottom: 100px;
}
.custom-matka-forum .forum-main-content {
  margin-top: 20px;
}

/* 1. Forum Header Banner */
.custom-matka-forum .forum-header-banner {
  background: linear-gradient(135deg, #440057 0%, #a20070 100%);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}
.custom-matka-forum .forum-header-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}

/* 2. Top Navigation & Action Buttons Row */
.custom-matka-forum .forum-action-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.custom-matka-forum .forum-btn {
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.custom-matka-forum .btn-post-guess {
  background: linear-gradient(135deg, #5b1178 0%, #831d93 100%);
  color: #ffffff;
}
.custom-matka-forum .btn-download-app {
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: #ffffff;
}
.custom-matka-forum .forum-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.custom-matka-forum .btn-icon {
  margin-right: 8px;
}

/* 3. Guidelines & Rules Card Style */
.custom-matka-forum .rules-container-card {
  background: linear-gradient(180deg, #fffdf9 0%, #fbf0cc 100%);
  border: 1px solid #f1a10d;
  border-radius: 5px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}
.custom-matka-forum .rules-title-header {
  font-size: 1.4rem;
  font-weight: 800;
  color: #5c1178;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.custom-matka-forum .rules-body-text {
  margin-bottom: 20px;
}
.custom-matka-forum .rule-item {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #34495e;
}
.custom-matka-forum .rule-item-alert {
  font-size: 0.95rem;
  font-weight: 800;
  color: #d32f2f;
  margin: 15px 0;
}
.custom-matka-forum .rule-item-sub {
  font-size: 0.85rem;
  color: #7f8c8d;
}
.custom-matka-forum .btn-read-rules {
  background-color: #e91e63;
  color: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 10px 28px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.custom-matka-forum .btn-read-rules:hover {
  background-color: #c2185b;
}

/* 4. Forum Posts Card */
.custom-matka-forum .forum-post-card {
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid #dc3545;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

/* Card Top Bar Header */
.custom-matka-forum .post-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #ffffff;
}
.custom-matka-forum .post-author-profile {
  display: flex;
  align-items: center;
}
.custom-matka-forum .author-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.custom-matka-forum .avatar-letter {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.15rem;
}
.custom-matka-forum .online-indicator-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 11px;
  height: 11px;
  background-color: #2ecc71;
  border: 2px solid #ffffff;
  border-radius: 50%;
}
.custom-matka-forum .author-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #2c3e50;
}
.custom-matka-forum .pin-icon-badge {
  margin-left: 6px;
}
.custom-matka-forum .post-timestamp {
  display: block;
  font-size: 0.8rem;
  color: #95a5a6;
}
.custom-matka-forum .post-admin-badge {
  background: linear-gradient(95deg, #440057 20%, #a20070 100%);
  color: #ffffff;
  padding: 8px 24px;
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 30px 10px 10px 30px;
}

/* Card Interior Content Area */
.custom-matka-forum .post-body-content {
  background: #ffe6b7;
  border-left: 6px solid #f1a10d;
  padding: 10px 10px;
  text-align: center;
}
.custom-matka-forum .post-title-main {
  color: #4a154b;
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 0 6px 0;
}
.custom-matka-forum .post-subtitle-sub {
  color: #d81b60;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 20px 0;
}
.custom-matka-forum .post-paragraph-line {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 10px 0;
}

/* Card Interactive Footer Buttons */
.custom-matka-forum .post-actions-footer {
  display: flex;
  gap: 20px;
  padding: 12px 20px;
  border-top: 1px solid #f1f2f6;
  background-color: #fafbfc;
}
.custom-matka-forum .post-footer-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.92rem;
  color: #7f8c8d;
  padding: 6px 12px;
  border-radius: 6px;
  transition:
    background-color 0.2s,
    color 0.2s;
}
.custom-matka-forum .post-footer-btn:hover {
  background-color: #f1f2f6;
  color: #2c3e50;
}
.custom-matka-forum .footer-icon {
  margin-right: 6px;
  font-size: 1.05rem;
}

/* 5. Sticky Bottom Action Navbar */
.custom-matka-forum .bottom-sticky-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
}
.custom-matka-forum .bottom-nav-inner {
  max-width: 768px;
  margin: 0 auto;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.custom-matka-forum .bottom-nav-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  color: #7f8c8d;
  cursor: pointer;
  transition: color 0.2s ease;
}
.custom-matka-forum .nav-icon {
  font-size: 1.25rem;
  margin-bottom: 2px;
}
.custom-matka-forum .nav-label {
  font-size: 0.72rem;
  font-weight: 600;
}
.custom-matka-forum .active-nav
{
  color: #a20070;
}
.custom-matka-forum .bottom-nav-btn:hover {
  color: #5b1178;
}

/* 6. Floating Game Play FAB Button */
.custom-matka-forum .floating-play-fab {
  position: fixed;
  bottom: 80px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #a20070 0%, #e91e63 100%);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(162, 0, 112, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  z-index: 1001;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.custom-matka-forum .floating-play-fab:hover {
  transform: scale(1.1);
}
.custom-matka-forum .fab-top-text {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}
.custom-matka-forum .fab-bottom-text {
  font-size: 0.65rem;
  font-weight: 600;
}
