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

html, body {
  height: 100%;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

/* Designer Background Elements */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 20% 20%, rgba(255,105,180,0.15), transparent 40%), 
              radial-gradient(circle at 80% 80%, rgba(30,144,255,0.15), transparent 40%);
  z-index: -1;
  pointer-events: none;
}

/* Additional Decorative Elements */
body::after {
  content: "";
  position: fixed;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,140,0,0.2), transparent 70%);
  border-radius: 50%;
  z-index: -2;
  pointer-events: none;
}

.decorative-svg {
  position: fixed;
  top: 20%;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(70,130,180,0.2), transparent 70%);
  transform: rotate(45deg);
  z-index: -3;
  pointer-events: none;
  border-radius: 50%;
}

/* Header Styles */
header {
  background-color: #000;
  padding: 10px 0;
  width: 100%;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.site-title {
  font-size: 32px;
  font-weight: bold;
  padding: 0 20px;
}

.site-title2{
  color: #fff;
  font-size: 30px;
}

/* Main Content */
main {
  flex: 1;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
  width: 100%;
}

.block {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.footer__link{
  color: #fff;
  text-decoration: none;
}

.footer__link:hover{
  color: aqua;
}

.logo__link{
  text-decoration: none;
}

.intro-section h1,
.info-section h2,
.games-section h2,
.promo-section h2,
.faq-section h2 {
  text-align: center;
  margin-bottom: 15px;
}

.intro-section p,
.info-section p,
.promo-section p {
  text-align: center;
  margin-bottom: 20px;
}

.image-container {
  position: relative;
  text-align: center;
}

.intro-section .image-container img,
.promo-section .image-container img {
  width: 50%;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.image-container .btn {
  margin-top: 15px;
}

/* Button Styles */
.btn {
  border: none;
  padding: 10px 20px;
  color: #fff;
  background-color: #FF8C00;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  animation: pulse 2s infinite;
  outline: none;
}

.btn:hover {
  background-color: #808080;
}

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

/* Games Section */
.games-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.game-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 15px;
  width: calc(33.333% - 20px);
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.game-card h3 {
  margin: 10px 0;
}

.game-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* FAQ Section */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.faq-question {
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-right: 20px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  display: none;
  margin-top: 10px;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  width: 100%;
}

.play-btn{
  margin: 15px auto;
  display: block;
}

.block h3{
  text-align: center;
  margin-bottom: 15px;
}

.block p{
  margin-bottom: 15px !important;
  text-align: left !important;
}

.table-wrap{
  overflow-x: auto;
  margin: 15px 0;
}

.table-wrap table{
  width: 100%;
  border-collapse: collapse;
}

.table-wrap td{
  padding: 10px;
  border: 2px solid #000;
}

.block ul,
.block ol{
  padding-left: 20px;
  margin: 15px 0;
}

.content__img{
  max-width: 600px;
  height: auto;
  width: 100%;
  display: block;
  margin: 15px auto;
  object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .game-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .game-card {
    width: 100%;
  }
}