/* design-9a85.css - 277 Fury Ballistics Styles */
/* All classes prefixed with g85c- for namespace isolation */

:root {
  --g85c-dark: #1E1E1E;
  --g85c-khaki: #BDB76B;
  --g85c-gold: #DAA520;
  --g85c-blue: #1E90FF;
  --g85c-orange: #FF8C00;
  --g85c-bg: #1E1E1E;
  --g85c-card: #2A2A2A;
  --g85c-border: #3A3A3A;
  --g85c-text: #E0E0E0;
  --g85c-muted: #999;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--g85c-bg);
  color: var(--g85c-text);
  max-width: 430px;
  margin: 0 auto;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HEADER === */
.g85c-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 56px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 1000;
  border-bottom: 2px solid var(--g85c-gold);
  box-shadow: 0 2px 12px rgba(218,165,32,0.2);
}

.g85c-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.g85c-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--g85c-gold), var(--g85c-orange));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  color: var(--g85c-dark);
}

.g85c-logo-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--g85c-gold);
  letter-spacing: 0.5px;
}

.g85c-header-btns {
  display: flex;
  gap: 8px;
  align-items: center;
}

.g85c-btn-login {
  padding: 6px 14px;
  border: 1px solid var(--g85c-gold);
  border-radius: 6px;
  background: transparent;
  color: var(--g85c-gold);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.g85c-btn-login:hover {
  background: var(--g85c-gold);
  color: var(--g85c-dark);
}

.g85c-btn-register {
  padding: 6px 14px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--g85c-orange), #e67e00);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(255,140,0,0.4);
}

.g85c-btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,140,0,0.6);
}

.g85c-menu-toggle {
  background: none;
  border: none;
  color: var(--g85c-khaki);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

/* === MOBILE MENU === */
.g85c-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9998;
  display: none;
}

.g85c-overlay-active { display: block; }

.g85c-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: #1a1a1a;
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 20px;
  overflow-y: auto;
  border-left: 2px solid var(--g85c-gold);
}

.g85c-menu-open { right: 0; }

.g85c-menu-close {
  background: none;
  border: none;
  color: var(--g85c-gold);
  font-size: 24px;
  cursor: pointer;
  float: right;
  margin-bottom: 20px;
}

.g85c-menu-links {
  clear: both;
  padding-top: 10px;
  list-style: none;
}

.g85c-menu-links li {
  margin-bottom: 4px;
}

.g85c-menu-links a {
  display: block;
  padding: 12px 16px;
  color: var(--g85c-text);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  font-size: 14px;
}

.g85c-menu-links a:hover {
  background: var(--g85c-card);
  color: var(--g85c-gold);
}

/* === BOTTOM NAV === */
.g85c-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 60px;
  background: linear-gradient(180deg, #222 0%, #1a1a1a 100%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  border-top: 1px solid var(--g85c-border);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}

.g85c-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--g85c-muted);
  cursor: pointer;
  transition: all 0.25s;
  padding: 4px;
  position: relative;
}

.g85c-bottom-btn:hover,
.g85c-bottom-btn:focus {
  color: var(--g85c-gold);
  transform: scale(1.08);
}

.g85c-bottom-btn-active {
  color: var(--g85c-gold);
}

.g85c-bottom-btn-active::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--g85c-gold);
  border-radius: 0 0 3px 3px;
}

.g85c-bottom-btn i,
.g85c-bottom-btn span.material-symbols-outlined {
  font-size: 22px;
  margin-bottom: 2px;
}

.g85c-bottom-btn ion-icon {
  font-size: 22px;
  margin-bottom: 2px;
}

.g85c-bottom-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* === MAIN CONTENT === */
.g85c-main {
  padding-top: 56px;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .g85c-main { padding-bottom: 80px; }
}

/* === CAROUSEL === */
.g85c-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8;
  overflow: hidden;
  background: #111;
}

.g85c-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.g85c-slide-active { opacity: 1; }

.g85c-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g85c-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.g85c-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.g85c-dot-active {
  background: var(--g85c-gold);
  width: 20px;
  border-radius: 4px;
}

/* === GAME TABS === */
.g85c-tabs {
  display: flex;
  overflow-x: auto;
  padding: 12px 12px 0;
  gap: 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.g85c-tabs::-webkit-scrollbar { display: none; }

.g85c-tab-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  border: 1px solid var(--g85c-border);
  border-radius: 20px;
  background: var(--g85c-card);
  color: var(--g85c-muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.g85c-tab-active {
  background: linear-gradient(135deg, var(--g85c-gold), var(--g85c-orange));
  color: var(--g85c-dark);
  border-color: transparent;
}

/* === GAME GRID === */
.g85c-game-panel {
  display: none;
  padding: 12px;
}

.g85c-panel-active {
  display: block;
}

.g85c-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.g85c-game-card {
  background: var(--g85c-card);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--g85c-border);
}

.g85c-game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(218,165,32,0.2);
  border-color: var(--g85c-gold);
}

