/* HawkGaming PH - Stylesheet
   Prefix: g763- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #8B4513;
  --dark-bg: #1C2833;
  --light-bg: #FDF5E6;
  --accent-orange: #FF8C00;
  --highlight-yellow: #FFFACD;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-light: #666666;
  --border-color: #E8E4D5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

/* Header Styles */
.g763-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #6B3410 100%);
  color: var(--white);
  padding: 12px 16px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
}

.g763-header-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex: 1;
}

.g763-header-nav {
  display: none;
}

.g763-header-btns {
  display: flex;
  gap: 8px;
  align-items: center;
}

.g763-menu-toggle {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.g763-header-btn {
  background-color: var(--accent-orange);
  color: var(--white);
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.g763-header-btn:hover {
  background-color: var(--highlight-yellow);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 140, 0, 0.3);
}

.g763-header-btn.g763-register {
  background-color: var(--highlight-yellow);
  color: var(--primary-color);
}

/* Mobile Menu */
.g763-mobile-menu {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dark-bg);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding-bottom: 80px;
}

.g763-mobile-menu.g763-active {
  transform: translateX(0);
}

.g763-mobile-menu-link {
  display: block;
  padding: 14px 20px;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
  font-weight: 500;
}

.g763-mobile-menu-link:hover {
  background-color: rgba(139, 69, 19, 0.2);
  padding-left: 24px;
}

.g763-mobile-menu-section {
  margin: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.g763-mobile-menu-title {
  padding: 14px 20px;
  font-size: 12px;
  color: var(--accent-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Main Content */
main {
  padding-top: 56px;
  min-height: 100vh;
}

@media (max-width: 768px) {
  main {
    padding-bottom: 80px;
  }
}

/* Container */
.g763-container {
  max-width: 430px;
  margin: 0 auto;
  padding: 20px 16px;
}

@media (min-width: 769px) {
  .g763-container {
    max-width: 1200px;
  }
}

/* Hero Section */
.g763-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #6B3410 100%);
  color: var(--white);
  padding: 32px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  text-align: center;
}

.g763-hero-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.g763-hero-subtitle {
  font-size: 14px;
  opacity: 0.95;
  margin-bottom: 20px;
}

.g763-hero-btn {
  background-color: var(--accent-orange);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.g763-hero-btn:hover {
  background-color: var(--highlight-yellow);
  color: var(--primary-color);
  transform: scale(1.05);
}

/* Game Categories */
.g763-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.g763-category-btn {
  background: linear-gradient(135deg, var(--light-bg) 0%, #F5E6D3 100%);
  border: 2px solid var(--primary-color);
  padding: 16px 12px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: var(--primary-color);
}

.g763-category-btn:active {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8C00 100%);
  color: var(--white);
  border-color: var(--accent-orange);
  transform: scale(0.98);
}

.g763-category-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

/* Game Grid */
.g763-games-section {
  margin-bottom: 32px;
}

.g763-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.g763-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (min-width: 769px) {
  .g763-games-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.g763-game-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.g763-game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(139, 69, 19, 0.2);
  border-color: var(--accent-orange);
}

.g763-game-image {
  width: 100%;
  height: 100px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--light-bg), #F5E6D3);
}

.g763-game-name {
  padding: 8px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  color: var(--text-dark);
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-bg);
}

/* Features Section */
.g763-features {
  background: var(--light-bg);
  padding: 24px 20px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.g763-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.g763-feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.g763-feature-icon {
  font-size: 22px;
  color: var(--accent-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.g763-feature-text {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.5;
}

.g763-feature-title {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

/* Footer */
.g763-footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 28px 20px;
  text-align: center;
  margin-top: 40px;
  border-top: 3px solid var(--accent-orange);
}

.g763-footer-content {
  max-width: 430px;
  margin: 0 auto;
}

.g763-footer-logo {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.g763-footer-text {
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 16px;
  line-height: 1.5;
}

.g763-footer-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.g763-footer-link {
  color: var(--highlight-yellow);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.g763-footer-link:hover {
  color: var(--white);
}

.g763-footer-stats {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 6px;
  font-size: 11px;
  line-height: 1.6;
}

.g763-footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 12px 0;
}

/* Mobile Bottom Navigation */
.g763-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--white) 0%, #F9F5ED 100%);
  border-top: 2px solid var(--border-color);
  height: 64px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 769px) {
  .g763-bottom-nav {
    display: none;
  }
}

.g763-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-light);
  font-size: 11px;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
}

.g763-nav-btn:hover {
  color: var(--primary-color);
}

.g763-nav-btn.g763-active {
  color: var(--accent-orange);
}

.g763-nav-btn.g763-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-orange);
}

.g763-nav-icon {
  font-size: 24px;
}

/* Headings */
h1 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 16px;
  font-weight: 700;
}

h2 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 14px;
  margin-top: 20px;
  font-weight: 700;
}

h3 {
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 700;
}

/* Links */
a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Buttons */
.g763-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.g763-btn:hover {
  background-color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
}

.g763-btn.g763-secondary {
  background-color: var(--accent-orange);
}

.g763-btn.g763-secondary:hover {
  background-color: #FF7800;
}

/* Text Styles */
.g763-text-center {
  text-align: center;
}

.g763-text-muted {
  color: var(--text-light);
}

.g763-text-accent {
  color: var(--accent-orange);
}

.g763-text-highlight {
  color: var(--primary-color);
  font-weight: 700;
}

/* Spacing Utilities */
.g763-mt-16 { margin-top: 16px; }
.g763-mt-24 { margin-top: 24px; }
.g763-mb-16 { margin-bottom: 16px; }
.g763-mb-24 { margin-bottom: 24px; }
.g763-p-16 { padding: 16px; }
.g763-p-20 { padding: 20px; }

/* Cards */
.g763-card {
  background: var(--white);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.g763-card:hover {
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.15);
}

/* Responsive Typography */
@media (min-width: 769px) {
  .g763-header {
    padding: 14px 32px;
  }

  .g763-header-nav {
    display: flex;
    gap: 24px;
    flex: 1;
    margin-left: 40px;
  }

  .g763-header-nav a {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
  }

  .g763-header-nav a:hover {
    color: var(--highlight-yellow);
  }

  .g763-menu-toggle {
    display: none;
  }

  .g763-mobile-menu {
    position: static;
    transform: none;
    background: none;
    z-index: auto;
    overflow: visible;
    padding-bottom: 0;
    border: none;
  }

  .g763-mobile-menu.g763-active {
    transform: none;
  }

  .g763-mobile-menu-link {
    display: inline-block;
    padding: 0;
    color: var(--white);
    border-bottom: none;
  }

  .g763-games-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .g763-hero {
    padding: 48px 32px;
  }

  .g763-hero-title {
    font-size: 36px;
  }
}

/* Print Styles */
@media print {
  .g763-header,
  .g763-bottom-nav,
  .g763-menu-toggle,
  .g763-header-btns {
    display: none;
  }

  main {
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
