/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  padding-bottom: 80px; /* Space for registration widget */
}

/* Header */
.header-section {
  background: #ffffff; /* changed header background to white */
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 0;
}

.navbar-brand {
  background: linear-gradient(135deg, #007bff, #0056b3); /* changed navbar brand to look like proper buttons */
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
}

.navbar-brand:hover {
  background: linear-gradient(135deg, #0056b3, #007bff);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.logo {
  max-height: 50px;
  border-radius: 8px;
}

/* Hero Section */
.hero-section {
  background: #000000; /* changed hero background to black */
  padding: 60px 0;
  color: white;
  text-align: center;
}

.hero-image {
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: translateY(-5px);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 30px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-play {
  background: linear-gradient(135deg, #00b050, #28a745);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 176, 80, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-play:hover {
  background: linear-gradient(135deg, #28a745, #00b050);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 176, 80, 0.6);
}

/* Main Content */
.main-content {
  padding: 60px 0;
}

.content-block {
  background: #ffffff;
  margin-bottom: 40px;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #00b050;
}

.content-block h2 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 2rem;
  border-bottom: 3px solid #00b050;
  padding-bottom: 10px;
}

.content-block h3 {
  color: #34495e;
  font-weight: 600;
  margin: 25px 0 15px 0;
  font-size: 1.4rem;
}

.content-block h4 {
  color: #2c3e50;
  font-weight: 600;
  margin: 20px 0 10px 0;
  font-size: 1.2rem;
}

.content-block p {
  margin-bottom: 20px;
  text-align: justify;
  line-height: 1.7;
}

.content-block ul {
  margin-bottom: 20px;
  padding-left: 25px;
}

.content-block li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Table of Contents */
.toc-block {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #00b050;
}

.toc-block ol {
  counter-reset: item;
  padding-left: 0;
}

.toc-block > ol > li {
  display: block;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-weight: 600;
  color: #2c3e50;
}

.toc-block > ol > li:before {
  content: counter(item, decimal) ".";
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
  color: #00b050;
  font-weight: 700;
  font-size: 1.1rem;
}

.toc-block ul {
  margin-top: 10px;
  padding-left: 20px;
}

.toc-block ul li {
  font-weight: 400;
  color: #495057;
  margin-bottom: 5px;
}

.toc-link,
.toc-sublink {
  color: #007bff;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.toc-link:hover,
.toc-sublink:hover {
  color: #00b050;
  text-decoration: underline;
}

.toc-link {
  font-weight: 600;
}

.toc-sublink {
  font-weight: 400;
}

/* Instruction Steps */
.instruction-steps {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #00b050;
}

.instruction-steps ol {
  counter-reset: step-counter;
  padding-left: 0;
}

.instruction-steps ol > li {
  display: block;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  line-height: 1.6;
}

.instruction-steps ol > li:before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background: #00b050;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Tip Block */
.tip-block {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #ffc107;
  margin: 20px 0;
}

.tip-block p {
  margin: 0;
  color: #856404;
}

/* Feature List */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.feature-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: #00b050;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 176, 80, 0.15);
}

.feature-item h4 {
  color: #00b050;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Games Section */
.games-section {
  margin: 30px 0;
}

.game-category {
  background: #ffffff;
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.game-category h4 {
  color: #00b050;
  font-size: 1.3rem;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #00b050;
}

/* Bonus Blocks */
.bonus-block {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 30px;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.bonus-block h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.bonus-block ul {
  padding-left: 20px;
}

.bonus-block li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Active Offers */
.active-offers {
  background: linear-gradient(135deg, #fd79a8, #fdcb6e);
  padding: 25px;
  border-radius: 12px;
  margin: 25px 0;
  color: #2d3436;
}

.active-offers h4 {
  color: #2d3436;
  margin-bottom: 15px;
}

/* Sports Features */
.sports-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.sport-feature {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid #e9ecef;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.sport-feature:hover {
  border-color: #00b050;
  transform: translateY(-2px);
}

.sport-feature h4 {
  color: #00b050;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Financial Blocks */
.financial-block {
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  color: white;
  padding: 30px;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 8px 25px rgba(116, 185, 255, 0.3);
}

.financial-block h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.financial-block ul {
  padding-left: 20px;
}

.financial-block li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Security Features */
.security-features ul {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #dc3545;
}

.security-features li {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 60px 0;
}

.faq-section h2 {
  text-align: center;
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 2.2rem;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  background: #ffffff;
  color: #2c3e50;
  font-weight: 600;
  border: none;
  padding: 20px 25px;
  font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
  background: #00b050;
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  background: #ffffff;
  padding: 25px;
  line-height: 1.7;
  color: #495057;
}

/* Footer */
.footer-section {
  background: #2c3e50;
  color: white;
  padding: 30px 0;
  text-align: center;
  position: relative;
  z-index: 999;
  margin-bottom: 80px; /* Space for registration widget */
}

.footer-section p {
  margin: 0;
  font-size: 1rem;
}

/* Registration Widget */
.registration-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #00b050, #28a745);
  color: #00b050;
  padding: 15px 0;
  box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  margin-bottom: 0; /* added margin to prevent overlap with footer */
}

.widget-text {
  font-weight: 600;
  font-size: 1.1rem;
}

.btn-register {
  background: #ffffff;
  color: #00b050;
  border: none;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.btn-register:hover {
  background: #f8f9fa;
  color: #28a745;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .content-block {
    padding: 25px 20px;
  }

  .content-block h2 {
    font-size: 1.6rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .sports-features {
    grid-template-columns: 1fr;
  }

  .hero-image {
    margin-bottom: 15px;
  }

  .registration-widget .row {
    text-align: center;
  }

  .registration-widget .col-md-4 {
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .btn-play {
    padding: 12px 30px;
    font-size: 1.1rem;
  }

  .content-block {
    padding: 20px 15px;
  }

  .navbar-brand {
    font-size: 0.9rem;
  }
}

/* Additional unused styles for uniqueness */
.gradient-text {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.shadow-hover {
  transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.border-gradient {
  border: 3px solid;
  border-image: linear-gradient(45deg, #667eea, #764ba2) 1;
}

.text-glow {
  text-shadow: 0 0 10px rgba(0, 176, 80, 0.5);
}

/* Unused HTML elements styles */
.unused-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.unused-button {
  background: linear-gradient(135deg, #fd79a8, #fdcb6e);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
}

.unused-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
}

.unused-table th,
.unused-table td {
  padding: 12px 15px;
  text-align: left;
  border: 2px solid #e9ecef;
}

.unused-table th {
  background: #00b050;
  color: white;
  font-weight: 600;
}

.unused-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid #e9ecef;
}

.unused-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.unused-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.unused-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
