/* CSS Reset and Variables */
:root {
  --primary: #f97316;
  --primary-glow: rgba(249, 115, 22, 0.4);
  --secondary: #ea580c;
  --accent: #fdba74;
  --accent-glow: rgba(253, 186, 116, 0.3);
  --bg-dark-1: #1a0f00;
  --bg-dark-2: #3d2200;
  --bg-dark-3: #0f0800;
  --card-bg: rgba(61, 34, 0, 0.6);
  --card-border: rgba(249, 115, 22, 0.2);
  --text-light: #ffffff;
  --text-gray: #d1d5db;
}

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

body {
  font-family: 'Source Sans Pro', system-ui, sans-serif;
  font-weight: 400;
  background: linear-gradient(180deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 50%, var(--bg-dark-3) 100%);
  color: var(--text-light);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="1" height="1" fill="rgba(249,115,22,0.03)"/></svg>') repeat;
  background-size: 4px 4px;
  pointer-events: none;
  z-index: 1;
}

.ggg1-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Header */
.ggg1-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 15, 0, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 16px 0;
}

.ggg1-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ggg1-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 0 20px var(--primary-glow);
}

.ggg1-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.ggg1-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.ggg1-nav-link {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.4s ease-out;
  position: relative;
}

.ggg1-nav-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.ggg1-badge-18 {
  background: var(--primary);
  color: var(--bg-dark-1);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.ggg1-mobile-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
}

/* Hero Section */
.ggg1-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--bg-dark-1) 0%, var(--bg-dark-2) 50%, var(--bg-dark-3) 100%);
  animation: ggg1-gradient-shift 8s ease infinite;
  overflow: hidden;
}

@keyframes ggg1-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.ggg1-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  animation: ggg1-orb-float 15s ease-in-out infinite;
}

@keyframes ggg1-orb-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 30px); }
}

.ggg1-hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.ggg1-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 8px 8px 0 var(--secondary), 0 0 40px var(--primary-glow);
  animation: ggg1-title-glow 3s ease-in-out infinite;
}

@keyframes ggg1-title-glow {
  0%, 100% { text-shadow: 8px 8px 0 var(--secondary), 0 0 40px var(--primary-glow); }
  50% { text-shadow: 8px 8px 0 var(--secondary), 0 0 60px var(--primary-glow); }
}

.ggg1-hero-subtitle {
  font-size: 24px;
  color: var(--text-gray);
  margin-bottom: 48px;
  line-height: 1.6;
}

.ggg1-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.ggg1-stat-item {
  background: var(--card-bg);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid var(--card-border);
  box-shadow: 0 8px 24px var(--primary-glow);
  transition: all 0.4s ease-out;
}

.ggg1-stat-item:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 32px var(--primary-glow);
}

.ggg1-stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.ggg1-stat-label {
  font-size: 16px;
  color: var(--text-gray);
}

/* Buttons */
.ggg1-btn {
  display: inline-block;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.4s ease-out;
  cursor: pointer;
  border: none;
  font-family: 'Source Sans Pro', system-ui, sans-serif;
  position: relative;
}

.ggg1-btn-primary {
  background: transparent;
  color: var(--primary);
  border: 3px solid var(--primary);
  box-shadow: 6px 6px 0 var(--primary);
}

.ggg1-btn-primary:hover {
  transform: scale(1.03) translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--primary), 0 0 30px var(--primary-glow);
}

.ggg1-btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 3px solid var(--accent);
  box-shadow: 6px 6px 0 var(--accent);
}

.ggg1-btn-secondary:hover {
  transform: scale(1.03) translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--accent), 0 0 30px var(--accent-glow);
}

/* Section Spacing */
.ggg1-section {
  padding: 100px 20px;
  position: relative;
}

.ggg1-section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  box-shadow: 0 0 20px var(--primary-glow);
  margin: 80px 0;
}

.ggg1-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 56px;
  text-align: center;
  margin-bottom: 24px;
  text-shadow: 6px 6px 0 var(--secondary);
  color: var(--primary);
}

.ggg1-section-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Download Section */
.ggg1-download-card {
  background: var(--card-bg);
  padding: 64px;
  border-radius: 16px;
  border: 2px solid var(--card-border);
  box-shadow: 0 12px 48px var(--primary-glow);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.ggg1-form-group {
  margin-bottom: 24px;
}

.ggg1-input {
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  border-radius: 12px;
  border: 2px solid var(--card-border);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-light);
  font-family: 'Source Sans Pro', system-ui, sans-serif;
  transition: all 0.4s ease-out;
}

.ggg1-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.ggg1-success-message {
  display: none;
  background: rgba(34, 197, 94, 0.2);
  border: 2px solid #22c55e;
  color: #22c55e;
  padding: 24px;
  border-radius: 12px;
  font-size: 18px;
  margin-top: 24px;
}

/* Features Section */
.ggg1-features-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.ggg1-feature-item {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 16px;
  border: 2px solid var(--card-border);
  box-shadow: 0 8px 24px var(--primary-glow);
  display: flex;
  gap: 32px;
  align-items: center;
  transition: all 0.4s ease-out;
  position: relative;
  overflow: hidden;
}

.ggg1-feature-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, var(--primary-glow), transparent);
  animation: ggg1-shimmer 3s infinite;
  opacity: 0;
}

.ggg1-feature-item:hover::before {
  opacity: 1;
}

@keyframes ggg1-shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.ggg1-feature-item:hover {
  transform: scale(1.03) translateX(8px);
  box-shadow: 0 12px 32px var(--primary-glow);
}

.ggg1-feature-icon {
  font-size: 64px;
  min-width: 80px;
  text-align: center;
}

