/* Cloudflare AppKit - Professional Landing Page Styles */

/* ===== GLOBAL STYLES ===== */
:root {
    --cloudflare-orange: #F38020;
    --cloudflare-orange-hover: #E6730A;
    --cloudflare-orange-light: #FF9A4D;
    --cloudflare-orange-dark: #CC6B1A;
    --primary-color: #F38020;
    --primary-hover: #E6730A;
    --secondary-color: #6c757d;
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --dark-border: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #6c757d;
    --gradient-primary: linear-gradient(135deg, #F38020 0%, #E6730A 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    --gradient-orange: linear-gradient(135deg, #F38020 0%, #FF9A4D 100%);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.3);
    --shadow-orange: 0 8px 25px rgba(243, 128, 32, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===== UTILITY CLASSES ===== */
.text-orange {
    color: var(--cloudflare-orange) !important;
}

.bg-orange {
    background-color: var(--cloudflare-orange) !important;
}

.btn-orange {
    background: var(--gradient-orange);
    border: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
}

.btn-orange:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(243, 128, 32, 0.3);
}

.btn-outline-orange {
    color: var(--cloudflare-orange);
    border-color: var(--cloudflare-orange);
    background: transparent;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-orange:hover {
    background: var(--cloudflare-orange);
    border-color: var(--cloudflare-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
    background: #0d6efd;
    color: white;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1051;
    font-size: 0.9rem;
}

.disclaimer-content {
    text-align: center;
}

.disclaimer-link {
    color: white;
    text-decoration: underline;
    font-weight: 500;
    transition: var(--transition);
}

.disclaimer-link:hover {
    color: #f8f9fa;
    text-decoration: underline;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
    transition: var(--transition);
    padding: 1rem 0;
    top: 40px;
}

.navbar-brand {
    font-size: 1.8rem !important;
    font-weight: 700;
    color: var(--text-primary) !important;
    letter-spacing: -0.02em;
}

.navbar-brand i {
    color: var(--cloudflare-orange);
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--cloudflare-orange) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--cloudflare-orange);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--gradient-dark);
    position: relative;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(243, 128, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(243, 128, 32, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--cloudflare-orange);
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.hero-description .lead {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 500;
}

.hero-actions {
    margin-top: 3rem;
}

/* ===== SECTIONS ===== */
.features-section,
.capabilities-section,
.comparison-section,
.use-cases-section,
.how-it-works-section,
.cta-section,
.contact-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.features-section {
    background: var(--gradient-dark);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(243, 128, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(243, 128, 32, 0.01) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(243, 128, 32, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-orange);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== CAPABILITY ITEMS ===== */
.capability-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--dark-card);
    border-radius: 15px;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
}

.capability-item:hover {
    transform: translateX(10px);
    border-color: rgba(243, 128, 32, 0.3);
}

.capability-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.capability-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.capability-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--dark-border);
}

.table-dark {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(243, 128, 32, 0.05);
    --bs-table-hover-bg: rgba(243, 128, 32, 0.1);
}

.table-dark th {
    border-color: var(--dark-border);
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.5rem 1rem;
}

.table-dark td {
    border-color: var(--dark-border);
    color: var(--text-secondary);
    padding: 1.5rem 1rem;
    vertical-align: middle;
}

.comparison-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}

/* ===== USE CASE CARDS ===== */
.use-case-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.use-case-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 128, 32, 0.3);
    box-shadow: var(--shadow-orange);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.use-case-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===== HOW IT WORKS ===== */
.work-step {
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: var(--shadow-orange);
}

