/* jilitt.css - Main stylesheet for jilitt.club */
/* All classes use prefix: pg76- */
/* Color scheme: #FF8000, #BF360C, #3A3A3A, #6C757D */

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pg76-primary: #FF8000;
  --pg76-secondary: #BF360C;
  --pg76-dark: #3A3A3A;
  --pg76-gray: #6C757D;
  --pg76-white: #FFFFFF;
  --pg76-light: #F8F9FA;
  --pg76-border: #DEE2E6;
  --pg76-shadow: rgba(0, 0, 0, 0.1);
  font-size: 62.5%;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--pg76-dark);
  background-color: var(--pg76-light);
  max-width: 430px;
  margin: 0 auto;
  padding-bottom: 80px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--pg76-primary);
}

/* Header Styles */
.pg76-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--pg76-primary), var(--pg76-secondary));
  color: var(--pg76-white);
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 8px var(--pg76-shadow);
  z-index: 1000;
}

.pg76-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pg76-logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pg76-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.pg76-site-name {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pg76-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pg76-btn {
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 25px;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pg76-btn-primary {
  background-color: var(--pg76-white);
  color: var(--pg76-primary);
}

.pg76-btn-primary:hover {
  background-color: var(--pg76-light);
  transform: scale(1.05);
}

.pg76-btn-secondary {
  background-color: transparent;
  color: var(--pg76-white);
  border: 2px solid var(--pg76-white);
}

.pg76-btn-secondary:hover {
  background-color: var(--pg76-white);
  color: var(--pg76-primary);
}

.site149-menu-toggle {
  background: none;
  border: none;
  color: var(--pg76-white);
  font-size: 2.4rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Menu */
.site149-mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  background-color: var(--pg76-white);
  box-shadow: 0 4px 12px var(--pg76-shadow);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

.site149-menu-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.site149-mobile-menu ul {
  list-style: none;
  padding: 1rem 0;
}

.site149-mobile-menu li {
  border-bottom: 1px solid var(--pg76-border);
}

.site149-mobile-link {
  display: block;
  padding: 1.5rem 2rem;
  color: var(--pg76-dark);
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.site149-mobile-link:hover,
.site149-active-link {
  background-color: var(--pg76-primary);
  color: var(--pg76-white);
}

/* Main Content */
.pg76-main {
  margin-top: 60px;
  padding: 2rem 1.5rem;
}

/* Carousel */
.site149-carousel-container {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--pg76-shadow);
}

.site149-carousel-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}

.site149-carousel-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.site149-carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
}

.site149-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.site149-active-dot {
  background-color: var(--pg76-primary);
  width: 24px;
  border-radius: 5px;
}

/* Typography */
.pg76-heading-1 {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--pg76-dark);
  margin: 2rem 0 1.5rem;
  line-height: 1.3;
}

.pg76-heading-2 {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--pg76-dark);
  margin: 2rem 0 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 3px solid var(--pg76-primary);
}

.pg76-heading-3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--pg76-dark);
  margin: 1.5rem 0 1rem;
}

.pg76-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--pg76-gray);
  margin-bottom: 1.5rem;
}

/* Game Grid */
.pg76-game-section {
  margin: 3rem 0;
}

.pg76-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.site149-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.site149-game-item:hover {
  transform: scale(1.08);
}

.pg76-game-icon {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--pg76-shadow);
  margin-bottom: 0.5rem;
  object-fit: cover;
}

.pg76-game-name {
  font-size: 1.2rem;
  color: var(--pg76-dark);
  font-weight: 500;
  line-height: 1.3;
  word-break: break-word;
}

/* Feature Cards */
.pg76-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.pg76-feature-card {
  background-color: var(--pg76-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px var(--pg76-shadow);
}

.pg76-feature-icon {
  font-size: 3.6rem;
  color: var(--pg76-primary);
  margin-bottom: 1rem;
}

/* CTA Section */
.pg76-cta-section {
  background: linear-gradient(135deg, var(--pg76-primary), var(--pg76-secondary));
  color: var(--pg76-white);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem 0;
}

.pg76-cta-btn {
  background-color: var(--pg76-white);
  color: var(--pg76-primary);
  padding: 1.2rem 3rem;
  font-size: 1.8rem;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  display: inline-block;
}

.pg76-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.pg76-faq-container {
  margin: 2rem 0;
}

.pg76-faq-item {
  background-color: var(--pg76-white);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--pg76-primary);
}

.pg76-faq-question {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--pg76-dark);
  margin-bottom: 1rem;
}

.pg76-faq-answer {
  font-size: 1.4rem;
  color: var(--pg76-gray);
  line-height: 1.6;
}

/* Bottom Navigation (Mobile Only) */
.pg76-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--pg76-secondary), var(--pg76-dark));
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.8rem 0;
  box-shadow: 0 -2px 10px var(--pg76-shadow);
  z-index: 1000;
  height: 64px;
}

@media (min-width: 769px) {
  .pg76-bottom-nav {
    display: none;
  }
}

.pg76-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  color: var(--pg76-white);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pg76-bottom-nav-btn:hover,
.pg76-nav-active {
  color: var(--pg76-primary);
  transform: scale(1.1);
}

.pg76-bottom-nav-icon {
  font-size: 2.4rem;
  margin-bottom: 0.3rem;
}

.pg76-bottom-nav-text {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Footer */
.pg76-footer {
  background-color: var(--pg76-dark);
  color: var(--pg76-white);
  padding: 3rem 1.5rem 2rem;
  margin-top: 4rem;
}

.pg76-footer-content {
  max-width: 430px;
  margin: 0 auto;
}

.pg76-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.pg76-footer-link {
  color: var(--pg76-white);
  font-size: 1.4rem;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.pg76-footer-link:hover {
  color: var(--pg76-primary);
}

.pg76-partners-section {
  margin: 2rem 0;
}

.pg76-partners-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.pg76-partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: center;
  justify-items: center;
}

.pg76-partner-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.pg76-partner-logo:hover {
  opacity: 1;
}

.pg76-copyright {
  text-align: center;
  font-size: 1.3rem;
  color: var(--pg76-gray);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Utility Classes */
.pg76-text-center {
  text-align: center;
}

.pg76-text-primary {
  color: var(--pg76-primary);
}

.pg76-bg-white {
  background-color: var(--pg76-white);
}

.pg76-mt-2 {
  margin-top: 2rem;
}

.pg76-mb-2 {
  margin-bottom: 2rem;
}

.pg76-p-2 {
  padding: 2rem;
}

/* Scroll to Top Button */
#site149ScrollTopBtn {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: var(--pg76-primary);
  color: var(--pg76-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 12px var(--pg76-shadow);
  z-index: 999;
  transition: all 0.3s ease;
}

#site149ScrollTopBtn:hover {
  background-color: var(--pg76-secondary);
  transform: scale(1.1);
}

@media (min-width: 769px) {
  #site149ScrollTopBtn {
    bottom: 20px;
  }
}

/* Responsive Design */
@media (max-width: 375px) {
  .pg76-game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
