/**
 * nustargame ph - Main Stylesheet
 * CSS class prefix: ge33-
 * Mobile-first responsive design
 */

:root {
  --ge33-primary: #FFAA00;
  --ge33-secondary: #FFCC02;
  --ge33-accent: #FFB347;
  --ge33-dark: #34495E;
  --ge33-medium: #ADB5BD;
  --ge33-light: #F5DEB3;
  --ge33-white: #FFFFFF;
  --ge33-text: #34495E;
  --ge33-text-muted: #ADB5BD;
  --ge33-border: #FFCC02;
  --ge33-shadow: rgba(255, 170, 0, 0.3);
}

* {
  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, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--ge33-text);
  background: linear-gradient(180deg, var(--ge33-light), #FFE5B4);
  min-height: 100vh;
  padding-bottom: 70px;
}

.ge33-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1rem;
}

.ge33-wrapper {
  width: 100%;
  overflow-x: hidden;
}

.ge33-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--ge33-dark), #2C3E50);
  border-bottom: 3px solid var(--ge33-primary);
  z-index: 1000;
  box-shadow: 0 4px 15px var(--ge33-shadow);
}

.ge33-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  max-width: 430px;
  margin: 0 auto;
}

.ge33-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ge33-white);
}

.ge33-logo-icon {
  width: 30px;
  height: 30px;
  margin-right: 0.5rem;
  border-radius: 5px;
}

.ge33-logo span {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--ge33-primary), var(--ge33-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ge33-header-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ge33-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ge33-btn-primary {
  background: linear-gradient(135deg, var(--ge33-primary), var(--ge33-accent));
  color: var(--ge33-dark);
  box-shadow: 0 4px 15px rgba(255, 170, 0, 0.5);
}

.ge33-btn-primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 170, 0, 0.7);
}

.ge33-btn-secondary {
  background-color: transparent;
  color: var(--ge33-white);
  border: 2px solid var(--ge33-secondary);
}

.ge33-btn-secondary:hover {
  background-color: var(--ge33-secondary);
  color: var(--ge33-dark);
  transform: scale(1.05);
}

.ge33-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 26px;
  cursor: pointer;
  margin-left: 0.5rem;
}

.ge33-menu-toggle span {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ge33-primary), var(--ge33-secondary));
  border-radius: 3px;
  transition: all 0.3s ease;
}

.ge33-mobile-menu {
  position: fixed;
  top: 62px;
  left: -100%;
  width: 100%;
  max-width: 430px;
  height: calc(100vh - 62px);
  background: linear-gradient(180deg, var(--ge33-dark), #2C3E50);
  transition: left 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  border-top: 2px solid var(--ge33-primary);
}

.ge33-mobile-menu.ge33-menu-open {
  left: 0;
}

.ge33-menu-list {
  list-style: none;
  padding: 1rem 0;
}

.ge33-menu-item {
  border-bottom: 1px solid rgba(255, 204, 2, 0.2);
}

.ge33-menu-link {
  display: flex;
  align-items: center;
  padding: 1rem;
  color: var(--ge33-light);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.ge33-menu-link:hover {
  background: linear-gradient(90deg, rgba(255, 170, 0, 0.2), transparent);
  color: var(--ge33-primary);
  padding-left: 1.5rem;
}

.ge33-menu-icon {
  margin-right: 1rem;
  font-size: 1.6rem;
  width: 26px;
  text-align: center;
  color: var(--ge33-primary);
}

.ge33-main {
  margin-top: 62px;
  padding: 1.5rem 0;
  min-height: calc(100vh - 130px);
}

.ge33-section {
  margin-bottom: 2rem;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  border: 2px solid var(--ge33-border);
  box-shadow: 0 4px 20px rgba(255, 170, 0, 0.15);
}

.ge33-section-title h1,
.ge33-section-title h2 {
  color: var(--ge33-dark);
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
}

.ge33-section-title h1 {
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--ge33-primary), var(--ge33-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.ge33-card-content {
  color: var(--ge33-text);
  font-size: 1.5rem;
  line-height: 1.7;
}

.ge33-highlight {
  color: var(--ge33-primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-style: dotted;
}

.ge33-accent-text {
  color: var(--ge33-accent);
  font-weight: 700;
}

.ge33-carousel {
  position: relative;
  width: 100%;
  height: 220px;
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(255, 170, 0, 0.3);
}

.ge33-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.ge33-carousel-slide.ge33-slide-active {
  opacity: 1;
}

.ge33-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ge33-games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.ge33-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.6rem;
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.1), rgba(255, 204, 2, 0.1));
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.ge33-game-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 170, 0, 0.4);
  border-color: var(--ge33-primary);
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.2), rgba(255, 204, 2, 0.2));
}

