body {
  font-family: "DynaPuff", system-ui;
  font-optical-sizing: auto;
  font-style: normal;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-attachment: fixed;
  color: white;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
  margin: auto;
  width: 100% !important;
  height: 100% !important;
}
/* Animated background particles */
.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  width: 120px;
  height: 120px;
  left: 20%;
  animation-delay: -2s;
}
.particle:nth-child(3) {
  width: 100px;
  height: 100px;
  left: 35%;
  animation-delay: -4s;
}
.particle:nth-child(4) {
  width: 60px;
  height: 60px;
  left: 50%;
  animation-delay: -1s;
}
.particle:nth-child(5) {
  width: 90px;
  height: 90px;
  left: 70%;
  animation-delay: -3s;
}
.particle:nth-child(6) {
  width: 110px;
  height: 110px;
  left: 85%;
  animation-delay: -5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  50% {
    transform: translateY(-10vh) rotate(180deg);
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 2px 50px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  z-index: 100;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 20px;
}

.logo img {
  width: 160px;
  height: 100px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a,
.bottom-nav-menu a {
  color: #64ffda;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.bottom-nav-menu {
  padding: 0;
}

.nav-menu a:hover {
  color: #64ffda;
  text-shadow: 0 0 10px #ff6b6b;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #64ffda;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #64ffda;
  margin: 4px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .logo img {
    width: 130px;
    height: 80px;
  }
  .nav-menu {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.804);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    display: none;
  }

  .nav-menu.show {
    display: flex;
  }
}
.search-box {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 25px;
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  height: 30px;
  margin: 0;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  padding: 5px;
}

.search-box span {
  font-size: 18px;
  margin-left: 8px;
}

.game-card.highlight {
  outline: 3px solid #E9D8A6;
  border-radius: 12px;
  animation: glow 0.6s ease-in-out;
}

@keyframes glow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

mark {
  background-color: yellow;
  color: black;
  padding: 0 2px;
  border-radius: 3px;
}

.search-box {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 25px;
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

@media (max-width: 1020px) {
    .search-box {
        display: none;
    }
    header {
        justify-content: space-between;
        padding: 10px 20px;
    }
    
}
.search-box:focus-within {
  border-color: #94D2BD;
}

.search-box input {
  border: none;
  background: none;
  outline: none;
  padding: 0.3rem;
  width: 250px;
}

/* Main content */
main {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 1200px) {
  main {
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 1260px) {
  .wtskora_side_rail_right,
  .wtskora_side_rail_left {
    display: none;
  }
}
.cta-button {
  font-family: "DynaPuff", system-ui;
  font-optical-sizing: auto;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Game categories section */
.game-categories {
  padding: 50px;
  background: rgba(0, 0, 0, 0.1);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 30px 0;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
  }
  to {
    text-shadow: 0 0 30px rgba(78, 205, 196, 0.8);
  }
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.category-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.category-card:hover::before {
  animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
  0% {
    transform: rotate(45deg) translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) translateX(100%);
    opacity: 0;
  }
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.category-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #4ecdc4;
}

.category-card p {
  opacity: 0.8;
  line-height: 1.6;
}

/* Featured games section */
.grid-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 40px;
  justify-content: center;
  align-items: end;
  justify-items: center;
  align-content: space-between;
}
.game-items {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  height: 80px;
  width: 120px;
  border-radius: 12px;
  box-shadow: 2px 2px 2px #0000003d;
  background-color: #c5c5c5a8;
  position: relative;
}
.game-item-big {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  height: 180px;
  width: 250px;
  border-radius: 12px;
  box-shadow: 2px 2px 2px #0000003d;
  background-color: #c5c5c5a8;
  position: relative;
}
.game-image {
  position: absolute;
  border-radius: 12px;
}
.game-image-big {
  position: absolute;
  border-radius: 12px;
}
.game-item-big {
  grid-column: span 2;
  grid-row: span 2;
}
.game-name {
  position: relative;
  opacity: 0;
}
.game-image-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.089),
    rgba(0, 0, 0, 0.66)
  );
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #f2f2f2;
}
h5 {
  font-size: 0.6rem;
  color: #fff;
  margin-bottom: 2px;
}
.game-image-cta {
  font-family: "DynaPuff", system-ui;
  font-optical-sizing: auto;
  width: 80%;
  height: 30px;
  background-color: #e40000;
  color: #fff;
  border-radius: 10px;
  border: 2px solid #fff;
  font-size: 0.7rem;
  margin-bottom: 10px;
  cursor: pointer;
}
.game-items:hover .game-image-overlay {
  opacity: 1;
}
.game-item-big:hover .game-image-overlay {
  opacity: 1;
}
.game-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.game-info h4 {
  margin-bottom: 10px;
  color: #4ecdc4;
}

