/* 1333 angel number - Main Stylesheet */
/* All classes use gd90- prefix for namespace isolation */
/* Colors: #0F0F23 (bg) | #B8860B (accent/text) */

:root {
  --gd90-primary: #0F0F23;
  --gd90-accent: #B8860B;
  --gd90-accent-light: #D4A843;
  --gd90-bg: #0F0F23;
  --gd90-bg-card: #1A1A3E;
  --gd90-bg-dark: #080816;
  --gd90-text: #E8E8F0;
  --gd90-text-muted: #A0A0B8;
  --gd90-gold: #B8860B;
  --gd90-gold-glow: rgba(184, 134, 11, 0.3);
  --gd90-white: #FFFFFF;
  --gd90-border: rgba(184, 134, 11, 0.2);
  --gd90-radius: 10px;
  --gd90-radius-sm: 6px;
  --gd90-transition: all 0.3s ease;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--gd90-bg);
  color: var(--gd90-text);
  line-height: 1.5rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === WRAPPER & CONTAINER === */
.gd90-wrapper {
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}

.gd90-container {
  padding: 0 1.2rem;
}

/* === HEADER === */
.gd90-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--gd90-bg-dark) 0%, var(--gd90-bg) 100%);
  border-bottom: 1px solid var(--gd90-border);
  height: 56px;
}

.gd90-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 1rem;
}

.gd90-logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.gd90-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.gd90-logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gd90-accent);
  white-space: nowrap;
}

.gd90-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gd90-btn-register,
.gd90-btn-login {
  padding: 0.4rem 1rem;
  border-radius: var(--gd90-radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--gd90-transition);
  min-height: 32px;
}

.gd90-btn-register {
  background: linear-gradient(135deg, var(--gd90-accent), var(--gd90-accent-light));
  color: var(--gd90-bg-dark);
}

.gd90-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px var(--gd90-gold-glow);
}

.gd90-btn-login {
  background: transparent;
  color: var(--gd90-accent);
  border: 1px solid var(--gd90-accent);
}

.gd90-btn-login:hover {
  background: rgba(184, 134, 11, 0.1);
}

.gd90-hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
  margin-left: 0.4rem;
  background: none;
  border: none;
}

.gd90-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gd90-accent);
  border-radius: 2px;
  transition: var(--gd90-transition);
}

.gd90-hamburger-active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.gd90-hamburger-active span:nth-child(2) {
  opacity: 0;
}

.gd90-hamburger-active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* === MOBILE MENU === */
.gd90-mobile-menu {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--gd90-bg-dark);
  border-bottom: 2px solid var(--gd90-accent);
  transform: translateY(-120%);
  transition: transform 0.35s ease;
  max-width: 430px;
  margin: 0 auto;
}

.gd90-menu-active {
  transform: translateY(0);
}

.gd90-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0.8rem 0;
}

.gd90-mobile-menu li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.6rem;
  color: var(--gd90-text);
  text-decoration: none;
  font-size: 1.3rem;
  border-bottom: 1px solid rgba(184, 134, 11, 0.1);
  transition: var(--gd90-transition);
}

.gd90-mobile-menu li a:hover {
  color: var(--gd90-accent);
  background: rgba(184, 134, 11, 0.05);
}

/* === CAROUSEL === */
.gd90-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 56px;
  border-radius: 0 0 var(--gd90-radius) var(--gd90-radius);
}

.gd90-slides-wrapper {
  position: relative;
  width: 100%;
}

.gd90-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}

.gd90-slide-active {
  display: block;
}

.gd90-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 430/200;
  object-fit: cover;
}

.gd90-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.gd90-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--gd90-transition);
  border: none;
}

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

/* === CONTENT AREA === */
.gd90-main {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

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

.gd90-section {
  padding: 1.2rem 0;
}

.gd90-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gd90-accent);
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gd90-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gd90-section-title i,
.gd90-section-title .material-icons {
  font-size: 2rem;
}

/* === GAME GRID === */
.gd90-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.gd90-game-card {
  text-align: center;
  cursor: pointer;
  transition: var(--gd90-transition);
  border-radius: var(--gd90-radius-sm);
  padding: 0.4rem;
}

.gd90-game-card:hover {
  transform: translateY(-2px);
  background: rgba(184, 134, 11, 0.08);
}

.gd90-game-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--gd90-radius-sm);
  object-fit: cover;
  border: 2px solid transparent;
  transition: var(--gd90-transition);
}

.gd90-game-card:hover img {
  border-color: var(--gd90-accent);
}