.ge33-game-icon {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.4rem;
}

.ge33-game-name {
  font-size: 1rem;
  color: var(--ge33-dark);
  text-align: center;
  font-weight: 600;
  word-wrap: break-word;
  line-height: 1.2;
}

.ge33-promo-btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--ge33-primary), var(--ge33-accent));
  color: var(--ge33-dark);
  border: none;
  border-radius: 30px;
  font-size: 1.5rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(255, 170, 0, 0.5);
  min-height: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ge33-promo-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 35px rgba(255, 170, 0, 0.7);
}

.ge33-promo-btn-large {
  padding: 1.3rem 2.5rem;
  font-size: 1.7rem;
}

.ge33-feature-list {
  list-style: none;
  margin-top: 1.2rem;
}

.ge33-feature-item {
  display: flex;
  align-items: flex-start;
  padding: 1.2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.08), rgba(255, 204, 2, 0.08));
  border-radius: 12px;
  border-left: 4px solid var(--ge33-primary);
  transition: all 0.3s ease;
}

.ge33-feature-item:hover {
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.15), rgba(255, 204, 2, 0.15));
  transform: translateX(5px);
}

.ge33-feature-icon {
  font-size: 2rem;
  color: var(--ge33-primary);
  margin-right: 1.2rem;
  min-width: 32px;
}

.ge33-feature-content {
  flex: 1;
}

.ge33-feature-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ge33-dark);
  margin-bottom: 0.4rem;
}

.ge33-feature-text {
  font-size: 1.4rem;
  color: var(--ge33-text);
  line-height: 1.6;
}

.ge33-footer {
  background: linear-gradient(180deg, var(--ge33-dark), #2C3E50);
  padding: 2.5rem 0 85px;
  margin-top: 2.5rem;
  border-top: 4px solid var(--ge33-primary);
}

.ge33-footer-content {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.ge33-footer-description {
  color: var(--ge33-light);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.ge33-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ge33-footer-link {
  color: var(--ge33-secondary);
  text-decoration: none;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 1px solid transparent;
}

.ge33-footer-link:hover {
  background: linear-gradient(135deg, var(--ge33-primary), var(--ge33-accent));
  color: var(--ge33-dark);
  border-color: var(--ge33-secondary);
  transform: scale(1.1);
}

.ge33-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.ge33-partner-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.ge33-partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.15);
  box-shadow: 0 4px 15px rgba(255, 170, 0, 0.5);
}

.ge33-copyright {
  color: var(--ge33-medium);
  font-size: 1.1rem;
  margin-top: 1.2rem;
  font-weight: 500;
}

.ge33-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: linear-gradient(180deg, var(--ge33-dark), #2C3E50);
  border-top: 3px solid var(--ge33-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  max-width: 430px;
  margin: 0 auto;
  box-shadow: 0 -4px 20px rgba(255, 170, 0, 0.3);
}

.ge33-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 65px;
  min-height: 65px;
  text-decoration: none;
  color: var(--ge33-light);
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.4rem;
  border-radius: 12px;
}

.ge33-nav-item:hover,
.ge33-nav-item.ge33-active {
  color: var(--ge33-primary);
  transform: scale(1.15);
  background: rgba(255, 170, 0, 0.15);
}

.ge33-nav-icon {
  font-size: 24px;
  margin-bottom: 0.3rem;
}

.ge33-nav-text {
  font-size: 1rem;
  font-weight: 600;
}

.ge33-touch-active {
  transform: scale(0.92) !important;
  opacity: 0.8;
}

@media (min-width: 769px) {
  .ge33-bottom-nav {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

.ge33-text-center {
  text-align: center;
}

.ge33-mt-1 { margin-top: 1rem; }
.ge33-mt-2 { margin-top: 2rem; }
.ge33-mb-1 { margin-bottom: 1rem; }
.ge33-mb-2 { margin-bottom: 2rem; }
