/* ===== DECIDE-ME SPECIFIC STYLES ===== */
/* @charset "UTF-8"; */

/* ===== BREADCRUMB ENHANCEMENT ===== */
.breadcrumb {
    margin: 0 auto 2rem;
    padding: 1rem 0;
    max-width: 900px;
}

.breadcrumb ol {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
    font-size: 0.95rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    color: var(--border-color);
    font-size: 1.2rem;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.15);
}

.breadcrumb span[aria-current="page"] {
    color: #4f46e5;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    position: relative;
    overflow: hidden;
}

.breadcrumb span[aria-current="page"]::before {
    content: '🎲';
    margin-right: 0.5rem;
    font-size: 0.9em;
}

/* ===== DECIDE-ME PAGE ENHANCEMENT ===== */
.decide-page {
    padding: 2rem 0 5rem;
    animation: fadeIn 0.6s ease-out;
}

.decide-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.75rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.decide-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

.decide-subtitle {
    text-align: center;
    color: var(--text-light);
    margin: 2rem auto 3rem;
    max-width: 800px;
    font-size: 1.125rem;
    line-height: 1.6;
    padding: 0 1rem;
}

/* ===== SEO INTRO CARD ===== */
.seo-intro-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem;
    margin: 2rem auto 3rem;
    border: 1px solid var(--border-color);
    border-left: 6px solid #4f46e5;
    max-width: 900px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.seo-intro-card::before {
    content: '🎲';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.seo-intro-card h2 {
    margin-top: 0;
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.seo-intro-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.seo-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.benefit:hover {
    border-color: #4f46e5;
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit h3 {
    font-size: 1.25rem;
    margin: 0.5rem 0;
    color: var(--text-color);
}

.benefit p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-light);
}

/* ===== DECIDE FORM CONTAINER ===== */
.decide-form-container {
    max-width: 900px;
    margin: 0 auto;
    animation: slideUp 0.8s ease-out 0.2s both;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.decide-form {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
    position: relative;
    overflow: visible;
}

.decide-form::before {
    content: '🎲';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0.1;
    z-index: 0;
}

.decide-form::after {
    content: '🤔';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 2.5rem;
    opacity: 0.1;
    z-index: 0;
}

/* ===== FORM SECTIONS ===== */
.form-section-decide {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.form-section-decide:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-decide h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.form-section-decide h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: inline-block;
}

/* ===== DILEMMA INPUT ===== */
.dilemma-input {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--bg-color);
    color: var(--text-color);
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    min-height: 150px;
    font-size: 1.125rem;
    line-height: 1.6;
    display: block;
    margin: 0 auto;
    max-width: 700px;
}

.dilemma-input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
    transform: translateY(-2px);
}

.input-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 700px;
    margin: 1rem auto 0;
}

