/**
 * Strategy guidelines page — migrated from guidelines.html
 */
* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary-color: #32cd32;
            --primary-dark: #28a428;
            --text-primary: #ffffff;
            --text-secondary: #d1d5db;
            --text-muted: #9ca3af;
            --bg-primary: #1a1a1a;
            --bg-secondary: #0f0f0f;
            --bg-tertiary: #262626;
            --border-color: #666666;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-secondary);
            -webkit-font-smoothing: antialiased;
        }

        .btn-primary {
            background: #32cd32;
            color: white;
            border: none;
            padding: 0.5rem 1.25rem;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            opacity: 0.9;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #32cd32 0%, #28a428 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-subtitle {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
        }

        .section {
            background: var(--bg-primary);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text-primary);
        }

        .section-title i {
            color: #32cd32;
            font-size: 1.25rem;
        }

        .section-content {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .guideline-list {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }

        .guideline-list li {
            padding: 1rem;
            margin-bottom: 1rem;
            background: var(--bg-tertiary);
            border-radius: 12px;
            border-left: 4px solid #32cd32;
            position: relative;
        }

        .guideline-list li::before {
            content: '✓';
            position: absolute;
            left: -12px;
            top: 50%;
            transform: translateY(-50%);
            background: #32cd32;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.875rem;
        }

        .example-box {
            background: var(--bg-tertiary);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid var(--border-color);
        }

        .example-title {
            font-weight: 700;
            color: #32cd32;
            margin-bottom: 0.75rem;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .example-text {
            color: var(--text-secondary);
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            line-height: 1.8;
        }

        .warning-box {
            background: rgba(239, 68, 68, 0.1);
            border: 2px solid rgba(239, 68, 68, 0.3);
            border-radius: 12px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }

        .warning-title {
            font-weight: 700;
            color: #ef4444;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .warning-text {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .tip-card {
            background: var(--bg-tertiary);
            border-radius: 12px;
            padding: 1.25rem;
            border: 1px solid var(--border-color);
            transition: all 0.2s ease;
        }

        .tip-card:hover {
            border-color: #32cd32;
            transform: translateY(-2px);
        }

        .tip-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .tip-title {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .tip-text {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        @media (max-width: 768px) {
            .container {
                padding: 2rem 1rem;
            }

            .page-title {
                font-size: 2rem;
            }

            .section {
                padding: 1.5rem;
            }

            .tips-grid {
                grid-template-columns: 1fr;
            }
        }

/* Former inline-only rules (no color changes) */
.guidelines-muted {
  color: var(--text-muted);
}

.guidelines-supported-lede {
  margin-bottom: 1.5rem;
}

.section--cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.1) 0%, rgba(26, 26, 26, 0.98) 100%);
  border: 2px solid #32cd32;
}

.section-title.section-title--center {
  justify-content: center;
}

.guidelines-cta__lede {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.btn-primary.btn-primary--cta {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}
