/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Custom Properties - Professional Theme matching PashInvestment.com */
:root {
    /* Primary brand colors - matching PashInvestment.com professional theme */
    --primary-green: #5c8607;
    --primary-green-light: #70a309;
    --primary-green-dark: #343f1e;
    --accent-cream: #fdfaf1;
    --accent-light-green: #e3e9d8;
    --border-light: rgba(53,64,31,0.24);
    
    /* Alert and warning colors */
    --alert-red: #dc2626;
    --alert-red-dark: #b91c1c;
    --warning-orange: #f59e0b;
    --warning-yellow: #fbbf24;
    
    /* Text colors */
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    
    /* Background colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-accent: var(--accent-cream);
    
    /* Success colors */
    --success-green: #10b981;
    --success-green-dark: #059669;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
    font-family: 'Marcellus', serif;
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Navigation */
nav {
    background-color: var(--primary-green-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: 500;
}

nav a:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #fef3f2, #fde8e8);
    padding: 2rem 0;
}

.warning-box {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    border: 3px solid #dc2626;
}

.warning-box h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.warning-box p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.highlight {
    background-color: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    border: 2px solid rgba(255,255,255,0.3);
}

/* Story section */
.story-section {
    padding: 3rem 0;
    background-color: white;
}

.story-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--primary-green-dark);
    font-family: 'Marcellus', serif;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-green), var(--primary-green-light));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-marker {
    font-size: 2rem;
    background: white;
    border: 4px solid var(--primary-green);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px white;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    width: 45%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #e5e5e5;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-content h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.fraud-highlight {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 1rem;
    border: 2px solid #b91c1c;
}

.fraud-details {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    color: white;
}

.fraud-details li {
    margin-bottom: 0.5rem;
}

/* Evidence section */
.evidence-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.evidence-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #1e40af;
}

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

.evidence-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e5e5e5;
    transition: transform 0.3s, box-shadow 0.3s;
}

.evidence-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.evidence-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid #e5e5e5;
    transition: border-color 0.3s;
}

.evidence-item img:hover {
    border-color: #1e40af;
}

.evidence-item h3 {
    color: #1e40af;
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}

.evidence-details {
    text-align: left;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    color: #475569;
}

.evidence-details li {
    margin-bottom: 0.3rem;
}

.date-emphasis {
    color: #dc2626;
    font-weight: 700;
}

/* Home Buyers Alert Section */
.home-buyers-section {
    padding: 3rem 0;
    background-color: white;
}

.home-buyers-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #dc2626;
}

.alert-intro {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 5px solid #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.alert-intro p {
    font-size: 1.1rem;
    margin: 0;
    color: #991b1b;
}

/* Fraud Patterns */
.fraud-patterns h3,
.gurgaon-specific h3,
.protection-guide h3,
.broker-checklist h3,
.legal-recourse h3,
.emergency-contacts h3 {
    color: #1e40af;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.fraud-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.fraud-pattern {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #1e40af;
    transition: transform 0.3s, box-shadow 0.3s;
}

.fraud-pattern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.15);
}

.pattern-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fraud-pattern h4 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.fraud-pattern p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #475569;
}

/* Gurgaon Specific */
.hotspot-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.reason-item {
    background: #f8fafc;
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 4px solid #1e40af;
}

.reason-item h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.reason-item p {
    color: #475569;
    margin: 0;
    font-size: 0.9rem;
}

/* Protection Steps */
.protection-steps {
    margin-bottom: 2rem;
}

.step-item {
    display: flex;
    margin-bottom: 1.5rem;
    background: #f8fafc;
    padding: 1.2rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.step-number {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content ul {
    margin-left: 1rem;
    color: #475569;
}

.step-content li {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

/* Broker Checklist */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.checklist-section {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #1e40af;
}

.checklist-section h4 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.verification-list,
.warning-list {
    list-style: none;
    padding: 0;
}

.verification-list li {
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    position: relative;
    padding-left: 2rem;
}

.verification-list li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    font-weight: bold;
}

.warning-list li {
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    position: relative;
    padding-left: 2rem;
}

.warning-list li::before {
    content: '⚠';
    position: absolute;
    left: 0.5rem;
    font-weight: bold;
}

/* Legal Options */
.legal-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.legal-option {
    background: #f8fafc;
    padding: 1.2rem;
    border-radius: 10px;
    border: 2px solid #1e40af;
    transition: transform 0.3s;
}

.legal-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.1);
}

.legal-option h4 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.legal-option p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #475569;
}