.game-info p {
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.play-button {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border: none;
  padding: 10px 20px;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.play-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(10px);
}
footer p {
  font-size: 1rem;
  margin-top: 20px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.content-pages {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.content-pages h4 {
  font-size: 1rem;
  margin: 15px 0;
}
.bottom-logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.bottom-logo img {
  width: 80px;
  height: 50px;
}
.bottom-logo p {
  font-size: 0.8rem;
  text-align: start;
  margin-top: 10px;
  max-width: 500px;
}
.bottom-nav-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  font-size: 0.8rem;
}
.footer-contact {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-contact form {
  display: flex;
}
.footer-contact h3 {
  margin: 20px 0;
  font-size: 1rem;
  color: #ff6b6b;
}

.footer-contact input,
.footer-contact textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.footer-contact button {
  padding: 10px;
  width: 200px;
  background-color: #4ecdc4;
  color: #121212;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-left: 10px;
}

.footer-contact button:hover {
  background-color: #20baaf;
}
/* Responsive design */
@media (max-width: 1025px) {
  .main-container {
    display: block;
  }
  .bottom-logo p {
    max-width: 100% !important;
  }
  .footer-content {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }
  .bottom-nav-menu {
    margin-top: 20px;
    justify-content: flex-start;
  }
  .footer-contact {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  .nav-links {
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2.6rem;
  }

  .category-icon {
    font-size: 2rem;
  }

  .category-card h3 {
    font-size: 0.8rem;
  }
}
@media (max-width: 451px) {
  .grid-items {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)) !important;
    gap: 10px;
  }
  .game-items {
    width: 100px !important;
    height: 60px !important;
  }
  .game-image {
    width: 100px !important;
    height: 60px !important;
  }
  .game-item-big {
    width: 210px !important;
    height: 140px !important;
  }
  .game-image-big {
    width: 210px !important;
    height: 140px !important;
  }
  .game-image-cta {
    height: 20px;
    font-size: 0.6rem;
  }
  h5 {
    font-size: 0.6rem;
  }
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}
@media (max-width: 375px) {
  .grid-items {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)) !important;
    gap: 1px;
  }
  .game-items {
    width: 90px !important;
    height: 60px !important;
  }
  .game-image {
    width: 90px !important;
    height: 60px !important;
  }
  .game-item-big {
    width: 180px !important;
    height: 120px !important;
  }
  .game-image-big {
    width: 180px !important;
    height: 120px !important;
  }
  .section-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 375px) {
  .grid-items {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)) !important;
    gap: 1px;
  }
  .game-items {
    width: 80px !important;
    height: 50px !important;
  }
  .game-image {
    width: 80px !important;
    height: 50px !important;
  }
  .game-item-big {
    width: 170px !important;
    height: 100px !important;
  }
  .game-image-big {
    width: 170px !important;
    height: 100px !important;
  }
  .section-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 352px) {
  .grid-items {
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr)) !important;
    gap: 1px;
  }
  .game-items {
    width: 70px !important;
    height: 40px !important;
  }
  .game-image {
    width: 70px !important;
    height: 40px !important;
  }
  .game-item-big {
    width: 150px !important;
    height: 80px !important;
  }
  .game-image-big {
    width: 150px !important;
    height: 80px !important;
  }
}
/* Loading animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading.hide {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* .container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: start;
}
.affiliateBg img {
  width: 100%;
}
.mb-3 {
  margin-bottom: 20px;
} */

.contentPage-main {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contentPage-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: start;
}
.affiliateBg img {
  width: 100%;
}
.mb-3 {
  margin-bottom: 20px;
}
.mb-3 a {
  color: #538bff;
}

a {
  text-decoration: none;
}
.wtskora_banner_top,
.wtskora_banner_mid,
.wtskora_banner_bottom {
  display: flex;
  width: 100% !important;
  height: auto !important;
  justify-content: center;
  align-items: center;
}
.wtskora_side_rail_left,
.wtskora_side_rail_right {
  width: 100%;
  height: auto !important;
  padding: 20px;
}
/* 
#div-gpt-ad-1750345917434-0 {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  width: 100% !important;
  height: auto !important;
  overflow: scroll;
}
.playpage-banner {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  overflow: scroll;
  margin: 20px 0;
} */
/* .google-auto-placed {
  min-height: 250px;
  background: rgba(255, 255, 255, 0.1);
}
ins.adsbygoogle a {
    display: none !important;
}
ins.adsbygoogle[data-ad-status="unfilled"] a {
    display: block;
}  */
