.l-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    font-family: "Times New Roman", Georgia, serif;
}

.l-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 5vw, 40px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
}

.l-section-content {
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.l-stone {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    padding: 6% 4%;
    border-radius: 16px;
    border: 1px solid #d0d0d0;
    box-shadow:
    0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
}

.l-epitaph {
    color: #4a4a4a;
    font-size: clamp(1.2rem, 3.5vw, 2.5rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
    margin-bottom: 16px;
}

.l-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, #b5b5b5, transparent);
    margin: 24px auto 32px;
}

.l-text {
    color: #5f5f5f;
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    line-height: 1.7;
    margin-bottom: 24px;
}

.l-quote {
    color: #7a7a7a;
    font-size: clamp(1.1rem, 3.5vw, 1.6rem);
    font-style: italic;
}

.l-scroll-hint {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: #4a4a4a;
    opacity: 0.9;
    animation: bounce 2s infinite;
    font-weight: bold;
}

.l-tos-link {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    font-size: 0.9rem;
    text-align: center;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-top: 1px solid #d0d0d0;
    opacity: 0.95;
}

.l-tos-link a {
    color: #4a4a4a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.l-tos-link a:hover {
    color: #5f5f5f;
    border-bottom-color: #4a4a4a;
}

.l-copyright {
    font-size: 0.8rem;
    color: #7a7a7a;
    opacity: 0.8;
    width: 100%;
}

.l-separator {
    margin: 0 15px;
    color: #7a7a7a;
    opacity: 0.6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
