/* SportsPlus PH - Main CSS Stylesheet */
/* All classes use w0a00- prefix for namespace isolation */

/* CSS Variables */
:root {
  --w0a00-primary: #141414;
  --w0a00-secondary: #CCCCCC;
  --w0a00-accent: #8FBC8F;
  --w0a00-dark: #0a0a0a;
  --w0a00-darker: #050505;
  --w0a00-light: #e0e0e0;
  --w0a00-white: #ffffff;
  --w0a00-success: #4caf50;
  --w0a00-danger: #f44336;
  --w0a00-warning: #ff9800;
  --w0a00-shadow: rgba(0, 0, 0, 0.5);
  --w0a00-gradient: linear-gradient(135deg, #141414 0%, #1a1a1a 100%);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--w0a00-secondary);
  background-color: var(--w0a00-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.w0a00-container {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1rem;
}

.w0a00-wrapper {
  max-width: 430px;
  margin: 0 auto;
  background-color: var(--w0a00-primary);
  min-height: 100vh;
}

/* Header */
.w0a00-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--w0a00-darker);
  box-shadow: 0 2px 10px var(--w0a00-shadow);
  padding: 0.8rem 1rem;
}

.w0a00-header-content {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.w0a00-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--w0a00-accent);
  font-weight: 700;
  font-size: 1.6rem;
}

.w0a00-logo img {
  width: 28px;
  height: 28px;
}

/* Header Buttons */
.w0a00-header-buttons {
  display: flex;
  gap: 0.5rem;
}

.w0a00-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.w0a00-btn-primary {
  background-color: var(--w0a00-accent);
  color: var(--w0a00-white);
}

.w0a00-btn-primary:hover,
.w0a00-btn-primary:active {
  background-color: #7aa87a;
  transform: scale(1.05);
}

.w0a00-btn-secondary {
  background-color: transparent;
  color: var(--w0a00-accent);
  border: 2px solid var(--w0a00-accent);
}

.w0a00-btn-secondary:hover,
.w0a00-btn-secondary:active {
  background-color: var(--w0a00-accent);
  color: var(--w0a00-white);
}

.w0a00-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--w0a00-accent);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.3rem;
}

/* Mobile Menu */
.w0a00-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.w0a00-overlay-visible {
  opacity: 1;
  visibility: visible;
}

.w0a00-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background-color: var(--w0a00-darker);
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 2rem 0;
}

.w0a00-menu-open {
  right: 0;
}

.w0a00-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.w0a00-menu-title {
  color: var(--w0a00-accent);
  font-size: 1.6rem;
  font-weight: 700;
}

.w0a00-menu-close {
  background: none;
  border: none;
  color: var(--w0a00-secondary);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.3rem;
}

.w0a00-menu-nav {
  list-style: none;
  padding: 0;
}

.w0a00-menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.w0a00-menu-link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--w0a00-secondary);
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.w0a00-menu-link:hover {
  background-color: rgba(143, 188, 143, 0.1);
  color: var(--w0a00-accent);
  padding-left: 2rem;
}

/* Main Content */
.w0a00-main {
  padding-top: 70px;
  padding-bottom: 80px;
  min-height: calc(100vh - 150px);
}

/* Carousel */
.w0a00-carousel {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--w0a00-shadow);
}

.w0a00-carousel-slide {
  width: 100%;
  height: 100%;
  display: none;
}

.w0a00-carousel-slide:first-child {
  display: block;
}

.w0a00-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Sections */
.w0a00-section {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background-color: var(--w0a00-dark);
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--w0a00-shadow);
}

