* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0a3d4f;
    --dark-blue: #051e28;
    --light-blue: #165266;
    --accent-blue: #2a8ca8;
    --dark-bg: #0f0f0f;
    --gray: #1a1a1a;
    --light-gray: #252525;
    --text-light: #d0d0d0;
    --text-white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--dark-bg);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--accent-blue);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 50%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-blue);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(42, 140, 168, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 140, 168, 0.5);
    background: var(--light-blue);
}

.wave-animation {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 Q300,100 600,60 T1200,60 L1200,120 L0,120 Z" fill="%231a1a1a"/></svg>');
    background-size: cover;
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 1200px 0; }
}

/* Content Sections */
.content-section {
    padding: 6rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.content-section.dark {
    background: var(--dark-bg);
}

.content-section.light {
    background: var(--gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.text-content h2 {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

.text-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Threat List */
.threat-list {
    list-style: none;
    margin-top: 2rem;
}

.threat-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.threat-item:hover {
    transform: translateX(10px);
    box-shadow: -5px 5px 15px rgba(42, 140, 168, 0.2);
}

.threat-item strong {
    color: var(--accent-blue);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.threat-item p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-light);
}

/* Image Cards */
.image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.image-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.image-card.interactive:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.image-card:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay p {
    color: var(--text-white);
    margin: 0;
    font-size: 1.1rem;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

/* Info Box */
.info-box {
    background: var(--light-blue);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 5px solid var(--accent-blue);
}

.info-box p {
    margin: 0;
    color: var(--text-white);
    font-size: 1.1rem;
}

/* Interactive Comparison */
.interactive-comparison {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 4rem;
}

.interactive-comparison h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 2rem;
}

.chain-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.chain-item {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.chain-item:hover {
    transform: scale(1.1);
    background: var(--primary-blue);
}

.chain-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.chain-arrow {
    font-size: 2rem;
    color: var(--accent-blue);
}

.chain-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Action Section */
.centered {
    text-align: center;
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 3rem;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.action-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.action-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(97, 218, 251, 0.3);
}

.action-card h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.action-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.action-button {
    padding: 0.8rem 2rem;
    background: var(--primary-blue);
    color: var(--text-white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.action-button:hover {
    background: var(--accent-blue);
    color: var(--text-white);
    transform: scale(1.05);
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
}

cite {
    display: block;
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--accent-blue);
    font-style: normal;
}

/* Footer */
.footer {
    background: var(--gray);
    padding: 2rem;
    text-align: center;
    border-top: 2px solid var(--primary-blue);
}

.footer p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-white);
}

/* Responsive Design */

/* Tablet (mittlere Bildschirme) */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .action-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .danger-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile (kleine Bildschirme) */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    /* Navigation */
    .navbar {
        position: fixed;
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        gap: 0.8rem;
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Hero */
    .hero {
        height: 100vh;
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
    
    /* Content Sections */
    .content-section {
        padding: 3rem 1rem;
        min-height: auto;
    }
    
    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .text-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .text-content h3 {
        font-size: 1.4rem;
        margin: 2rem 0 1rem;
    }
    
    .text-content h4 {
        font-size: 1.1rem;
    }
    
    .text-content p,
    .intro-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Threat List */
    .threat-list {
        margin-top: 1rem;
    }
    
    .threat-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .threat-item:hover {
        transform: translateX(5px);
    }
    
    .threat-item strong {
        font-size: 1.1rem;
    }
    
    .threat-item p {
        font-size: 0.95rem;
    }
    
    /* Images */
    .image-card img {
        height: 250px;
    }
    
    /* Stats */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-card p {
        font-size: 0.95rem;
    }
    
    /* Danger Section */
    .danger-section {
        margin-top: 2rem;
        padding: 1rem;
    }
    
    .danger-section h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .danger-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .danger-box {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .danger-box h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .danger-box p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Action Section */
    .centered {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .action-card {
        padding: 1.5rem;
    }
    
    .action-card h3 {
        font-size: 1.3rem;
    }
    
    .action-card ul li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    /* Quote */
    blockquote {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    cite {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 1.5rem 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Sehr kleine Handys */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .text-content h2 {
        font-size: 1.5rem;
    }
    
    .text-content h3 {
        font-size: 1.2rem;
    }
    
    .nav-links {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .danger-section h3 {
        font-size: 1.4rem;
    }
    
    .centered {
        font-size: 1.5rem;
    }
}

/* New styles for improved content */
.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.intro-text.centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.text-content h3 {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin: 2.5rem 0 1.5rem;
    border-left: 4px solid var(--accent-blue);
    padding-left: 1rem;
}

.text-content h4 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.danger-box {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #c62828;
    transition: transform 0.3s;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.danger-section .danger-box {
    background: var(--gray);
}

.danger-box:hover {
    transform: translateX(5px);
}

.danger-box h4 {
    color: var(--accent-blue);
    margin-bottom: 0.8rem;
}

.danger-box p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.danger-section {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--dark-bg);
    border-radius: 15px;
    border: 2px solid var(--primary-blue);
    overflow: hidden;
    max-width: 100%;
}

.danger-section h3 {
    font-size: 2.2rem;
    color: var(--accent-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.danger-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.action-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.action-card ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.action-card ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-size: 1.2rem;
}

