@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

:root {
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --bg-light: #fff0f5;
    --text-dark: #2c2c2c;
    --card-bg: #fff;
    --transition: all 0.2s ease;
    --shadow: 0 2px 10px rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeIn 0.3s ease-in;
}

h1, h2 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.7rem;
}

p, label, li {
    font-weight: 400;
}

.content-box {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
}

.content-box h2 {
    margin-top: 0;
    color: var(--primary-dark);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

.btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(233, 30, 99, 0.17);
}

.btn.secondary {
    background: #fff;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn.secondary:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn.large {
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

textarea, input, select {
    width: 100%;
    padding: 0.75rem;
    font-family: inherit;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: var(--text-dark);
    transition: border 0.2s;
}

textarea:focus, input:focus, select:focus {
    border-color: var(--primary);
    outline: none;
}

.argument-box, .insight-box, .prompt-box {
    border: 1px solid #eee;
    background: #fff;
    color: var(--text-dark);
    padding: 1rem;
    border-radius: 6px;
    min-height: 80px;
    box-shadow: var(--shadow);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.word-counter {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #888;
    text-align: right;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
}

ul li, ol li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

ul li::marker, ol li::marker {
    color: var(--primary-dark);
    font-weight: bold;
}

.page-header {
    margin-bottom: 2rem;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .navigation {
        flex-direction: column;
        gap: 0.75rem;
    }

    .navigation .btn {
        width: 100%;
    }
}
