body {
  background: url("7456.jpg") repeat;
  margin: 0;
  padding: 0;
  min-height: 300vh;
}
.page-title {
  color: rgb(254, 0, 0);
  font-family: 'Coffee At Midnight', cursive;
  font-size: 5rem;          /* BIG title */
  text-align: center;       /* center aligned */
  margin: 40px 0;
  letter-spacing: 4px;
  -webkit-text-stroke: 2px rgb(158, 36, 36);
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  margin: 30px 0;
  border-radius: 10px; 
  min-height: 400px;
}

.section h2 {
  color: rgb(254, 0, 0);
  font-family: 'Coffee At Midnight', cursive;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.poker-tables-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 40px;
}

.poker-table {
  background: linear-gradient(135deg, #0f5132 0%, #1a7f4f 100%);
  border: 8px solid #d4af37;
  border-radius: 20px;
  padding: 60px 80px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: normal;
  color: #d4af37;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
  min-width: 500px;
  font-family: Arial, sans-serif;
  line-height: 1.8;
  position: relative;
}


.bottom-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.home-link {
  color: rgb(254, 0, 0);
  font-family: 'Coffee At Midnight', cursive;
  font-size: 3rem;
  text-decoration: none;
  -webkit-text-stroke: 2px rgb(158, 36, 36);
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
  letter-spacing: 4px;
  transition: transform 0.2s ease;
}

.home-link:hover {
  transform: scale(1.1);
}

/* Red Carpet Sides */
.red-carpet {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 150px;
  background: #DC143C;
  z-index: 1;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.red-carpet-left {
  left: 0;
}

.red-carpet-right {
  right: 0;
}

.red-text {
  color: #DC143C;
}