.w0a00-section-title {
  color: var(--w0a00-accent);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.w0a00-section-title i {
  font-size: 2rem;
}

.w0a00-content {
  color: var(--w0a00-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.w0a00-content p {
  margin-bottom: 1rem;
}

.w0a00-highlight-text {
  color: var(--w0a00-accent);
  font-weight: 600;
}

/* Grid Layout */
.w0a00-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

/* Game Cards */
.w0a00-game-card {
  background-color: var(--w0a00-darker);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--w0a00-shadow);
}

.w0a00-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px var(--w0a00-shadow);
}

.w0a00-game-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.w0a00-game-name {
  padding: 0.5rem;
  font-size: 1rem;
  text-align: center;
  color: var(--w0a00-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: var(--w0a00-darker);
}

.w0a00-game-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Featured List */
.w0a00-featured-list {
  list-style: none;
  padding: 0;
}

.w0a00-featured-item {
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: var(--w0a00-darker);
  border-radius: 8px;
  border-left: 3px solid var(--w0a00-accent);
  transition: all 0.3s ease;
}

.w0a00-featured-item:hover {
  background-color: rgba(143, 188, 143, 0.1);
  transform: translateX(5px);
}

.w0a00-featured-title {
  color: var(--w0a00-accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.w0a00-featured-desc {
  color: var(--w0a00-secondary);
  font-size: 1.3rem;
  line-height: 1.6;
}

/* FAQ Styles */
.w0a00-faq-item {
  margin-bottom: 1rem;
  background-color: var(--w0a00-darker);
  border-radius: 8px;
  overflow: hidden;
}

.w0a00-faq-question {
  padding: 1rem;
  background-color: var(--w0a00-darker);
  color: var(--w0a00-accent);
  font-weight: 600;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.w0a00-faq-question:hover {
  background-color: rgba(143, 188, 143, 0.1);
}

.w0a00-faq-answer {
  padding: 1rem;
  color: var(--w0a00-secondary);
  line-height: 1.7;
  font-size: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Promotional Links */
.w0a00-promo-link {
  color: var(--w0a00-accent);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.w0a00-promo-link:hover {
  color: var(--w0a00-white);
  text-decoration: underline;
}

/* Bottom Navigation (Mobile) */
.w0a00-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: var(--w0a00-darker);
  box-shadow: 0 -2px 10px var(--w0a00-shadow);
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem 0;
}

.w0a00-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  text-decoration: none;
  color: var(--w0a00-secondary);
  font-size: 1rem;
  gap: 0.3rem;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 0.5rem;
}

.w0a00-nav-item i {
  font-size: 24px;
  margin-bottom: 0.2rem;
}

.w0a00-nav-item:hover {
  color: var(--w0a00-accent);
  transform: scale(1.1);
}

.w0a00-nav-item.w0a00-nav-active {
  color: var(--w0a00-accent);
  background-color: rgba(143, 188, 143, 0.1);
}

.w0a00-nav-item.w0a00-nav-active i {
  animation: w0a00-pulse 1.5s ease-in-out infinite;
}

@keyframes w0a00-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.w0a00-touch-active {
  transform: scale(0.95);
}

/* Footer */
.w0a00-footer {
  background-color: var(--w0a00-darker);
  padding: 2rem 1rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.w0a00-footer-content {
  max-width: 430px;
  margin: 0 auto;
}

.w0a00-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.w0a00-footer-link {
  color: var(--w0a00-secondary);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.w0a00-footer-link:hover {
  color: var(--w0a00-accent);
  background-color: rgba(143, 188, 143, 0.1);
}

.w0a00-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
}

.w0a00-partner-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.w0a00-partner-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.w0a00-copyright {
  text-align: center;
  color: var(--w0a00-secondary);
  font-size: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* H1 Heading */
.w0a00-h1 {
  color: var(--w0a00-accent);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-align: center;
}

/* H2 Heading */
.w0a00-h2 {
  color: var(--w0a00-accent);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

/* Internal Links */
.w0a00-internal-link {
  color: var(--w0a00-accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.w0a00-internal-link:hover {
  text-decoration: underline;
  color: var(--w0a00-white);
}

/* Desktop Responsive */
@media (min-width: 769px) {
  .w0a00-bottom-nav {
    display: none;
  }

  .w0a00-main {
    padding-bottom: 2rem;
  }

  .w0a00-menu-toggle {
    display: block;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .w0a00-menu-toggle {
    display: block;
  }

  .w0a00-header-buttons {
    display: none;
  }

  .w0a00-main {
    padding-bottom: 80px;
  }
}

/* Utility Classes */
.w0a00-text-center {
  text-align: center;
}

.w0a00-mt-1 {
  margin-top: 1rem;
}

.w0a00-mb-1 {
  margin-bottom: 1rem;
}

.w0a00-mt-2 {
  margin-top: 2rem;
}

.w0a00-mb-2 {
  margin-bottom: 2rem;
}

/* Animation */
.w0a00-loaded {
  animation: w0a00-fadeIn 0.5s ease-in;
}

@keyframes w0a00-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
