.tome-section {
    max-width: 1100px; 
    padding-top: 50px;
    margin: 0 auto;
}

.tome-main-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin-bottom: 30px;
}

.tome-cover-column {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.book-cover-tome {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 10px var(--accent-orange); 
    transform: rotateZ(-1deg);
    transition: transform 0.3s;
}

.book-cover-tome:hover {
    transform: scale(1.05) rotateZ(0deg);
}

.format-text {
    margin-top: 15px;
    font-style: italic;
    color: var(--accent-gold);
    opacity: 0.8;
    font-size: 0.9rem;
    font-family: 'Cinzel', serif;
    text-align: center;
    width: 100%;
}

.synopsis-card {
    background-color: #eae7e1; 
    background-image: 
        radial-gradient(circle at center, rgba(0,0,0,0.06) 1px, transparent 1px);
    background-size: 5px 5px;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(170, 132, 1, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    width: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
    color: #1a1a1a;
}

.synopsis-card h2 {
    color: var(--accent-dark-gold); 
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.synopsis-card p {
    text-indent: 10px;
    margin-bottom: 15px;
}

.synopsis-card strong {
    color: #1a1a1a;
    font-weight: bold;
}

.tome-card-right {
    flex: 1;
    margin: 0 !important;
}

.download-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Cinzel', serif;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid var(--accent-orange);
}

.cta-button:hover { 
    transform: scale(1.05);
    opacity: 1 !important;
    filter: brightness(1.1) !important;
}

.cta-button.download {
    font-size: 0.85rem;
    opacity: 0.9;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.genre-text {
    text-align: center;
    margin-top: 5px;
    display: block;
    font-style: italic;
    color: var(--accent-gold);
    opacity: 0.7;
    font-size: 0.95rem;
}

.genre-text2 {
    text-align: center;
    margin-top: 5px;
    display: block;
    font-style: italic;
    color: var(--accent-gold);
    opacity: 0.7;
    font-size: 0.7rem;
}

.purchase-bento-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.available-label {
    font-family: 'Cinzel', serif;
    color: var(--text-color);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.bento-grid-shop {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.shop-logo {
    height: 35px;
    width: auto;
    transition: all 0.4s ease;
    display: block;
    filter: grayscale(10%) opacity(0.9);
}

.shop-logo:hover {
    transform: translateY(-3px);
    filter: grayscale(0%) opacity(1) brightness(1.2) drop-shadow(0 4px 10px rgba(255, 193, 37, 0.2));
}

.amazon-rounded {
    border-radius: 5px;
}

.copyright-footer {
    width: 100%;
    text-align: center;
    font-style: italic;
    opacity: 0.5;
    font-size: 0.8rem;
    margin: 20px 0 40px 0;
    color: var(--text-color);
    display: block;
}

@media (max-width: 768px) {
    .tome-main-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .tome-cover-column {
        flex: none;
        width: 100%;
    }
    .book-cover-tome {
        max-width: 250px;
        margin-bottom: 20px;
    }
    .purchase-bento-container {
        margin-bottom: 20px;
    }
    .bento-grid-shop {
        gap: 15px;
    }
    .shop-logo {
        height: 35px;
    }
}