.gd90-game-name {
  font-size: 1.05rem;
  color: var(--gd90-text-muted);
  margin-top: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* === CTA BUTTONS === */
.gd90-cta-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--gd90-accent), var(--gd90-accent-light));
  color: var(--gd90-bg-dark);
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: var(--gd90-radius);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--gd90-transition);
  text-align: center;
}

.gd90-cta-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px var(--gd90-gold-glow);
}

.gd90-cta-text {
  color: var(--gd90-accent);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--gd90-transition);
  border-bottom: 1px dashed var(--gd90-accent);
}

.gd90-cta-text:hover {
  color: var(--gd90-accent-light);
}

/* === INFO CARDS === */
.gd90-info-card {
  background: var(--gd90-bg-card);
  border: 1px solid var(--gd90-border);
  border-radius: var(--gd90-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.gd90-info-card h3 {
  color: var(--gd90-accent);
  font-size: 1.4rem;
  margin: 0 0 0.6rem 0;
}

.gd90-info-card p {
  color: var(--gd90-text-muted);
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.6;
}

/* === FEATURES GRID === */
.gd90-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.gd90-feature-item {
  background: var(--gd90-bg-card);
  border: 1px solid var(--gd90-border);
  border-radius: var(--gd90-radius-sm);
  padding: 1rem;
  text-align: center;
  transition: var(--gd90-transition);
}

.gd90-feature-item:hover {
  border-color: var(--gd90-accent);
}

.gd90-feature-item i,
.gd90-feature-item .material-icons {
  font-size: 2.4rem;
  color: var(--gd90-accent);
  margin-bottom: 0.5rem;
}

.gd90-feature-item h4 {
  color: var(--gd90-accent);
  font-size: 1.2rem;
  margin: 0 0 0.3rem 0;
}

.gd90-feature-item p {
  color: var(--gd90-text-muted);
  font-size: 1rem;
  margin: 0;
}

/* === WINNERS TABLE === */
.gd90-winners-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gd90-winner-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(184, 134, 11, 0.1);
  font-size: 1.1rem;
}

.gd90-winner-name {
  color: var(--gd90-text);
  font-weight: 500;
}

.gd90-winner-game {
  color: var(--gd90-text-muted);
}

.gd90-winner-amount {
  color: var(--gd90-accent);
  font-weight: 700;
}

/* === TESTIMONIALS === */
.gd90-testimonial {
  background: var(--gd90-bg-card);
  border-left: 3px solid var(--gd90-accent);
  border-radius: 0 var(--gd90-radius-sm) var(--gd90-radius-sm) 0;
  padding: 1rem;
  margin-bottom: 0.8rem;
}

.gd90-testimonial-text {
  color: var(--gd90-text-muted);
  font-size: 1.15rem;
  font-style: italic;
  margin: 0 0 0.5rem 0;
}

.gd90-testimonial-author {
  color: var(--gd90-accent);
  font-size: 1rem;
  font-weight: 600;
}

/* === PAYMENT METHODS === */
.gd90-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.gd90-payment-item {
  background: var(--gd90-bg-card);
  border: 1px solid var(--gd90-border);
  border-radius: var(--gd90-radius-sm);
  padding: 0.6rem 1rem;
  font-size: 1.1rem;
  color: var(--gd90-text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* === BOTTOM NAVIGATION === */
.gd90-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--gd90-bg) 0%, var(--gd90-bg-dark) 100%);
  border-top: 2px solid var(--gd90-accent);
  height: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.4rem;
}

@media (min-width: 769px) {
  .gd90-bottom-nav {
    display: none;
  }
}

.gd90-bnav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 52px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gd90-text-muted);
  transition: var(--gd90-transition);
  padding: 0.2rem;
  border-radius: var(--gd90-radius-sm);
}

.gd90-bnav-btn:hover,
.gd90-bnav-btn:active {
  color: var(--gd90-accent);
  background: rgba(184, 134, 11, 0.1);
  transform: scale(1.08);
}

.gd90-bnav-active {
  color: var(--gd90-accent) !important;
}

.gd90-bnav-icon {
  font-size: 22px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gd90-bnav-label {
  font-size: 1rem;
  line-height: 1;
}

/* === FOOTER === */
.gd90-footer {
  background: var(--gd90-bg-dark);
  border-top: 1px solid var(--gd90-border);
  padding: 1.6rem 1.2rem;
  margin-bottom: 60px;
}

@media (min-width: 769px) {
  .gd90-footer {
    margin-bottom: 0;
  }
}

.gd90-footer-brand {
  text-align: center;
  margin-bottom: 1rem;
}

.gd90-footer-brand p {
  color: var(--gd90-text-muted);
  font-size: 1.1rem;
  margin: 0.3rem 0;
}

.gd90-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 1rem 0;
}

