/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fafafa;
}

/* Header */
header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid #8b4513;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5em;
    color: #8b4513;
    margin-bottom: 10px;
}

header h1 a {
    color: #8b4513;
    text-decoration: none;
}

header h1 a:hover {
    color: #654321;
}

header p {
    font-style: italic;
    color: #666;
}

/* Main Content */
main {
    background-color: white;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

h2 {
    color: #8b4513;
    margin-bottom: 20px;
    font-size: 2em;
}

h3 {
    color: #654321;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5em;
}

h4 {
    color: #654321;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2em;
}

/* Play List */
.play-list {
    list-style: none;
    margin-top: 20px;
}

.play-list li {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #8b4513;
}

.play-list li a {
    color: #8b4513;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
}

.play-list li a:hover {
    color: #654321;
    text-decoration: underline;
}

.play-list li p {
    margin-top: 8px;
    color: #666;
    font-size: 0.95em;
}

/* Play Content */
.play .description {
    font-size: 1.1em;
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.play .metadata {
    color: #666;
    margin-bottom: 5px;
}

/* Table of Contents */
.toc {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #8b4513;
}

.toc h3 {
    margin-top: 0;
    color: #8b4513;
}

.toc ul {
    margin-left: 20px;
}

.toc a {
    color: #654321;
    text-decoration: none;
}

.toc a:hover {
    text-decoration: underline;
}

/* Play Text Content */
.play-content {
    margin-top: 40px;
}

.play-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.play-content blockquote {
    margin: 20px 40px;
    padding-left: 20px;
    border-left: 3px solid #ccc;
    font-style: italic;
}

/* Back Link */
.back-link {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.back-link a {
    color: #8b4513;
    text-decoration: none;
}

.back-link a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    color: #666;
    font-size: 0.9em;
    border-top: 1px solid #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    main {
        padding: 20px;
    }
    
    header h1 {
        font-size: 2em;
    }
}