.char-count {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    background: var(--bg-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.input-hint {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    background: rgba(79, 70, 229, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

/* ===== CATEGORY GRID ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.category-card-decide {
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-color);
    display: block;
    position: relative;
    overflow: visible;
    text-align: center;
}

.category-card-decide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.category-card-decide:hover {
    border-color: #4f46e5;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-card-decide:hover::before {
    transform: scaleX(1);
}

.category-card-decide input {
    display: none;
}

.category-card-decide input:checked + .category-content-decide {
    color: #4f46e5;
}

.category-card-decide input:checked + .category-content-decide .category-icon-decide {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    transform: scale(1.1);
}

.category-content-decide {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.category-icon-decide {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.category-name-decide {
    display: block;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.category-desc-decide {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    font-style: italic;
}

/* ===== DESPERATION SLIDER ===== */
.desperation-section {
    margin-top: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.slider-wrapper-decide {
    padding: 1.5rem 0;
}

.desperation-slider {
    width: 100%;
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg, #10b981 0%, #f59e0b 50%, #ef4444 100%);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    margin: 0.5rem 0 1rem;
}

.desperation-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid #4f46e5;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.desperation-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
}

.slider-labels-decide {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.desperation-value-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border: 2px solid var(--border-color);
    max-width: 400px;
    margin: 2rem auto 0;
}

.value-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.value-number {
    font-size: 2rem;
    font-weight: 800;
    color: #4f46e5;
    min-width: 50px;
    text-align: center;
}

.value-emoji {
    font-size: 2.5rem;
    min-width: 50px;
    text-align: center;
}

/* ===== EXAMPLE DILEMMAS ===== */
.examples-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px dashed var(--border-color);
    text-align: center;
}

.examples-section h3 {
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.examples-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

.example-dilemmas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.example-dilemma {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid #4f46e5;
    width: 100%;
    font-family: inherit;
    line-height: 1.6;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.example-dilemma:hover {
    background: var(--bg-secondary);
    transform: translateY(-5px) translateX(10px);
    border-color: #4f46e5;
    box-shadow: var(--shadow);
}

.example-dilemma::before {
    content: '💬';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0.3;
}

/* ===== DISCLAIMER ===== */
.disclaimer-decide {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(236, 72, 153, 0.08));
    border-radius: var(--radius);
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin: 2rem auto 3rem;
    max-width: 700px;
    text-align: left;
}

.disclaimer-icon {
    font-size: 3rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f59e0b, #ec4899);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.disclaimer-content {
    flex: 1;
}

.disclaimer-content h4 {
    margin-top: 0;
    color: #f59e0b;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.disclaimer-content p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===== SUBMIT BUTTON ===== */
.form-actions {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--border-color);
}

.form-actions .btn {
    min-width: 300px;
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.form-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.form-actions .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
}

.form-actions .btn:hover::before {
    left: 100%;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.loading-spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== QUICK STATS ===== */
.quick-stats {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem;
    margin: 3rem auto;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    max-width: 900px;
    text-align: center;
}

.quick-stats h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.quick-stats h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.stat-item-decide {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.stat-item-decide:hover {
    border-color: #4f46e5;
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-item-decide .stat-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    color: #4f46e5;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.stat-item-decide:hover .stat-icon {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    transform: scale(1.1);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ===== POPULAR DILEMMAS ===== */
.popular-dilemmas {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 3rem;
    margin: 3rem auto;
    border: 1px solid var(--border-color);
    max-width: 900px;
}

.popular-dilemmas h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.popular-dilemmas h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.popular-item:hover {
    border-color: #4f46e5;
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.popular-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    color: #4f46e5;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.popular-item:hover .popular-icon {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    transform: scale(1.1);
}

.popular-content {
    flex: 1;
}

.popular-text {
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.4;
}

.popular-count {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ===== DECIDE-ME RESULTS SECTION ===== */
.results-container {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.results-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: var(--radius);
    border: 1px solid rgba(79, 70, 229, 0.2);
    position: relative;
    overflow: hidden;
}

.results-header::before {
    content: '🎲';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.results-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.results-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    font-style: italic;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Dilemma Display */
.dilemma-display {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.dilemma-display::before {
    content: '🤔';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    opacity: 0.5;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    display: inline-block;
    background: var(--bg-secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.dilemma-text {
    font-size: 1.375rem;
    line-height: 1.7;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border-left: 6px solid #4f46e5;
    font-style: italic;
    margin: 1rem 0 0;
    color: var(--text-color);
    position: relative;
    max-width: 700px;
    margin: 1.5rem auto 0;
}

.dilemma-text::before,
.dilemma-text::after {
    content: '"';
    font-size: 4rem;
    color: rgba(79, 70, 229, 0.2);
    position: absolute;
    font-family: serif;
    line-height: 1;
}

.dilemma-text::before {
    top: 10px;
    left: 20px;
}

.dilemma-text::after {
    bottom: 10px;
    right: 20px;
    transform: rotate(180deg);
}

/* Decision Reveal Card */
.decision-reveal-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem;
    margin-bottom: 3rem;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.decision-reveal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
}

.decision-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.decision-icon-large {
    font-size: 4.5rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 50%;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.decision-title h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    color: var(--text-color);
}

.decision-type-badge {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    min-width: 200px;
}

.decision-type-badge:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.decision-content {
    margin-bottom: 2.5rem;
}

.decision-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border-left: 6px solid #4f46e5;
    max-width: 700px;
    margin: 0 auto;
}

.message-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.decision-message p {
    margin: 0;
    font-size: 1.375rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
}

/* Decision Advice */
.decision-advice {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: var(--radius);
    border: 1px solid rgba(79, 70, 229, 0.2);
    max-width: 700px;
    margin: 2rem auto;
}

.advice-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.advice-content {
    flex: 1;
    text-align: left;
}

.advice-title {
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.advice-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    margin: 0;
}

/* Decision Confidence */
.decision-confidence {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    text-align: center;
}

.decision-confidence h4 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.5rem;
}

.confidence-meter {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.meter-bar {
    height: 20px;
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    border: 2px solid var(--border-color);
}

.meter-fill {
    height: 100%;
    border-radius: 8px;
    transition: width 1s ease-out;
}

.confidence-high {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.confidence-medium {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.confidence-low {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.meter-value {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.125rem;
}

.confidence-note {
    color: var(--text-light);
    font-style: italic;
    margin: 1rem 0 0;
    font-size: 1.125rem;
}

/* Decision Note Card */
.decision-note-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(236, 72, 153, 0.08));
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(245, 158, 11, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.note-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f59e0b, #ec4899);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.note-content h4 {
    margin-top: 0;
    color: #f59e0b;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.note-content p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Action Buttons */
.decision-action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.action-btn-decide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    min-height: 70px;
    position: relative;
    overflow: hidden;
}

.action-btn-decide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.action-btn-decide:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-outline {
    background: transparent;
    color: #4f46e5;
    border: 2px solid #4f46e5;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.1);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.4);
}

.btn-outline:hover {
    background: #4f46e5;
    color: white;
}

.btn-icon {
    font-size: 1.5rem;
}

/* Fun Fact Card */
.fun-fact-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(124, 58, 237, 0.08));
    border-radius: var(--radius);
    padding: 2rem;
    margin: 3rem auto;
    border: 1px solid rgba(79, 70, 229, 0.2);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
}

.fun-fact-card .note-icon {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.fun-fact-card .note-content p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.125rem;
}

/* How It Works */
.how-it-works-decide {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem;
    margin: 4rem auto;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    max-width: 900px;
    text-align: center;
}

.how-it-works-decide h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.how-it-works-decide h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card-decide {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step-card-decide:hover {
    border-color: #4f46e5;
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-card-decide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.step-card-decide:hover::before {
    transform: scaleX(1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.step-details h3 {
    margin: 0.5rem 0;
    font-size: 1.375rem;
    color: var(--text-color);
}

.step-details p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem;
    margin: 4rem auto;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    max-width: 900px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 2rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

.faq-item {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    background: var(--bg-secondary);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-color);
}

.faq-question[aria-expanded="true"] {
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
}

.faq-question h3 {
    margin: 0;
    flex: 1;
    font-size: 1.125rem;
    color: var(--text-color);
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4f46e5;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-toggle:hover {
    background: rgba(79, 70, 229, 0.1);
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: var(--bg-color);
}

.faq-answer[style*="max-height"] {
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    padding: 2rem;
    margin: 0;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: var(--radius);
    padding: 4rem;
    margin: 4rem auto;
    border: 1px solid rgba(79, 70, 229, 0.2);
    max-width: 900px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '🎲';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.cta-section::after {
    content: '🤔';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 3rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.cta-content h2 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cta-button {
    position: relative;
    z-index: 1;
    min-width: 250px;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.4);
}

/* ===== RELATED TOOLS ===== */
.related-tools {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 3rem;
    margin: 3rem auto;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    max-width: 900px;
    text-align: center;
}

.related-tools h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.related-tools h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
}

.tools-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tool-card-mini {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-card-mini:hover {
    border-color: #4f46e5;
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tool-icon-mini {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.tool-card-mini:hover .tool-icon-mini {
    transform: scale(1.1);
}

.tool-name-mini {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.tool-desc-mini {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ===== SHARE SECTION ===== */
.share-section {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    text-align: center;
}

.share-section h4 {
    margin-top: 0;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.share-section p {
    color: var(--text-light);
    margin-bottom: 2rem;
    margin-top: 0;
    font-size: 1.125rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    min-width: 140px;
    text-decoration: none;
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2, #1a8cd8);
    color: white;
}

.share-btn.facebook {
    background: linear-gradient(135deg, #4267B2, #365899);
    color: white;
}

.share-btn.copy {
    background: var(--bg-secondary);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.share-btn.twitter:hover {
    background: linear-gradient(135deg, #1a8cd8, #1DA1F2);
}

.share-btn.facebook:hover {
    background: linear-gradient(135deg, #365899, #4267B2);
}

.share-btn.copy:hover {
    background: var(--bg-color);
    border-color: #4f46e5;
    color: #4f46e5;
}

.share-icon {
    font-size: 2rem;
}

.share-text {
    font-size: 0.95rem;
    font-weight: 700;
}

/* ===== AD SECTIONS ===== */
.ad-section {
    margin: 2.5rem auto;
    display: flex;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    padding: 1.5rem;
}

.ad-728 {
    min-height: 90px;
    max-width: 728px;
}

.ad-300 {
    min-height: 250px;
    max-width: 300px;
}

.ad-post-results {
    margin: 2rem auto;
    text-align: center;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    max-width: 728px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .decide-title {
        font-size: 2.5rem;
    }
    
    .seo-intro-card,
    .decide-form,
    .results-container,
    .quick-stats,
    .popular-dilemmas,
    .how-it-works-decide,
    .faq-section,
    .cta-section,
    .related-tools {
        max-width: 95%;
        padding: 2.5rem;
    }
    
    .ad-728 {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .decide-page {
        padding: 1rem 0 3rem;
    }
    
    .decide-title {
        font-size: 2rem;
    }
    
    .decide-subtitle {
        font-size: 1rem;
        margin: 1.5rem auto 2rem;
    }
    
    .seo-intro-card {
        padding: 2rem 1.5rem;
        margin: 1.5rem auto;
    }
    
    .seo-intro-card h2 {
        font-size: 1.75rem;
    }
    
    .seo-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit {
        padding: 1.5rem;
    }
    
    .decide-form {
        padding: 2rem 1.5rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .example-dilemmas-grid {
        grid-template-columns: 1fr;
    }
    
    .popular-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .results-header {
        padding: 2rem 1.5rem;
    }
    
    .results-header h2 {
        font-size: 2rem;
    }
    
    .dilemma-display,
    .decision-reveal-card,
    .decision-confidence,
    .decision-note-card,
    .share-section,
    .quick-stats,
    .popular-dilemmas,
    .how-it-works-decide,
    .faq-section,
    .cta-section,
    .related-tools {
        padding: 1.5rem;
    }
    
    .dilemma-text {
        padding: 1.5rem;
        font-size: 1.125rem;
    }
    
    .decision-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .decision-icon-large {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    .decision-type-badge {
        padding: 0.75rem 1.5rem;
        font-size: 1.125rem;
        min-width: 150px;
    }
    
    .decision-message {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .message-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .decision-message p {
        font-size: 1.125rem;
    }
    
    .decision-advice {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .advice-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .advice-content {
        text-align: center;
    }
    
    .advice-text {
        font-size: 1rem;
    }
    
    .disclaimer-decide {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .disclaimer-icon {
        margin: 0;
    }
    
    .form-actions .btn {
        width: 100%;
        min-width: auto;
        padding: 1.25rem;
    }
    
    .decision-action-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .action-btn-decide {
        min-height: 60px;
        padding: 1.25rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card-decide {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .tools-grid-mini {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .share-btn {
        flex-direction: row;
        justify-content: center;
        padding: 1rem;
    }
    
    .input-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    
    .ad-728 {
        display: none;
    }
    
    .ad-300 {
        max-width: 90%;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .decide-title {
        font-size: 1.75rem;
    }
    
    .decide-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .seo-intro-card {
        padding: 1.5rem 1rem;
    }
    
    .decide-form {
        padding: 1.5rem 1rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card-decide {
        padding: 1.25rem;
    }
    
    .category-icon-decide {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }
    
    .dilemma-input {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .results-header h2 {
        font-size: 1.75rem;
    }
    
    .dilemma-text {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .decision-reveal-card {
        padding: 1.25rem;
    }
    
    .decision-icon-large {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .decision-type-badge {
        padding: 0.5rem 1rem;
        font-size: 1rem;
        min-width: 120px;
    }
    
    .decision-message p {
        font-size: 1rem;
    }
    
    .quick-stats,
    .popular-dilemmas,
    .how-it-works-decide,
    .faq-section,
    .cta-section,
    .related-tools {
        padding: 1.5rem 1rem;
        margin: 2rem auto;
    }
    
    .stat-item-decide {
        padding: 1.25rem;
    }
    
    .stat-item-decide .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .popular-item {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .popular-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .popular-text {
        font-size: 1rem;
    }
    
    .popular-count {
        font-size: 0.75rem;
    }
    
    .step-card-decide {
        padding: 1.25rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .step-details h3 {
        font-size: 1.125rem;
    }
    
    .step-details p {
        font-size: 0.9rem;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .cta-section {
        padding: 1.5rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
        min-width: auto;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .tools-grid-mini {
        grid-template-columns: 1fr;
    }
    
    .tool-card-mini {
        padding: 1.5rem;
    }
    
    .tool-icon-mini {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .tool-name-mini {
        font-size: 1.125rem;
    }
    
    .tool-desc-mini {
        font-size: 0.85rem;
    }
    
    .share-section {
        padding: 1.5rem 1rem;
    }
    
    .desperation-slider::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
    }
    
    .value-number {
        font-size: 1.75rem;
    }
    
    .value-emoji {
        font-size: 2rem;
    }
    
    .char-count,
    .input-hint {
        font-size: 0.875rem;
        padding: 0.5rem;
    }
    
    .ad-300 {
        min-height: 150px;
        margin: 1.5rem auto;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .decide-title {
        font-size: 1.5rem;
    }
    
    .category-grid {
        gap: 0.75rem;
    }
    
    .category-card-decide {
        min-width: 100%;
    }
    
    .stats-grid,
    .tools-grid-mini,
    .popular-grid {
        gap: 1rem;
    }
    
    .stat-item-decide,
    .tool-card-mini,
    .popular-item {
        padding: 1rem;
    }
    
    .faq-section,
    .cta-section {
        padding: 1rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .category-card-decide:hover,
    .example-dilemma:hover,
    .share-btn:hover,
    .action-btn-decide:hover,
    .decision-type-badge:hover,
    .stat-item-decide:hover,
    .popular-item:hover,
    .step-card-decide:hover,
    .tool-card-mini:hover,
    .benefit:hover {
        transform: none !important;
    }
    
    .category-card-decide:active,
    .example-dilemma:active,
    .share-btn:active,
    .action-btn-decide:active {
        transform: scale(0.98) !important;
    }
    
    .category-card-decide input:checked + .category-content-decide .category-icon-decide {
        transform: scale(1.05) !important;
    }
}

/* Animation for fade in */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}