/* ===== Base styles ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-base);
  min-height: 100vh;
}

/* Container styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

/* Form styles */
input[type="email"],
input[type="text"],
input[type="password"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-bg-muted);
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 0 0.5rem;
  }

  .logo-section img {
    max-width: 320px !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.25rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}

/* ===== GCaddy-specific styles ===== */

/* Shot shape styles */
.shot-shape-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.shot-shape-option input[type="radio"]:checked + label {
  background-color: var(--color-primary) !important;
  color: var(--color-text-on-primary) !important;
  border-color: var(--color-text-on-primary) !important;
}

.shot-shape-option label:hover {
  background-color: var(--color-bg-muted);
  border-color: var(--color-secondary);
}

/* Nav card hover */
.nav-card {
  transition: all 0.2s ease;
}

.nav-card:hover {
  background-color: var(--color-bg-muted);
}

.mobile-nav-card {
  transition: all 0.2s ease;
}

.mobile-nav-card:hover {
  background-color: var(--color-bg-muted);
}

/* Fixed header */
.fixed-header {
  background-color: var(--color-bg-card);
  border-bottom: 2px solid var(--color-secondary);
}

/* Tier gate blur effect */
.tier-gate-content.blur-sm {
  filter: blur(4px);
  user-select: none;
}

.tier-gate-container {
  overflow: hidden;
  border-radius: 0.75rem;
}

.tier-gate-overlay {
  backdrop-filter: blur(2px);
}