.work-step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.work-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-dark);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(243, 128, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(243, 128, 32, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-actions {
    margin-top: 2rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--dark-bg);
    border-top: 1px solid var(--dark-border);
}

.contact-info {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-emails {
    margin-top: 2rem;
}

.contact-email {
    color: var(--cloudflare-orange);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-email:hover {
    color: var(--cloudflare-orange-hover);
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    color: var(--text-secondary);
}

.footer-brand {
    font-size: 1.1rem;
}

.footer-brand strong {
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--cloudflare-orange);
    text-decoration: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 140px 0 60px !important;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-description .lead {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-section,
    .capabilities-section,
    .comparison-section,
    .use-cases-section,
    .how-it-works-section,
    .cta-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .feature-card,
    .use-case-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .capability-item {
        flex-direction: column;
        text-align: center;
    }
    
    .capability-icon {
        margin: 0 auto 1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem !important;
    }
    
    .cta-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .use-case-card {
        padding: 1.5rem;
    }
    
    .feature-icon,
    .use-case-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.feature-card,
.use-case-card,
.capability-item,
.section-title {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--cloudflare-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cloudflare-orange-hover);
}

/* ===== SELECTION STYLING ===== */
::selection {
    background: var(--cloudflare-orange);
    color: white;
}

::-moz-selection {
    background: var(--cloudflare-orange);
    color: white;
}

/* ===== FOCUS STYLES ===== */
.btn:focus,
.btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(243, 128, 32, 0.3);
    outline: none;
}

.nav-link:focus,
.nav-link:focus-visible {
    outline: 2px solid var(--cloudflare-orange);
    outline-offset: 2px;
}

/* ===== LOADING STATES ===== */
.btn-orange:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-orange:disabled:hover {
    transform: none;
    box-shadow: var(--shadow-orange);
}

/* ===== DEMO PAGE STYLES ===== */
.demo-overview-section {
    background: var(--gradient-dark);
    position: relative;
}

.demo-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(243, 128, 32, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.demo-feature {
    padding: 2rem 1rem;
}

.demo-feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-orange);
}

.demo-feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.demo-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== DEMO PANELS ===== */
.demo-panel {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.demo-panel-header {
    background: var(--gradient-orange);
    padding: 1.5rem;
    border-bottom: 1px solid var(--dark-border);
}

.demo-panel-header h4 {
    color: white;
    margin: 0;
    font-weight: 600;
}

.demo-panel-body {
    padding: 2rem;
}

.demo-panel-body pre {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    border: 1px solid var(--dark-border);
}

.demo-panel-body code {
    color: #f8f8f2;
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.demo-action {
    text-align: center;
}

/* ===== API ENDPOINTS ===== */
.api-endpoints {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.api-endpoint {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--dark-bg);
    border-radius: 10px;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
}

.api-endpoint:hover {
    border-color: rgba(243, 128, 32, 0.3);
    transform: translateX(5px);
}

.method {
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-right: 1rem;
    min-width: 60px;
    text-align: center;
}

.method.get {
    background: #28a745;
    color: white;
}

.method.post {
    background: #007bff;
    color: white;
}

.method.put {
    background: #ffc107;
    color: #000;
}

.method.delete {
    background: #dc3545;
    color: white;
}

.endpoint {
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    color: var(--cloudflare-orange);
    font-weight: 500;
    margin-right: 1rem;
    min-width: 150px;
}

.description {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== LIVE DEMO APP ===== */
.demo-app {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.demo-app-header {
    background: var(--gradient-orange);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--dark-border);
}

.demo-app-header h4 {
    color: white;
    margin: 0;
    font-weight: 600;
}

.demo-stats {
    display: flex;
    gap: 1.5rem;
}

.stat {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.demo-app-body {
    padding: 2rem;
}

.add-task-form {
    margin-bottom: 2rem;
}

.add-task-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.add-task-form .form-control {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.add-task-form .form-control:focus {
    background: var(--dark-bg);
    border-color: var(--cloudflare-orange);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(243, 128, 32, 0.1);
}

.task-list {
    min-height: 200px;
}

.demo-placeholder {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.demo-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.task-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.task-item:hover {
    border-color: rgba(243, 128, 32, 0.3);
    transform: translateX(5px);
}

.task-item.completed {
    opacity: 0.7;
}

.task-item.completed .task-title {
    text-decoration: line-through;
    color: var(--text-muted);
}

.task-checkbox {
    margin-right: 1rem;
}

.task-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--cloudflare-orange);
}

.task-content {
    flex: 1;
}

.task-title {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.task-meta {
    font-size: 0.8rem;
}

.task-actions {
    margin-left: 1rem;
}

.task-actions .btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
}

/* ===== CODE EXAMPLES ===== */
.code-examples-section {
    background: var(--gradient-dark);
}

.code-example {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.code-example h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.code-example pre {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 1.5rem;
    overflow-x: auto;
    border: 1px solid var(--dark-border);
}

.code-example code {
    color: #f8f8f2;
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== DEMO NOTIFICATIONS ===== */
.demo-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-weight: 500;
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-heavy);
}

.demo-notification.show {
    transform: translateX(0);
}

.demo-notification.success {
    border-left: 4px solid #28a745;
}

.demo-notification.error {
    border-left: 4px solid #dc3545;
}

.demo-notification.warning {
    border-left: 4px solid #ffc107;
}

.demo-notification.info {
    border-left: 4px solid var(--cloudflare-orange);
}

/* ===== RESPONSIVE DEMO STYLES ===== */
@media (max-width: 768px) {
    .demo-app-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .demo-stats {
        justify-content: center;
    }
    
    .add-task-form .input-group {
        flex-direction: column;
    }
    
    .task-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .task-checkbox {
        margin-right: 0;
    }
    
    .task-actions {
        margin-left: 0;
        align-self: flex-end;
    }
    
    .api-endpoint {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .method {
        margin-right: 0;
    }
    
    .endpoint {
        margin-right: 0;
        min-width: auto;
    }
}

/* ===== CONTENT PAGES STYLES ===== */
.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--cloudflare-orange);
}

.content-section h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.content-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-section ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.content-section a {
    color: var(--cloudflare-orange);
    text-decoration: none;
    transition: var(--transition);
}

.content-section a:hover {
    color: var(--cloudflare-orange-hover);
    text-decoration: underline;
}