/* Doing Lines - Arty/Sketchy White-on-Black Theme */

@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Caveat:wght@400;700&family=Kalam:wght@400;700&display=swap');

body {
    background: #111;
    color: #fff;
    font-family: 'Kalam', cursive;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
    background: none;
}

.logo {
    width: 80px;
    height: 80px;
    filter: grayscale(1) brightness(1.5) drop-shadow(0 0 8px #fff2);
    margin-bottom: 0.5rem;
    border-radius: 12px;
    object-fit: cover;
    background: #000;
}

h1 {
    font-family: 'Permanent Marker', cursive;
    font-size: 2.8rem;
    margin: 0.2em 0 0.1em 0;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 0 #fff1, 0 0 8px #fff3;
}

.subtitle {
    font-size: 1.2rem;
    color: #fff9;
    font-style: italic;
    margin-bottom: 1.5rem;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 1rem;
}

.intro {
    max-width: 600px;
    text-align: center;
    margin-bottom: 2rem;
}

.intro h2 {
    font-family: 'Caveat', cursive;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.5em;
    color: #fff;
    text-shadow: 1px 1px 0 #fff2;
    letter-spacing: 0.03em;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.features {
    margin-bottom: 2.5rem;
}

.features ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 400px;
}

.features li {
    font-size: 1.15rem;
    margin: 0.7em 0;
    padding: 0.7em 1.2em;
    background: rgba(255,255,255,0.04);
    border-left: 4px solid #fff5;
    border-radius: 0 1em 1em 0;
    font-weight: 400;
    letter-spacing: 0.02em;
    box-shadow: 2px 2px 0 #fff1;
}

.cta {
    margin: 2rem 0 1rem 0;
    text-align: center;
}

.cta button {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    background: #fff;
    color: #111;
    border: 2px dashed #fff5;
    border-radius: 2em;
    padding: 0.5em 1.8em;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: 2px 2px 0 #fff2;
}

footer {
    text-align: center;
    padding: 1.2rem 0 0.7rem 0;
    font-size: 0.95rem;
    color: #fff7;
    font-family: 'Roboto', Arial, sans-serif;
    letter-spacing: 0.03em;
    border-top: 1px dashed #fff2;
    margin-top: auto;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    .intro h2 {
        font-size: 1.5rem;
    }
    .features li {
        font-size: 1rem;
        padding: 0.5em 0.7em;
    }
    .cta button {
        font-size: 1.5rem;
        padding: 0.5em 1.2em;
    }
}