.ggg1-feature-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.ggg1-feature-content p {
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.6;
}

/* About Section */
.ggg1-about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ggg1-about-text {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 48px;
}

.ggg1-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.ggg1-badge {
  background: var(--card-bg);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid var(--card-border);
  box-shadow: 0 8px 24px var(--primary-glow);
  text-align: center;
  transition: all 0.4s ease-out;
}

.ggg1-badge:hover {
  transform: scale(1.03) translateY(-4px);
}

.ggg1-badge-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.ggg1-badge-text {
  font-size: 18px;
  color: var(--text-gray);
}

/* FAQ Section */
.ggg1-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.ggg1-faq-item {
  background: var(--card-bg);
  border-radius: 16px;
  border: 2px solid var(--card-border);
  box-shadow: 0 8px 24px var(--primary-glow);
  overflow: hidden;
  transition: all 0.4s ease-out;
}

.ggg1-faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-light);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  padding: 32px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease-out;
}

.ggg1-faq-question:hover {
  color: var(--primary);
}

.ggg1-faq-icon {
  font-size: 24px;
  transition: transform 0.4s ease-out;
  color: var(--primary);
}

.ggg1-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 32px;
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.6;
}

.ggg1-faq-item.active .ggg1-faq-answer {
  max-height: 500px;
  padding: 0 32px 32px;
}

.ggg1-faq-item.active .ggg1-faq-icon {
  transform: rotate(45deg);
}

/* Disclaimer Section */
.ggg1-disclaimer {
  background: rgba(249, 115, 22, 0.1);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 48px;
  margin: 100px auto;
  max-width: 1100px;
  text-align: center;
}

.ggg1-disclaimer-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 24px;
  font-weight: 600;
}

.ggg1-disclaimer-text {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* Footer */
.ggg1-footer {
  background: rgba(15, 8, 0, 0.9);
  border-top: 2px solid var(--card-border);
  padding: 64px 20px 32px;
  margin-top: 100px;
  text-align: center;
}

.ggg1-footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 32px;
  font-weight: 600;
  text-shadow: 0 0 20px var(--primary-glow);
}

.ggg1-footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.ggg1-footer-link {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.4s ease-out;
}

.ggg1-footer-link:hover {
  color: var(--primary);
}

.ggg1-footer-badge-large {
  background: var(--primary);
  color: var(--bg-dark-1);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 24px;
  display: inline-block;
  margin: 32px 0;
  box-shadow: 0 8px 24px var(--primary-glow);
}

.ggg1-footer-text {
  color: var(--text-gray);
  font-size: 14px;
  margin-top: 32px;
}

/* Age Verification Modal */
.ggg1-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.ggg1-modal-content {
  background: var(--bg-dark-2);
  padding: 64px;
  border-radius: 16px;
  border: 3px solid var(--primary);
  max-width: 500px;
  text-align: center;
  box-shadow: 0 24px 64px var(--primary-glow);
}

.ggg1-modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 24px;
  font-weight: 600;
}

.ggg1-modal-text {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.6;
}

.ggg1-modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Point System Page */
.ggg1-points-table {
  width: 100%;
  border-collapse: collapse;
  margin: 48px 0;
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--card-border);
}

.ggg1-points-table th {
  background: var(--secondary);
  color: var(--text-light);
  padding: 20px;
  text-align: left;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
}

.ggg1-points-table td {
  padding: 20px;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-gray);
  font-size: 18px;
}

.ggg1-points-table tr:last-child td {
  border-bottom: none;
}

.ggg1-points-value {
  color: var(--primary);
  font-weight: 600;
  font-size: 20px;
}

.ggg1-tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.ggg1-tip-card {
  background: var(--card-bg);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid var(--card-border);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.ggg1-tip-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.ggg1-tip-card p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
}

/* Legal Pages */
.ggg1-legal-page {
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.ggg1-legal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 32px;
  text-shadow: 6px 6px 0 var(--secondary);
  font-weight: 600;
}

.ggg1-legal-content {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.8;
}

.ggg1-legal-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  color: var(--primary);
  margin: 48px 0 24px;
  font-weight: 600;
}

.ggg1-legal-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  color: var(--accent);
  margin: 32px 0 16px;
  font-weight: 600;
}

.ggg1-legal-content p {
  margin-bottom: 16px;
}

.ggg1-legal-content ul {
  margin: 16px 0 16px 32px;
}

.ggg1-legal-content li {
  margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ggg1-hero-title { font-size: 56px; }
  .ggg1-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ggg1-faq-grid { grid-template-columns: 1fr; }
  .ggg1-tips-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .ggg1-nav-links { display: none; }
  .ggg1-mobile-toggle { display: block; }
  
  .ggg1-nav.active .ggg1-nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 15, 0, 0.98);
    padding: 32px;
    border-bottom: 2px solid var(--card-border);
  }
  
  .ggg1-hero-title { font-size: 42px; }
  .ggg1-section-title { font-size: 36px; }
  .ggg1-stats-grid { grid-template-columns: 1fr; }
  .ggg1-feature-item { flex-direction: column; text-align: center; }
  .ggg1-trust-badges { grid-template-columns: 1fr; }
  .ggg1-download-card { padding: 32px; }
  .ggg1-modal-content { padding: 32px; margin: 20px; }
}

@media (max-width: 640px) {
  .ggg1-hero-title { font-size: 32px; text-shadow: 4px 4px 0 var(--secondary), 0 0 30px var(--primary-glow); }
  .ggg1-section-title { font-size: 28px; text-shadow: 4px 4px 0 var(--secondary); }
  .ggg1-btn { padding: 14px 32px; font-size: 16px; }
  .ggg1-footer-links { flex-direction: column; gap: 16px; }
}