* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Playfair Display', serif;
    /* Робимо сторінку довгою, щоб вона скролилась нативно */
    height: 5000px; 
    overflow-x: hidden;
}

.drum-container {
    /* Барабан завжди стоїть по центру екрана, поки ти скролиш */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
    z-index: 10;
}

.drum-wheel {
    position: relative;
    transform-style: preserve-3d;
    height: 50px;
    width: 100%;
}

.drum-item {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    backface-visibility: hidden;
    padding: 10px;
}

.main-text {
    font-size: 1.6rem;
    line-height: 1.1;
    max-width: 500px;
    color: #000;
}

.sub-text {
    font-size: 0.8rem;
    color: #888; /* Сірий текст підписів */
    margin-top: 6px;
    font-style: italic;
    max-width: 450px;
}

a {
    color: inherit;
    text-decoration: underline;
    font-style: italic;
}

@media (max-width: 768px) {
    .main-text { font-size: 1.1rem; max-width: 280px; }
    .sub-text { font-size: 0.65rem; max-width: 240px; }
}