/* Jilissa Click CSS Styles */
:root {
  --primary-color: #FF7F50;
  --secondary-color: #999999;
  --dark-color: #2C3E50;
  --text-light: #ffffff;
  --text-muted: #cccccc;
  --bg-light: #f5f5f5;
  --bg-dark: #1a1a1a;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --radius: 8px;
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: var(--bg-light);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--dark-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  transition: var(--transition);
}

/* Container */
.w68f5-container {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.w68f5-header {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  color: var(--text-light);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.w68f5-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.w68f5-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-light);
  text-decoration: none;
}

.w68f5-header-buttons {
  display: flex;
  gap: 10px;
}

.w68f5-btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  min-width: 44px;
  min-height: 44px;
}

.w68f5-btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid transparent;
}

.w68f5-btn-primary:hover {
  background-color: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}

.w68f5-btn-outline {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.w68f5-btn-outline:hover {
  background-color: var(--text-light);
  color: var(--dark-color);
}

.w68f5-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: none;
}

.w68f5-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-light);
  margin: 3px 0;
  transition: var(--transition);
}

/* Main Content */
main {
  margin-top: 70px;
}

@media (max-width: 768px) {
  main {
    padding-bottom: 80px;
  }
}

/* Carousel */
.w68f5-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.w68f5-carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.w68f5-carousel-slide {
  min-width: 100%;
  position: relative;
  cursor: pointer;
}

.w68f5-carousel-slide img {
  width: 100%;
  height: auto;
}

.w68f5-carousel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--text-light);
}

.w68f5-carousel-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.w68f5-carousel-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.w68f5-carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.w68f5-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.w68f5-carousel-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Game Sections */
.w68f5-section {
  margin-bottom: 40px;
}

.w68f5-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.w68f5-section-title {
  font-size: 1.5rem;
  color: var(--dark-color);
}

.w68f5-section-more {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.w68f5-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

@media (max-width: 375px) {
  .w68f5-game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.w68f5-game-card {
  background: var(--text-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.w68f5-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.w68f5-game-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.w68f5-game-info {
  padding: 10px;
}

.w68f5-game-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-color);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.w68f5-game-category {
  font-size: 0.75rem;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.w68f5-game-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
}

/* Content Modules */
.w68f5-module {
  background: var(--text-light);
  border-radius: var(--radius);
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.w68f5-module-title {
  font-size: 1.25rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.w68f5-module-content p {
  color: #555;
  line-height: 1.7;
}

.w68f5-module-list {
  list-style: none;
  margin-left: 0;
}

.w68f5-module-list li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 20px;
}

.w68f5-module-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Footer */
.w68f5-footer {
  background-color: var(--dark-color);
  color: var(--text-light);
  padding: 40px 0 20px;
  margin-top: 50px;
}

.w68f5-footer-section {
  margin-bottom: 30px;
}

.w68f5-footer-title {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.w68f5-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.w68f5-footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.w68f5-footer-links a:hover {
  color: var(--primary-color);
}

.w68f5-partners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.w68f5-partner-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.w68f5-footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Bottom Navigation */
.w68f5-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-light);
  border-top: 1px solid var(--border-color);
  z-index: 1000;
  padding: 8px 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

@media (min-width: 769px) {
  .w68f5-bottom-nav {
    display: none;
  }
}

.w68f5-bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 430px;
  margin: 0 auto;
}

.w68f5-bottom-nav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  min-height: 60px;
  padding: 8px;
  color: var(--secondary-color);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.w68f5-bottom-nav button:hover,
.w68f5-bottom-nav button.active {
  color: var(--primary-color);
  background-color: rgba(255, 127, 80, 0.1);
}

.w68f5-bottom-nav-icon {
  font-size: 24px;
  margin-bottom: 4px;
}

.w68f5-bottom-nav-label {
  font-size: 0.7rem;
  font-weight: 500;
}

/* Scroll to Top */
.w68f5-scroll-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 44px;
  height: 44px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.w68f5-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.w68f5-scroll-top:hover {
  background-color: var(--dark-color);
}

/* Mobile Menu */
#w68f5-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--text-light);
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

#w68f5-mobile-menu.active {
  right: 0;
}

#w68f5-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

#w68f5-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.w68f5-mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.w68f5-mobile-menu-close {
  font-size: 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
}

.w68f5-mobile-menu-list {
  list-style: none;
}

.w68f5-mobile-menu-list li {
  margin-bottom: 15px;
}

.w68f5-mobile-menu-list a {
  display: block;
  padding: 12px 0;
  color: var(--dark-color);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
}

.w68f5-mobile-menu-list a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

/* FAQ Page Styles */
.w68f5-faq-item {
  background: var(--text-light);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: var(--shadow);
}

.w68f5-faq-question {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.w68f5-faq-answer {
  color: #555;
  line-height: 1.7;
}

.w68f5-faq-icon {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Features Page Styles */
.w68f5-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.w68f5-feature-card {
  background: var(--text-light);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.w68f5-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.w68f5-feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.w68f5-feature-title {
  font-size: 1.1rem;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.w68f5-feature-description {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (min-width: 769px) {
  .w68f5-container {
    max-width: 1200px;
    padding: 0 20px;
  }

  main {
    padding-bottom: 0;
  }

  .w68f5-game-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .w68f5-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .w68f5-partners {
    grid-template-columns: repeat(10, 1fr);
  }

  .w68f5-menu-toggle {
    display: none;
  }

  .w68f5-desktop-nav {
    display: flex;
    list-style: none;
    gap: 30px;
  }

  .w68f5-desktop-nav a {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
  }

  .w68f5-desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--text-light);
    transition: width 0.3s ease;
  }

  .w68f5-desktop-nav a:hover::after {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .w68f5-desktop-nav {
    display: none;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .w68f5-module {
    padding: 20px;
  }

  .w68f5-partners {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Utility Classes */
.w68f5-text-center {
  text-align: center;
}

.w68f5-mt-20 {
  margin-top: 20px;
}

.w68f5-mb-20 {
  margin-bottom: 20px;
}

.w68f5-hidden {
  display: none !important;
}

.w68f5-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}