.g85c-game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.g85c-game-name {
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--g85c-khaki);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* === SECTIONS === */
.g85c-section {
  padding: 20px 14px;
}

.g85c-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--g85c-gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.g85c-section-title i {
  font-size: 20px;
}

/* === CTA BLOCKS === */
.g85c-cta {
  background: linear-gradient(135deg, var(--g85c-gold), var(--g85c-orange));
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  margin: 16px 14px;
}

.g85c-cta h3 {
  font-size: 20px;
  color: var(--g85c-dark);
  margin-bottom: 8px;
  font-weight: 800;
}

.g85c-cta p {
  color: #333;
  font-size: 13px;
  margin-bottom: 16px;
}

.g85c-cta-btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--g85c-dark);
  color: var(--g85c-gold);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.g85c-cta-btn:hover {
  background: #000;
  transform: scale(1.05);
}

/* === FEATURE CARDS === */
.g85c-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 14px;
}

.g85c-feature-card {
  background: var(--g85c-card);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  border: 1px solid var(--g85c-border);
  transition: all 0.3s;
}

.g85c-feature-card:hover {
  border-color: var(--g85c-gold);
  box-shadow: 0 4px 12px rgba(218,165,32,0.15);
}

.g85c-feature-icon {
  font-size: 28px;
  color: var(--g85c-gold);
  margin-bottom: 8px;
}

.g85c-feature-card h4 {
  font-size: 13px;
  color: var(--g85c-khaki);
  margin-bottom: 4px;
}

.g85c-feature-card p {
  font-size: 11px;
  color: var(--g85c-muted);
}

/* === STEPS === */
.g85c-steps {
  padding: 0 14px;
}

.g85c-step {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.g85c-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--g85c-gold), var(--g85c-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--g85c-dark);
}

.g85c-step-content h4 {
  font-size: 14px;
  color: var(--g85c-khaki);
  margin-bottom: 4px;
}

.g85c-step-content p {
  font-size: 12px;
  color: var(--g85c-muted);
}

/* === CONTENT TEXT === */
.g85c-content-text {
  padding: 0 14px;
  font-size: 13px;
  color: var(--g85c-text);
  line-height: 1.8;
}

.g85c-content-text p {
  margin-bottom: 12px;
}

.g85c-content-text h3 {
  font-size: 16px;
  color: var(--g85c-gold);
  margin: 18px 0 10px;
}

.g85c-highlight {
  color: var(--g85c-gold);
  font-weight: 600;
}

.g85c-blue-text {
  color: var(--g85c-blue);
  font-weight: 600;
}

/* === FOOTER === */
.g85c-footer {
  background: #111;
  padding: 24px 14px 20px;
  border-top: 1px solid var(--g85c-border);
  text-align: center;
}

.g85c-footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--g85c-gold);
  margin-bottom: 12px;
}

.g85c-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.g85c-footer-links a {
  color: var(--g85c-muted);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s;
}

.g85c-footer-links a:hover {
  color: var(--g85c-gold);
}

.g85c-footer-copy {
  font-size: 11px;
  color: #555;
  margin-top: 12px;
}

/* === BACK TO TOP === */
.g85c-back-top {
  position: fixed;
  bottom: 72px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--g85c-gold);
  color: var(--g85c-dark);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(218,165,32,0.4);
  transition: all 0.3s;
}

.g85c-back-top-visible {
  display: flex;
}

.g85c-back-top:hover {
  background: var(--g85c-orange);
  transform: translateY(-2px);
}

/* === RESPONSIVE === */
@media (min-width: 769px) {
  .g85c-bottom-nav { display: none; }
  .g85c-menu-toggle { display: none; }
}

@media (max-width: 768px) {
  .g85c-main { padding-bottom: 80px; }
}

/* === DESKTOP NAV === */
.g85c-desktop-nav {
  display: none;
}

@media (min-width: 769px) {
  .g85c-desktop-nav {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .g85c-desktop-nav a {
    color: var(--g85c-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
  }
  .g85c-desktop-nav a:hover {
    color: var(--g85c-gold);
  }
}

/* === PARTNER LOGOS === */
.g85c-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.g85c-partners span {
  font-size: 11px;
  color: var(--g85c-muted);
  background: var(--g85c-card);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--g85c-border);
}

/* === REVIEW STARS === */
.g85c-stars {
  color: var(--g85c-gold);
  font-size: 16px;
  margin-bottom: 8px;
}

/* === SAFETY BADGE === */
.g85c-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(30,144,255,0.15);
  border: 1px solid var(--g85c-blue);
  border-radius: 20px;
  color: var(--g85c-blue);
  font-size: 12px;
  font-weight: 600;
  margin: 4px;
}

/* === INLINE LINK === */
.g85c-link {
  color: var(--g85c-blue);
  text-decoration: none;
  font-weight: 600;
}

.g85c-link:hover {
  text-decoration: underline;
}
