
.navbar-custom {
    background-color: #FE5D26;
}

.navbar-brand {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-brand img {
  height: 45px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  border-radius: 10px;
}

.navbar-brand:hover {
    color: #fff;
}

.nav-buttons .btn {
    font-weight: 600;
    padding: 0.4rem 1rem;
}

.btn-register {
    background-color: #FAEDCA;
    color: #537D5D;
}

.btn-register:hover {
    background-color: #fff5da;
}

.btn-login {
    border: 2px solid white;
    color: white;
}

.btn-login:hover {
    background-color: #ffffff20;
}

.section-title {
  color: #537D5D;
  font-weight: 700;
  margin-bottom: 3rem;
}

.circle-card {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #FE5D26, #E69DB8);
  border-radius: 50%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #FAEDCA;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
}

.circle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.circle-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
.arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow {
  font-size: 2.5rem;
  color: #537D5D;
  opacity: 0.7;
  transform: translateY(-10%);
}

/* Responsive Fixes */
@media (max-width: 767.98px) {
  .arrow-wrap {
    display: none !important;
  }
}

/* Winner Card */
.winner-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.winner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Prize Amount Badge */
.prize-amount {
  display: inline-block;
  background-color: #FE5D26;
  color: #fff;
  padding: 0.5rem 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.prize-amount.alt {
  background-color: #E69DB8;
}

.prize-amount.dark {
  background-color: #537D5D;
  color: #FAEDCA;
}


.winner-name {
  color: #537D5D;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.ticket-number {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.win-date {
  color: #888;
  font-size: 0.9rem;
}

/* Card Base */
.review-card {
  background: linear-gradient(to bottom right, #fff, #fff7f0);
  border: 3px solid #FE5D26;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Stars */
.stars {
  color: #FE5D26;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

/* Review Text */
.review-text {
  color: #444;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1.2rem;
}

/* Author */
.review-author {
  font-weight: 700;
  color: #537D5D;
}

.tactics-box {
  background-color: #FE5D26;
  border: 2px solid #FAEDCA;
  color: #fff;
  font-size: 1rem;
  line-height: 1.7;
}

.tactics-list li {
  margin-bottom: 1rem;
  color: #fff;
}
.stylish-footer {
  background-color: #FAEDCA;
  font-size: 0.95rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  color: #537D5D;
}

.text-footer a {
  color: #FE5D26;
  text-decoration: underline;
  transition: color 0.3s;
}

.text-footer a:hover {
  color: #E69DB8;
  text-decoration: none;
}

.footer-link {
  color: #FE5D26;
  margin-left: 10px;
  margin-right: 10px;
  text-decoration: none;
  font-weight: 500;
}