/* Privacy Horror Stories Styles */
.stories-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.stories-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-warning {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    padding: 1rem 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.warning-icon {
    font-size: 2rem;
}

.hero-warning p {
    margin: 0;
    font-weight: 600;
}

/* Impact Stats */
.impact-stats {
    background: var(--bg-light);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Stories Container */
.stories-container {
    padding: 3rem 0;
}

.story-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

/* Story Cards */
.story-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.story-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.danger-card {
    border-left: 4px solid #ef4444;
}

.critical-card {
    border-left: 4px solid #dc2626;
    background: #fef2f2;
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.story-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.story-date {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
}

.story-content {
    padding: 1.5rem;
}

.what-happened,
.the-damage,
.could-prevent {
    margin-bottom: 1.5rem;
}

.what-happened h4,
.the-damage h4,
.could-prevent h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.the-damage ul {
    margin: 0;
    padding-left: 1.5rem;
}

.the-damage li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.the-damage strong {
    color: #dc2626;
    font-weight: 700;
}

blockquote {
    background: #f8f8f8;
    border-left: 4px solid #ef4444;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    font-style: italic;
    color: #4b5563;
}

.warning-quote {
    background: #fef2f2;
    border-left-color: #dc2626;
    font-weight: 600;
}

.impact-note {
    background: #fef3c7;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-top: 1rem;
    color: #92400e;
}

/* Big Picture Section */
.big-picture {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.big-picture h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.truth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.truth-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.truth-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.truth-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Protection CTA */
.protection-cta {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.protection-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.protection-cta > p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.cta-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.cta-card .btn-primary {
    display: inline-block;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .stories-hero h1 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .story-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .truth-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-cards {
        grid-template-columns: 1fr;
    }
}

/* Story Narrative Styles */
.story-narrative {
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-narrative p {
    margin-bottom: 1rem;
}

.story-narrative em {
    font-style: normal;
    color: #4b5563;
}

.story-narrative strong {
    color: #dc2626;
    font-weight: 700;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.story-card {
    animation: fadeIn 0.6s ease-out;
}

.story-card:nth-child(2) {
    animation-delay: 0.1s;
}

.story-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* Final Warning Box */
.final-warning ul {
    padding: 0;
    margin: 0;
}

.final-warning li {
    margin-bottom: 0.5rem;
}

/* Opening Story Section */
.opening-story {
    animation: fadeIn 0.8s ease-out;
}

/* Personal Confession */
.personal-confession {
    position: relative;
    overflow: hidden;
}

.personal-confession::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}