/* Emergency Contacts */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
}

.emergency-item {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    padding: 1.2rem;
    border-radius: 10px;
    border: 2px solid #dc2626;
    text-align: center;
}

.emergency-item h4 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.emergency-item p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #991b1b;
}

.emergency-item strong {
    color: #991b1b;
}

/* Warning section */
.warning-section {
    padding: 3rem 0;
    background-color: white;
}

.warning-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #1e40af;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.warning-item {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #1e40af;
    transition: transform 0.3s, box-shadow 0.3s;
}

.warning-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.2);
}

.warning-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.warning-item h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Share section */
.share-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.share-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #1e40af;
}

.story-form {
    max-width: 600px;
    margin: 0 auto 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e5e5e5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e40af;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.story-form button {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.story-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

.shared-stories {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e5e5e5;
}

.shared-stories h3 {
    color: #1e40af;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.story-post {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #1e40af;
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.story-author {
    font-weight: 600;
    color: #1e40af;
}

.story-meta {
    font-size: 0.9rem;
    color: #666;
}

.story-content {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.story-details {
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #e5e5e5;
    padding-top: 0.5rem;
}

/* Contact section */
.contact-section {
    padding: 3rem 0;
    background-color: white;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #1e40af;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #1e40af;
}

.contact-item h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item ul {
    margin-left: 1.5rem;
}

.contact-item li {
    margin-bottom: 0.5rem;
}

.disclaimer {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #d1d5db;
    text-align: center;
}

.disclaimer h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.legal-text {
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.5;
}

.legal-text p {
    margin-bottom: 1rem;
}

.legal-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-text li {
    margin-bottom: 0.3rem;
}

.legal-text strong {
    color: #1e40af;
    font-weight: 600;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Zoom controls */
.zoom-controls {
    position: absolute;
    top: 15px;
    right: 100px;
    z-index: 1001;
    display: flex;
    gap: 8px;
}

.zoom-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.zoom-btn:active {
    transform: scale(0.95);
}

/* Modal image cursor styles */
.modal-img-container {
    cursor: grab;
}

.modal-content {
    transition: transform 0.1s ease;
    cursor: default;
}

/* Update modal-content styles for zoom functionality */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
    animation: zoom 0.3s;
    transform-origin: center center;
    user-select: none;
    -webkit-user-drag: none;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Success message */
.success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    nav a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .warning-box {
        padding: 1.5rem;
    }
    
    .warning-box h2 {
        font-size: 1.5rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
        transform: none;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .evidence-grid,
    .warning-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .story-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .modal-content {
        width: 95%;
    }
    
    #caption {
        width: 95%;
    }
    
    /* Responsive zoom controls */
    .zoom-controls {
        right: 10px;
        top: 60px;
        flex-direction: column;
        gap: 5px;
    }
    
    .zoom-btn {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 35px;
    }
}

@media (max-width: 600px) {
    .highlight-box {
        transform: scale(0.6);
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.7rem;
    }
    
    .hero,
    .story-section,
    .evidence-section,
    .warning-section,
    .share-section,
    .contact-section {
        padding: 2rem 0;
    }
    
    .warning-box {
        padding: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .evidence-item,
    .warning-item,
    .contact-item {
        padding: 1.5rem;
    }
    
    .story-form {
        padding: 1.5rem;
    }
    
    /* Responsive highlight overlay */
    .highlight-arrow {
        font-size: 1.5rem;
    }
}

/* Highlight overlay styles */
.highlight-box {
    position: absolute;
    border: 3px solid #dc2626;
    background-color: rgba(239, 68, 68, 0.2);
    z-index: 10;
    pointer-events: none;
}

.cheque-container {
    position: relative;
    display: inline-block;
}

.highlight-arrow {
    position: absolute;
    color: #dc2626;
    font-size: 2rem;
    font-weight: bold;
    z-index: 11;
    pointer-events: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Cheque tip styles */
.cheque-tip {
    font-size: 0.9rem;
    color: #dc2626;
    font-weight: 600;
    text-align: center;
    margin: 0.75rem 0;
    padding: 0.5rem;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fca5a5;
    border-radius: 6px;
    font-style: italic;
}

/* Modal hint styles */
.modal-hint {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    z-index: 1002;
    max-width: 80%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modal-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Print styles */
@media print {
    .modal {
        display: none !important;
    }
    
    nav {
        display: none;
    }
    
    .story-form {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .warning-box,
    .evidence-section,
    .contact-section {
        break-inside: avoid;
    }
}
