* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.warning-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.warning-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    animation: warning-pattern 20s linear infinite;
}

@keyframes warning-pattern {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

.alert-badge {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.warning-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    font-family: 'Space Mono', monospace;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Content sections */
.content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.intro-section .reality-box {
    background: linear-gradient(135deg, #ff6b6b, #ff5722);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #fff;
}

.reality-box h2 {
    font-family: 'Space Mono', monospace;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.fact-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    border: 2px solid #333;
    transition: transform 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
    border-color: #ff4444;
}

.fact-header {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ff4444;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.fact-card ul {
    list-style: none;
}

.fact-card li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

.fact-card li:last-child {
    border-bottom: none;
}

/* Reality check section */
.reality-check h2 {
    text-align: center;
    font-family: 'Space Mono', monospace;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #ff4444;
}

.myth-vs-reality {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.myth-box {
    background: linear-gradient(135deg, #444, #222);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #ff4444;
}

.reality-box-big {
    background: linear-gradient(135deg, #00aa00, #006600);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #fff;
}

.myth-box h3, .reality-box-big h3 {
    font-family: 'Space Mono', monospace;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.myth-box ul, .reality-box-big ul {
    list-style: none;
}

.myth-box li, .reality-box-big li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.myth-box li::before {
    content: '❌';
    position: absolute;
    left: 0;
}

.reality-box-big li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

/* Religious section */
.religious-reality h2 {
    text-align: center;
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.religious-intro {
    margin-bottom: 40px;
}

.faith-box {
    background: linear-gradient(135deg, #4a4a4a, #2a2a2a);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #ffd700;
    text-align: center;
}

.faith-box p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.religion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.religion-card {
    padding: 25px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.religion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.religion-card h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.religion-content p {
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.religion-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.religion-card li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.religion-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ffd700;
}

.islam {
    background: linear-gradient(135deg, #00aa44, #006633);
    border-color: #00ff66;
}

.christianity {
    background: linear-gradient(135deg, #6666ff, #4444cc);
    border-color: #8888ff;
}

.judaism {
    background: linear-gradient(135deg, #0088cc, #006699);
    border-color: #00aaff;
}

.hinduism {
    background: linear-gradient(135deg, #ff6600, #cc4400);
    border-color: #ff8833;
}

.buddhism {
    background: linear-gradient(135deg, #cc6600, #994400);
    border-color: #ff9933;
}

.atheism {
    background: linear-gradient(135deg, #666666, #333333);
    border-color: #999999;
}

.quran-quote,
.bible-quote,
.torah-quote,
.vedic-quote,
.dharma-quote,
.science-quote {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
    font-style: italic;
    font-size: 0.9rem;
    color: #f0f0f0;
}

.universal-message {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
    padding: 30px;
    border-radius: 12px;
    border: 3px solid #fff;
}

.universal-message h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 20px;
}

.unanimous-box p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
}

.unanimous-box ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.unanimous-box li {
    padding: 8px 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.final-religious-message {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-top: 25px !important;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

/* Consequences grid */
.consequence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.consequence-card {
    padding: 25px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.consequence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.medical {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    border-color: #ff6666;
}

.legal {
    background: linear-gradient(135deg, #ffaa00, #cc8800);
    border-color: #ffcc00;
}

.social {
    background: linear-gradient(135deg, #aa44ff, #8800cc);
    border-color: #cc66ff;
}

.reality {
    background: linear-gradient(135deg, #000, #333);
    border-color: #666;
}

.consequence-card h3 {
    font-family: 'Space Mono', monospace;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.consequence-card ul {
    list-style: none;
}

.consequence-card li {
    padding: 5px 0;
    position: relative;
    padding-left: 15px;
}

.consequence-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #fff;
}

/* Angry rant section */
.rant-box {
    background: linear-gradient(135deg, #ff0000, #990000);
    padding: 40px;
    border-radius: 12px;
    border: 3px solid #ff4444;
    animation: angry-shake 0.1s infinite alternate;
}

@keyframes angry-shake {
    0% { transform: translateX(-1px); }
    100% { transform: translateX(1px); }
}

.rant-box:hover {
    animation: none;
}

.rant-box h2 {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.rant-box p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.rant-box ol {
    margin: 20px 0;
    padding-left: 20px;
}

.rant-box li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

/* Help resources */
.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.help-card {
    background: linear-gradient(135deg, #00aa44, #006633);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #fff;
    transition: transform 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
}

.help-card h3 {
    font-family: 'Space Mono', monospace;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.help-card ul {
    list-style: none;
}

.help-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.help-card li::before {
    content: '💚';
    position: absolute;
    left: 0;
}

/* Conclusion */
.final-message {
    text-align: center;
    background: linear-gradient(135deg, #000, #333);
    padding: 50px;
    border-radius: 12px;
    border: 3px solid #fff;
}

.final-message h2 {
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.big-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff4444;
}

.final-plea {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 30px auto 0;
    color: #ccc;
}

/* Responsive design */
@media (max-width: 768px) {
    .myth-vs-reality {
        grid-template-columns: 1fr;
    }
    
    .consequence-grid {
        grid-template-columns: 1fr;
    }
    
    .help-resources {
        grid-template-columns: 1fr;
    }
    
    .warning-header h1 {
        font-size: 2.5rem;
    }
    
    .rant-box {
        padding: 25px;
    }
    
    .final-message {
        padding: 30px 20px;
    }
    
    .religion-grid {
        grid-template-columns: 1fr;
    }
    
    .religious-reality h2 {
        font-size: 1.6rem;
    }
    
    .religion-card {
        padding: 20px;
    }
}

.clickable-word {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.clickable-word:hover {
    color: #8B4513;
    text-shadow: 0 0 10px #8B4513;
}

.poop-rain {
    position: fixed;
    top: -10px;
    width: 30px;
    height: 30px;
    font-size: 24px;
    pointer-events: none;
    z-index: 9999;
    animation: poop-fall 3s linear forwards;
}

@keyframes poop-fall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.poop-mode {
    background: linear-gradient(135deg, #8B4513, #654321) !important;
    color: #DEB887 !important;
}

.poop-mode .warning-header {
    background: linear-gradient(135deg, #8B4513, #654321) !important;
}

.poop-mode .fact-card,
.poop-mode .consequence-card,
.poop-mode .help-card,
.poop-mode .rant-box,
.poop-mode .final-message {
    background: linear-gradient(135deg, #A0522D, #8B4513) !important;
    border-color: #DEB887 !important;
}

.poop-mode .reality-box,
.poop-mode .reality-box-big {
    background: linear-gradient(135deg, #8B4513, #654321) !important;
}