.gd90-footer-links a {
  color: var(--gd90-accent);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--gd90-border);
  border-radius: var(--gd90-radius-sm);
  transition: var(--gd90-transition);
}

.gd90-footer-links a:hover {
  background: rgba(184, 134, 11, 0.1);
}

.gd90-footer-copy {
  text-align: center;
  color: var(--gd90-text-muted);
  font-size: 1rem;
  margin-top: 1rem;
}

/* === UTILITIES === */
.gd90-text-center {
  text-align: center;
}

.gd90-text-gold {
  color: var(--gd90-accent);
}

.gd90-mt-1 {
  margin-top: 0.8rem;
}

.gd90-mt-2 {
  margin-top: 1.6rem;
}

.gd90-mb-1 {
  margin-bottom: 0.8rem;
}

.gd90-mb-2 {
  margin-bottom: 1.6rem;
}

.gd90-promo-banner {
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.15), rgba(184, 134, 11, 0.05));
  border: 1px solid var(--gd90-border);
  border-radius: var(--gd90-radius);
  padding: 1.2rem;
  text-align: center;
  margin: 1rem 0;
}

.gd90-promo-banner h3 {
  color: var(--gd90-accent);
  font-size: 1.4rem;
  margin: 0 0 0.5rem 0;
}

.gd90-promo-banner p {
  color: var(--gd90-text-muted);
  font-size: 1.15rem;
  margin: 0 0 0.8rem 0;
}

/* === FAQ ACCORDION === */
.gd90-faq-item {
  border: 1px solid var(--gd90-border);
  border-radius: var(--gd90-radius-sm);
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.gd90-faq-q {
  padding: 0.8rem 1rem;
  background: var(--gd90-bg-card);
  color: var(--gd90-accent);
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
}

.gd90-faq-a {
  padding: 0.8rem 1rem;
  color: var(--gd90-text-muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

/* === DESKTOP NAV (hidden on mobile) === */
@media (min-width: 769px) {
  .gd90-header {
    max-width: 430px;
    left: 50%;
    transform: translateX(-50%);
  }
  .gd90-mobile-menu {
    max-width: 430px;
    left: 50%;
    transform: translateX(-50%) translateY(-120%);
  }
  .gd90-menu-active {
    transform: translateX(-50%) translateY(0);
  }
  .gd90-bottom-nav {
    max-width: 430px;
    left: 50%;
    transform: translateX(-50%);
  }
  .gd90-footer {
    max-width: 430px;
    margin: 0 auto;
  }
}

/* === H tags for content pages === */
.gd90-page-h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gd90-accent);
  margin: 1rem 0 0.8rem 0;
  line-height: 1.3;
}

.gd90-page-h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gd90-accent);
  margin: 1.2rem 0 0.6rem 0;
  line-height: 1.3;
}

.gd90-page-h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gd90-accent-light);
  margin: 1rem 0 0.4rem 0;
}

.gd90-content-text {
  color: var(--gd90-text-muted);
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0.4rem 0;
}

.gd90-content-text a {
  color: var(--gd90-accent);
  text-decoration: none;
  border-bottom: 1px dashed var(--gd90-accent);
}

.gd90-content-text a:hover {
  color: var(--gd90-accent-light);
}

/* === REVIEW STARS === */
.gd90-stars {
  color: var(--gd90-accent);
  font-size: 1.4rem;
  letter-spacing: 2px;
}

/* === STEP LIST === */
.gd90-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: gd90-step-counter;
}

.gd90-steps li {
  counter-increment: gd90-step-counter;
  padding: 0.6rem 0 0.6rem 2.8rem;
  position: relative;
  font-size: 1.15rem;
  color: var(--gd90-text-muted);
  line-height: 1.5;
}

.gd90-steps li::before {
  content: counter(gd90-step-counter);
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 2rem;
  height: 2rem;
  background: var(--gd90-accent);
  color: var(--gd90-bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

/* === APP DOWNLOAD BANNER === */
.gd90-app-banner {
  background: linear-gradient(135deg, var(--gd90-bg-card), rgba(184, 134, 11, 0.1));
  border: 1px solid var(--gd90-border);
  border-radius: var(--gd90-radius);
  padding: 1.4rem;
  text-align: center;
}

.gd90-app-banner h3 {
  color: var(--gd90-accent);
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
}

.gd90-app-banner p {
  color: var(--gd90-text-muted);
  font-size: 1.15rem;
  margin: 0 0 1rem 0;
}
