    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background-color: #000;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .reader-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        margin-bottom: 20px;
        border-bottom: 1px solid #333;
    }

    .control-group {
        display: flex;
        gap: 15px;
    }

    .control-btn {
        background: #000;
        border: none;
        color: #edcead;
        cursor: pointer;
        padding: 5px 10px;
        border-radius: 4px;
        transition: background-color 0.2s;
    }

    .control-btn:hover {
        background-color: #333;
    }

    .theme-switcher {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .theme-options {
        display: flex;
        gap: 8px;
    }

    .theme-dot {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid transparent;
    }

    .theme-dot.active {
        border-color: #fff;
    }

    .theme-black { background-color: #000; }
    .theme-sepia { background-color: #fffbf1; }
    .theme-white { background-color: #eef3ff; }
    .theme-darkblue { background-color: #efffef; }
    .theme-forest { background-color: #fff0ff; }
    .theme-midnight { background-color: #fff; }

    .font-controls {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .font-select {
        background-color: #1a1a1a;
        color: #e0e0e0;
        border: 1px solid #333;
        padding: 5px;
        border-radius: 4px;
    }

    .font-size-controls {
        display: flex;
        gap: 5px;
    }

    .size-btn {
        background-color: #1a1a1a;
        color: #e0e0e0;
        border: 1px solid #333;
        width: 28px;
        height: 28px;
        border-radius: 4px;
        cursor: pointer;
    }

    .chapter-header {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid #333;
    }

    .novel-title {
        font-size: 24px;
    }

    .chapter-title {
        font-size: 20px;
        color: #aaa;
    }

    .content-area {
        padding: 0 40px;
        min-height: 60vh;
    }

    .novel-text {
        line-height: 1.8;
        font-size: 18px;
        transition: font-size 0.2s, font-family 0.3s, color 0.3s;
    }

    .novel-text p {
        margin-bottom: 25px;
        text-align: justify;
    }

    .chapter-nav {
        display: flex;
        justify-content: space-between;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid #333;
    }
    .nav-btn {
        background-color: #1a1a1a;
        color: #e0e0e0;
        border: 1px solid #333;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .nav-btn:hover {
        background-color: #333;
    }
    .chapter-nav2 {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
		margin-bottom: 20px;
    }
    .nav-btn2 {
        font-size: 14px;
		color: #757575;

    }
    .font-serif { font-family: Georgia, 'Times New Roman', serif; }
    .font-sans { font-family: Arial, Helvetica, sans-serif; }
    .font-mono { font-family: 'Courier New', Courier, monospace; }
    .font-garamond { font-family: Garamond, serif; }
    .font-palatino { font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; }
    .font-georgia { font-family: Georgia, serif; }

    @media (max-width: 768px) {
        .content-area {
            padding: 0 10px;
        }

        .control-group {
            flex-wrap: wrap;
        }
    }
