body {
    font-family: 'Noto Sans', sans-serif, Georgia, "Times New Roman", Times, serif;
    line-height: 1.6;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    color: #111;
    background-color: #ffffff;
}

h1, h2, h3 {
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
    text-transform: uppercase;
    margin-top: 40px;
}

h1 {
    border-bottom-width: 1px;
    margin-top: 0;
}

h3 {
    border-bottom-width: 1px;
    font-size: 1.2rem;
}

p {
    margin-bottom: 20px;
}

a {
    color: #000;
    font-weight: 600;
}

.header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid #000;
    padding-bottom: 16px;
    margin-bottom: 32px;
}

.header h1 {
    margin: 0;
    padding: 0;
    border: none;
    font-weight: 900;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
}

.warning {
    border: 2px solid #000;
    background: #fff3cd;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 4px 4px 0 #000;
}

dt {
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 24px;
}

.last-updated {
    font-style: italic;
    color: #555;
}

.cta-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 30px 0;
}

.cta-button {
    padding: 14px 24px;
    background-color: #fff;
    color: #000 !important;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #000;
    box-shadow: 4px 4px 0 #000;
    border-radius: 4px;
    transition: transform 0.1s, box-shadow 0.1s;
    display: inline-block;
}

.cta-button.primary {
    background-color: #000;
    color: #fff !important;
}

.cta-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #000;
}

.cta-button:active {
    transform: translate(2px, 2px);
    box-shadow: 0px 0px 0 #000;
}

footer {
    margin-top: 60px;
    border-top: 2px solid #000;
    padding-top: 20px;
    font-size: 0.9rem;
    text-align: center;
}

/* Index specific components */
.hero-screenshot {
    width: 100%;
    height: auto;
    border: 2px solid #000;
    box-shadow: 6px 6px 0 #000;
    border-radius: 6px;
    margin: 20px 0 30px 0;
}

.slideshow-container {
    position: relative;
    width: 100%;
    margin: 20px 0 30px 0;
}

.slideshow-container .hero-screenshot {
    margin: 0;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #000;
    border: 2px solid #000;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 15px;
    cursor: pointer;
    box-shadow: 4px 4px 0 #000;
    border-radius: 4px;
    transition: transform 0.1s, box-shadow 0.1s;
}

.slide-btn.prev {
    left: -15px;
}

.slide-btn.next {
    right: -15px;
}

.slide-btn:hover {
    transform: translateY(-50%) translate(-2px, -2px);
    box-shadow: 6px 6px 0 #000;
}

.slide-btn:active {
    transform: translateY(-50%) translate(2px, 2px);
    box-shadow: 0px 0px 0 #000;
}

@media (max-width: 768px) {
    .slide-btn.prev {
        left: 10px;
    }

    .slide-btn.next {
        right: 10px;
    }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.feature-card {
    border: 2px solid #000;
    padding: 24px;
    background: #fff;
    box-shadow: 4px 4px 0 #000;
}

.feature-card h3 {
    margin-top: 0;
    border-bottom: 2px solid #000;
    padding-bottom: 8px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.feature-card p {
    margin-bottom: 0;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }

    h1, h2, h3, .header, footer {
        border-color: #e0e0e0;
    }

    a {
        color: #90caf9 !important;
    }

    .warning {
        border-color: #e0e0e0;
        background: #2c2c2c;
        box-shadow: 4px 4px 0 #e0e0e0;
    }

    .last-updated {
        color: #aaa;
    }

    .cta-button {
        background-color: #121212;
        color: #e0e0e0 !important;
        border-color: #e0e0e0;
        box-shadow: 4px 4px 0 #e0e0e0;
    }

    .cta-button.primary {
        background-color: #e0e0e0;
        color: #121212 !important;
    }

    .cta-button:hover {
        background-color: #121212;
        color: #e0e0e0 !important;
        box-shadow: 6px 6px 0 #e0e0e0;
    }

    .cta-button:active {
        box-shadow: 0px 0px 0 #e0e0e0;
    }

    .hero-screenshot {
        border-color: #e0e0e0;
        box-shadow: 6px 6px 0 #e0e0e0;
    }

    .slide-btn {
        background-color: #1e1e1e;
        color: #e0e0e0;
        border-color: #e0e0e0;
        box-shadow: 4px 4px 0 #e0e0e0;
    }

    .slide-btn:hover {
        box-shadow: 6px 6px 0 #e0e0e0;
    }

    .slide-btn:active {
        box-shadow: 0px 0px 0 #e0e0e0;
    }

    .feature-card {
        background: #1e1e1e;
        border-color: #e0e0e0;
        box-shadow: 4px 4px 0 #e0e0e0;
    }

    .feature-card h3 {
        border-bottom-color: #e0e0e0;
    }
}