.meaning-page {
    background-color: #fff;
    padding: 40px 0 80px;
}

.meaning-page .inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.title-image {
    max-width: 100%;
    height: auto;
    width: 600px;
}

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

.comic-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.comic-footer {
    text-align: center;
    margin-top: 40px;
}

.comic-button {
    display: inline-block;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 20px 60px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.comic-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.comic-button span {
    display: block;
    text-align: center;
}

.comic-button span:first-child {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.button-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 8px;
    font-family: Arial, sans-serif;
}

/* Responsive styles */
@media (max-width: 768px) {
    .title-image {
        width: 100%;
        max-width: 400px;
    }

    .comic-button {
        padding: 15px 40px;
    }

    .comic-button span:first-child {
        font-size: 14px;
    }

    .button-title {
        font-size: 24px;
        letter-spacing: 4px;
    }
}