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

body {
    background-color: #000000;
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    min-height: 100vh;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.site-nav a {
    color: #999;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: #ffffff;
}

/* Hidden subject links - ARG easter eggs */
.hidden-subject {
    color: #000000;
    text-decoration: none;
    font-size: 10px;
    position: absolute;
    user-select: text;
    cursor: default;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.hidden-subject:hover {
    color: #000000;
    cursor: default;
}

/* Container needs relative positioning for absolute children */
.container {
    position: relative;
}

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

header {
    text-align: center;
    padding: 60px 20px 40px;
    border-bottom: 2px solid #333;
    margin-bottom: 60px;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: 8px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 300;
}

.subtitle {
    font-size: 1.2rem;
    color: #999;
    letter-spacing: 2px;
}

main {
    padding: 0 20px;
}

section {
    margin-bottom: 80px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: 3px;
    font-weight: 300;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #cccccc;
    font-weight: 300;
}

.book-section {
    margin-bottom: 80px;
}

.book-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.book-image img {
    width: 100%;
    height: auto;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.book-info {
    padding: 20px 0;
}

.tagline {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #b0b0b0;
    font-style: italic;
}

.book-details {
    margin: 30px 0;
    padding: 20px;
    background-color: #0a0a0a;
    border-left: 3px solid #ffffff;
}

.book-details p {
    margin-bottom: 10px;
    color: #d0d0d0;
}

.book-details strong {
    color: #ffffff;
    margin-right: 10px;
}

.links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border: 2px solid #ffffff;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    font-family: 'Courier New', Courier, monospace;
}

.btn-primary {
    background-color: #ffffff;
    color: #000000;
}

.btn-primary:hover {
    background-color: #000000;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
}

.verification-section {
    padding: 40px;
    background-color: #0a0a0a;
    border: 2px solid #333;
}

.verification-content {
    max-width: 800px;
    margin: 0 auto;
}

.verification-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.verification-details {
    margin: 30px 0;
    padding: 20px;
    background-color: #000000;
    border-left: 3px solid #ffffff;
}

.verification-details p {
    margin-bottom: 15px;
}

.verification-details strong {
    color: #ffffff;
    margin-right: 10px;
}

.verification-details a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #666;
    transition: border-color 0.3s ease;
}

.verification-details a:hover {
    border-bottom-color: #ffffff;
}

.note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.about-section {
    margin-top: 80px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.about-text .quote {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 30px 0;
    color: #ffffff;
    line-height: 1.4;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 2px solid #333;
    margin-top: 80px;
    color: #666;
}

footer a {
    color: #999;
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Series page styles */
.series-intro {
    text-align: center;
    margin-bottom: 60px;
}

.series-taglines {
    margin-bottom: 30px;
}

.series-taglines p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.series-description {
    max-width: 700px;
    margin: 0 auto;
    color: #999;
    font-size: 1.1rem;
}

.book-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.book-entry {
    padding: 30px;
    background-color: #0a0a0a;
    border-left: 3px solid #333;
}

.book-entry.available {
    border-left-color: #ffffff;
}

.book-entry h2 {
    margin-bottom: 10px;
}

.book-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.book-teaser {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.book-status {
    color: #666;
    font-style: italic;
}

.reading-order {
    padding: 40px;
    background-color: #0a0a0a;
    border: 1px solid #333;
}

.order-note {
    margin-top: 20px;
}

.order-note p {
    margin-bottom: 15px;
    color: #999;
}

/* Still Here page styles */
.book-series-label {
    color: #666;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.book-hero {
    margin-bottom: 60px;
}

.dare {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.dare-sub {
    font-size: 1rem;
    font-weight: normal;
    color: #999;
}

.synopsis-section {
    margin-bottom: 60px;
}

.synopsis-text {
    text-align: center;
    margin-bottom: 40px;
}

.synopsis-text p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #d0d0d0;
}

.synopsis-extended {
    max-width: 800px;
    margin: 0 auto;
}

.synopsis-extended p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #b0b0b0;
}

.content-warning {
    padding: 40px;
    background-color: #0a0a0a;
    border: 2px solid #333;
    margin-bottom: 60px;
}

.content-warning p {
    margin-bottom: 15px;
    color: #999;
}

.warning-note {
    font-style: italic;
    color: #666;
    margin-top: 20px;
}

.cta-section {
    text-align: center;
    padding: 40px;
}

.cta-text {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .book-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .links {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    header {
        padding: 40px 20px 30px;
    }

    section {
        margin-bottom: 60px;
    }
}
