/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Montserrat:wght@300;400;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/tt-nooks');
@import url('https://fonts.cdnfonts.com/css/gilroy-bold');

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: fixed;
    font-family: 'Gilroy', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #18130F;
    color: #F7F1E8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-user-select: none;
    user-select: none;
    touch-action: pan-y;
}

.book-app {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* ===== PAGE SYSTEM ===== */
.page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    pointer-events: none;
    overflow-y: auto;
    overflow-x: hidden;
}

.page.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.page-content {
    padding: 0;
    width: 100%;
    min-height: 100%;
}

/* ===== BIRTHDAY SCREEN (KEEP AS IS) ===== */
#birthday-screen {
    background-color: #18130F;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    overflow: hidden;
}

#birthday-screen::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 80%;
    background: radial-gradient(circle at center, rgba(244, 214, 182, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

#birthday-screen::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(174, 147, 138, 0.05), transparent);
    pointer-events: none;
    z-index: 1;
}

.book-title {
    font-family: 'Georgia', 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(40px, 10vw, 54.76px);
    line-height: 1.1;
    letter-spacing: -0.06em;
    color: #F7F1E8;
    text-align: center;
    margin-top: clamp(30px, 5.5vh, 44px);
    margin-bottom: clamp(2px, 0.5vh, 4px);
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.book-title .highlight {
    color: #F4D6B6;
}

.book-subtitle {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.3;
    color: #F7F1E8;
    text-align: center;
    margin-bottom: clamp(20px, 3vh, 30px);
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.book-subtitle strong {
    font-weight: 600;
}

.birthday-section {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 clamp(16px, 4vw, 20px);
    padding-bottom: clamp(200px, 40vh, 400px);
}

.birthday-form {
    width: 100%;
    max-width: clamp(340px, 92vw, 367px);
    background: rgba(40, 33, 28, 0.70);
    border: 1px solid rgba(174, 147, 138, 0.25);
    border-radius: 12px;
    padding: clamp(20px, 4vh, 30px) clamp(16px, 4vw, 20px);
    position: relative;
    overflow: visible;
    backdrop-filter: blur(10px);
}

.birthday-form::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://storage.daniillepekhin.com/Regina/bioageapp/newimage/acd15cbd196de8ddd623704109268e8611175b19.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 0;
}

.birthday-form::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://storage.daniillepekhin.com/Regina/bioageapp/newimage/04c0647e1a5ae2eaedd3f28f4ebbf1d4770f7607.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}

.birthday-section h2 {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(22px, 5vw, 28.4px);
    line-height: 1.2;
    color: #F4D6B6;
    text-align: center;
    margin: 0 0 clamp(12px, 2vh, 18px) 0;
    z-index: 1;
    position: relative;
}

.hint {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(12px, 3vw, 14px);
    line-height: 1.3;
    color: #F7F1E8;
    text-align: center;
    margin: 0 0 clamp(24px, 4vh, 32px) 0;
    z-index: 1;
    position: relative;
}

.hidden-date-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
    z-index: -1;
}

.date-picker-drums {
    display: flex;
    gap: clamp(6px, 1.5vw, 8px);
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(24px, 4vh, 34px);
    z-index: 1;
    position: relative;
}

.drum-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.drum-container:nth-child(2) {
    margin-right: clamp(8px, 2vw, 12px);
}

.drum-container:nth-child(4) {
    margin-right: clamp(8px, 2vw, 12px);
}

.drum {
    width: clamp(30px, 7vw, 34px);
    height: clamp(70px, 14vh, 95px);
    background: linear-gradient(90deg,
        #C4B5A5 0%,
        #AA9B8B 15%,
        #8D7E6E 30%,
        #5C4D3D 50%,
        #8D7E6E 70%,
        #AA9B8B 85%,
        #C4B5A5 100%
    );
    border-radius: clamp(6px, 1.5vw, 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(28px, 7vw, 36px);
    color: #F7F1E8;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    position: relative;
    box-shadow:
        inset 2px 0 4px rgba(255, 255, 255, 0.3),
        inset -2px 0 4px rgba(0, 0, 0, 0.4),
        inset 0 2px 2px rgba(255, 255, 255, 0.2),
        inset 0 -2px 2px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.3);
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.5),
        0 -1px 1px rgba(255, 255, 255, 0.15);
}

.drum::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), transparent);
    border-radius: clamp(6px, 1.5vw, 8px) clamp(6px, 1.5vw, 8px) 0 0;
    pointer-events: none;
}

.drum::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 25%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    border-radius: 0 0 clamp(6px, 1.5vw, 8px) clamp(6px, 1.5vw, 8px);
    pointer-events: none;
}

.drum:active {
    transform: scale(0.97);
}

.next-btn {
    width: 100%;
    max-width: clamp(260px, 70vw, 328px);
    height: clamp(48px, 10vh, 56px);
    background: linear-gradient(180deg, #D74F49 0%, #A52E28 100%);
    border: none;
    border-radius: 12px;
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 3.5vw, 16px);
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 auto 5px;
    display: block;
    position: relative;
    z-index: 10;
    box-shadow:
        0 4px 12px rgba(213, 79, 73, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.3);
}

.next-btn:active {
    transform: scale(0.98);
}

.book-decoration {
    position: absolute;
    top: calc(100% - 60px);
    left: 50%;
    transform: translateX(-50%);
    width: 145vw;
    max-width: 580px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.book-decoration img {
    width: 100%;
    height: auto;
    display: block;
}

.candle {
    position: absolute;
    width: 1200px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    filter: blur(1.5px);
    display: none;
}

.candle img {
    width: 100%;
    height: auto;
    display: block;
}

.custom-calendar {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(60, 50, 45, 0.6);
    border: 1px solid rgba(174, 147, 138, 0.3);
    border-radius: 12px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.custom-calendar.active {
    opacity: 1;
    max-height: 200px;
    overflow: visible;
}

.calendar-selectors {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.calendar-select {
    flex: 1;
    padding: 12px;
    background: rgba(40, 33, 28, 0.8);
    border: 1px solid rgba(174, 147, 138, 0.3);
    border-radius: 8px;
    color: #F7F1E8;
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
}

.calendar-confirm-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(180deg, #D74F49 0%, #A52E28 100%);
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(213, 79, 73, 0.3);
    transition: transform 0.2s ease;
}

.calendar-confirm-btn:active {
    transform: scale(0.98);
}

/* ===== NEW ROADMAP SCREEN ===== */
#roadmap-screen {
    background: #F5EDE0;
    overflow-y: auto;
}

.roadmap-wrapper {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
}

.paper-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.paper-layer {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0.9;
    transform: scaleX(1.5);
    transform-origin: center;
}

/* Paper body sections - stack them vertically starting from top */
.paper-body {
    z-index: 4;
}

.paper-body-1 {
    top: 0;
}

.paper-body-2 {
    top: 250px;
}

.paper-body-3 {
    top: 500px;
}

.paper-body-4 {
    top: 750px;
}

.paper-body-5 {
    top: 1000px;
}

.paper-body-6 {
    top: 1250px;
}

.paper-body-7 {
    top: 1500px;
}

.paper-body-8 {
    top: 1750px;
}

.paper-body-9 {
    top: 2000px;
}

.paper-body-10 {
    top: 2250px;
}

.roadmap-content {
    position: relative;
    z-index: 10;
    padding: 40px 0 80px;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.roadmap-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 300;
    font-size: clamp(48px, 12vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    color: #463631;
    margin: 0 0 16px 0;
}

.roadmap-subtitle {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #463631;
    margin: 0;
}

.roadmap-subtitle strong {
    font-weight: 700;
}

.roadmap-path {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-height: 1400px;
    padding: 0;
}

.road-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.chapters-map {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding: 20px;
    width: 100%;
    margin: 0;
}

.chapter-item {
    position: relative;
    width: clamp(240px, 55vw, 320px);
    height: clamp(52px, 11vw, 68px);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chapter-item.chapter-left {
    align-self: flex-start;
    margin-left: 0;
    transform: rotate(-5.592deg);
}

.chapter-item.chapter-right {
    align-self: flex-end;
    margin-right: 0;
    transform: rotate(13.927deg);
}

.chapter-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chapter-text {
    position: relative;
    z-index: 2;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 400;
    text-transform: uppercase;
    color: #463631;
    letter-spacing: 0.05em;
}

.chapter-item.locked {
    opacity: 0.4;
    cursor: not-allowed;
}

.chapter-item.completed {
    opacity: 0.7;
}

.lock-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    z-index: 3;
    display: block;
}

/* Hide lock icon when chapter is not locked */
.chapter-item:not(.locked) .lock-icon {
    display: none;
}

.chapter-item:not(.locked):active {
    transform: scale(0.95);
}

/* ===== CHAPTER QUESTION SCREEN ===== */
#chapter-screen {
    background: #18130F;
    overflow-y: auto;
}

.chapter-wrapper {
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* Background container with all effects from Figma */
.chapter-bg-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.chapter-bg-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
}

/* Chapter-specific background adjustments */
.chapter-bg-image[data-chapter="1"] {
    filter: brightness(0.85);
}

.chapter-bg-image[data-chapter="2"] {
    filter: brightness(0.85);
    object-position: center 55%;
}

.chapter-bg-image[data-chapter="3"] {
    object-position: center 55%;
}

.chapter-bg-image[data-chapter="4"] {
    filter: brightness(0.85);
}

.chapter-bg-image[data-chapter="5"] {
    filter: brightness(0.85);
}

.chapter-bg-image[data-chapter="6"] {
    filter: brightness(0.85);
    object-position: center 55%;
}

.chapter-bg-image[data-chapter="7"] {
    filter: brightness(0.85);
}

.chapter-bg-image[data-chapter="8"] {
    filter: brightness(0.85);
}

.chapter-bg-image[data-chapter="9"] {
    object-position: center 55%;
}

.chapter-bg-image[data-chapter="12"] {
    filter: brightness(0.85);
}

.chapter-orb {
    position: absolute;
    left: -46px;
    top: 178px;
    width: 391px;
    height: 391px;
    background: radial-gradient(circle, rgba(244, 214, 182, 0.3) 0%, rgba(244, 214, 182, 0.1) 40%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
}

.chapter-line {
    position: absolute;
    left: 29px;
    top: 308px;
    width: 341px;
    height: 1px;
    background: rgba(174, 147, 138, 0.3);
}

.chapter-gradient-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #18130F 0%, rgba(24, 19, 15, 0.8) 50%, transparent 100%);
    pointer-events: none;
}

.chapter-header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.chapter-number-btn,
.back-btn {
    padding: 6px 20px;
    background: #15110D;
    border: 0.5px solid #AE938A;
    border-radius: 113px;
    font-family: 'TT Nooks', 'Georgia', serif;
    font-size: 12.5px;
    font-weight: 400;
    text-transform: uppercase;
    color: #F7F1E8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chapter-number-btn:active,
.back-btn:active {
    transform: scale(0.95);
    background: rgba(247, 241, 232, 0.1);
}

.video-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px;
}

.chapter-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    background: #000;
}

/* Hide video if no source */
.chapter-video:not([src]) {
    display: none;
}

.question-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.question-title {
    font-family: 'TT Nooks', 'Georgia', serif;
    font-size: clamp(32px, 8vw, 43px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -2.58px;
    color: #F7F1E8;
    margin-bottom: 60px;
    text-align: left;

    /* Background frame for better readability */
    background: rgba(21, 17, 13, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 20px 24px;
    display: inline-block;
    width: auto;
    max-width: 100%;
}

.question-title .gold-text {
    color: #F4D6B6;
}

.answers-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.answer-option {
    width: 100%;
    padding: 16px 20px;
    background: #15110D;
    border: 0.5px solid #AE938A;
    border-radius: 2px;
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #F7F1E8;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.answer-option:hover {
    background: rgba(21, 17, 13, 0.8);
    border-color: #D4B89E;
}

.answer-option:active {
    transform: scale(0.98);
    background: #1A1510;
}

/* ===== BIOAGE RESULT SCREEN ===== */
#bioage-result-screen {
    background: #18130F;
    overflow-y: auto;
}

.bioage-wrapper {
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://storage.daniillepekhin.com/Regina/bioageapp/fot_age.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.result-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 19, 15, 0.3) 0%, rgba(24, 19, 15, 0.5) 100%);
}

.bioage-wrapper > * {
    position: relative;
    z-index: 10;
}

/* Results Video */
.results-video-container {
    width: 100%;
    max-width: 341px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
}

.results-video {
    width: 100%;
    height: auto;
    aspect-ratio: 341 / 216;
    display: block;
    object-fit: cover;
    background: #000;
}

.age-comparison {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 341px;
    margin: 0 auto 20px;
}

.age-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    background: linear-gradient(135deg, rgba(40, 33, 28, 0.6) 0%, rgba(30, 25, 21, 0.5) 100%);
    border: 1px solid rgba(174, 147, 138, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.age-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(174,147,138,0.05)" stroke-width="0.5"/></pattern><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.bio-age-box {
    background: linear-gradient(135deg, rgba(165, 46, 40, 0.4) 0%, rgba(140, 35, 30, 0.3) 100%);
    border-color: rgba(215, 79, 73, 0.5);
}

.age-label {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #F7F1E8;
    line-height: 1.3;
}

.age-number {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 48px;
    font-weight: 400;
    color: #F7F1E8;
}

.bio-number {
    color: #FFFFFF;
}

/* Paper Scroll */
.result-paper-scroll {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin: 20px auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.paper-scroll-top {
    width: 100%;
    height: 60px;
    display: block;
    position: relative;
    z-index: 2;
    object-fit: cover;
    object-position: top;
}

.paper-scroll-bottom {
    width: 100%;
    height: 60px;
    display: block;
    transform: scaleY(-1);
    position: relative;
    z-index: 2;
    object-fit: cover;
    object-position: top;
}

.paper-scroll-content {
    position: relative;
    width: 100%;
    background: #e7decf;
    padding: 10px 50px 40px 50px;
    margin-top: -10px;
    margin-bottom: -10px;
    z-index: 1;
    box-shadow: inset 0 0 30px rgba(139, 78, 68, 0.1);
}

.decorative-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 25px;
}

.decorative-dots .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #8B4E44;
    opacity: 0.6;
}

.result-description {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.7;
    color: #3D312A;
    text-align: center;
    white-space: pre-line;
}

.result-description strong {
    font-weight: 600;
}

.red-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 342px;
    padding: 20px 40px;
    background: linear-gradient(180deg, #D74F49 0%, #A52E28 100%);
    border: none;
    border-radius: 50px;
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(213, 79, 73, 0.4);
    margin-top: 20px;
}

.red-button:active {
    transform: scale(0.98);
}

/* Secondary Button */
.secondary-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 342px;
    padding: 20px 40px;
    background: transparent;
    border: 2px solid rgba(247, 241, 232, 0.3);
    border-radius: 50px;
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #f7f1e8;
    text-transform: uppercase;
    margin: 15px auto 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-button:hover {
    background: rgba(247, 241, 232, 0.1);
    border-color: rgba(247, 241, 232, 0.5);
}

.secondary-button:active {
    transform: scale(0.98);
}

/* ===== NUMEROLOGY SCREEN ===== */
#numerology-screen {
    background: #18130F;
    overflow-y: auto;
}

.numerology-wrapper {
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.numerology-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://storage.daniillepekhin.com/Regina/bioageapp/fon_numer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.numerology-wrapper > * {
    position: relative;
    z-index: 10;
}

.numerology-title {
    font-family: 'TT Nooks', 'Georgia', serif;
    font-size: clamp(32px, 7vw, 42px);
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 20px;
}

.numerology-title .title-white {
    color: #F7F1E8;
}

.numerology-title .title-gold {
    color: #f4d6b6;
}

/* Numerology Video */
.numerology-video-container {
    width: 100%;
    max-width: 341px;
    margin: 0 auto 30px;
    border-radius: 12px;
    overflow: hidden;
    background: #2a2a2a;
}

.numerology-video {
    width: 100%;
    height: auto;
    aspect-ratio: 341 / 216;
    display: block;
    object-fit: cover;
}

.numerology-number-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
}

.numerology-circle-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.numerology-number {
    position: relative;
    z-index: 2;
    font-family: 'TT Nooks', 'Georgia', serif;
    font-size: 180px;
    font-weight: 400;
    color: #FFFFFF;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.numerology-description {
    width: 100%;
    max-width: 500px;
    padding: 30px;
    background: transparent;
    margin: 20px 0;
}

.numerology-description p {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #F7F1E8;
    text-align: center;
    white-space: pre-line;
}

.numerology-description strong {
    font-weight: 700;
}

/* ===== SALES SCREEN ===== */
#sales-screen {
    overflow-y: auto;
}

.sales-wrapper {
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.sales-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://storage.daniillepekhin.com/Regina/bioageapp/fon_end.jpg?v=2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.sales-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(199, 62, 56, 0.4) 0%, rgba(139, 38, 32, 0.5) 100%);
    z-index: 2;
}

.sales-wrapper > * {
    position: relative;
    z-index: 10;
}

.sales-title {
    font-family: 'TT Nooks', 'Georgia', serif;
    font-size: clamp(28px, 6vw, 36px);
    font-weight: 400;
    color: #F7F1E8;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

/* Sales Video */
.red-video-bg {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 30px;
    padding: 20px;
    background-image: url('https://storage.daniillepekhin.com/Regina/bioageapp/red_fon.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    position: relative;
}

.sales-video-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.sales-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    background: #000;
}

.product-container {
    width: 100%;
    max-width: 100%;
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.product-image {
    width: 200%;
    max-width: 200%;
    height: auto;
    object-fit: contain;
    transform: scale(2);
}

.product-title {
    font-family: 'TT Nooks', 'Georgia', serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -1.8px;
    color: #F7F1E8;
    text-align: left;
    margin: 20px auto 30px;
    max-width: 320px;
}

.gold-text {
    color: #F4D6B6;
}

.benefits-container {
    width: 100%;
    max-width: 320px;
    padding: 25px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(247, 241, 232, 0.15);
    border-radius: 8px;
    margin: 0 auto 25px;
}

.benefit-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    font-size: 10px;
    color: #F7F1E8;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-text {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    color: #F7F1E8;
}

.sales-description {
    width: 100%;
    max-width: 320px;
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    color: #F7F1E8;
    text-align: left;
    margin: 20px auto;
}

.sales-description strong {
    font-weight: 600;
}

.order-btn {
    margin-top: 30px;
}

/* ===== NOTIFICATION TOAST ===== */
.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(213, 79, 73, 0.95);
    color: #FFFFFF;
    padding: 16px 24px;
    border-radius: 12px;
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.notification.show {
    opacity: 1;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 360px) {
    .question-title {
        font-size: 24px;
    }

    .answer-option {
        padding: 16px 20px;
        font-size: 14px;
    }
}

/* ===== INTRO VIDEO SCREEN ===== */
.intro-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.intro-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://storage.daniillepekhin.com/Regina/bioageapp/fot_age.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.intro-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 19, 15, 0.3) 0%, rgba(24, 19, 15, 0.5) 100%);
}

.intro-wrapper > * {
    position: relative;
    z-index: 10;
}

.intro-video-container {
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.intro-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-story-box {
    width: 100%;
    max-width: 360px;
    padding: 25px 20px;
    background: rgba(247, 241, 232, 0.95);
    border: 1px solid rgba(247, 241, 232, 0.3);
    border-radius: 8px;
    margin: 0 auto 30px;
}

.intro-story-text {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #18130F;
    margin: 0 0 20px 0;
}

.intro-question {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #D54F49;
    margin: 0;
}

.intro-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(180deg, #D74F49 0%, #A52E28 100%);
    border: none;
    border-radius: 50px;
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(213, 79, 73, 0.4);
}

.intro-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(213, 79, 73, 0.6);
}

.intro-button:active {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .roadmap-title {
        font-size: 72px;
    }

    .question-title {
        font-size: 42px;
    }
}

/* ===== TOOL/SOLUTION SCREEN ===== */
.tool-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 40px 20px 60px;
    position: relative;
    overflow-y: auto;
}

.tool-bg {
    position: absolute;
    inset: 0;
    background: #18130F;
    z-index: 1;
}

.tool-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.tool-title {
    font-family: 'TT Nooks', 'Georgia', serif;
    font-size: clamp(36px, 8vw, 48px);
    font-weight: 300;
    line-height: 1.1;
    color: #F7F1E8;
    text-align: center;
    margin: 0 0 20px;
}

.tool-subtitle-badge {
    display: inline-block;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(247, 241, 232, 0.3);
    border-radius: 25px;
    margin-bottom: 40px;
}

.tool-subtitle-badge span {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #F7F1E8;
}

.tool-features {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.tool-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.tool-feature-image {
    width: 233px;
    height: 233px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.tool-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-feature-text {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #F7F1E8;
    text-align: center;
    margin: 0;
    max-width: 354px;
}

.tool-cta-box {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 20px;
    position: relative;
    margin-bottom: 30px;
    overflow: visible;
}

.tool-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://storage.daniillepekhin.com/Regina/bioageapp/newimage_2/красная%20херня.png') center/cover;
    z-index: 1;
}

.tool-cta-title {
    font-family: 'TT Nooks', 'Georgia', serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    color: #F7F1E8;
    text-align: center;
    margin: 0 0 15px;
    position: relative;
    z-index: 10;
}

.tool-cta-text {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #F7F1E8;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 10;
}

.tool-offer {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #F7F1E8;
    text-align: center;
    margin: 0 0 20px;
    max-width: 340px;
}

.tool-price {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #F7F1E8;
    text-align: center;
    margin: 0 0 30px;
}


/* ========================================
   Premium Offer Screen
   ======================================== */
#premium-screen {
    background: #18130f;
}

.premium-container {
    position: relative;
    z-index: 10;
    padding: 35px 21px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 10px;
}

.badge-text {
    font-family: 'Mariupol', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

/* Main Title */
.premium-title {
    font-family: 'Mariupol', sans-serif;
    font-size: 83px;
    font-weight: 300;
    line-height: 1.04;
    text-align: center;
    color: #f4d6b6;
    margin: 10px 0 15px;
    letter-spacing: -5px;
    text-transform: lowercase;
}

.premium-title .title-white {
    color: #f7f1e8;
}

/* Subtitle */
.premium-subtitle {
    font-family: 'Mariupol', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    text-align: center;
    color: rgba(247, 241, 232, 0.9);
    margin: 0 0 25px;
    max-width: 345px;
}

/* Section Heading */
.premium-heading {
    font-family: 'Mariupol', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #F7F1E8;
    margin: 0 0 25px;
    text-align: center;
}

/* Benefits Container */
.premium-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 341px;
    margin-bottom: 40px;
}

/* Benefit Card */
.premium-benefit-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(156, 23, 36, 0.9);
    border: 1px solid rgba(156, 23, 36, 0.5);
    border-radius: 8px;
    padding: 15px 20px 15px 15px;
    min-height: 75px;
}

.premium-benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://storage.daniillepekhin.com/Regina/bioageapp/newimage_2/acd15cbd196de8ddd623704109268e8611175b19.png') center/cover;
    opacity: 0.15;
    border-radius: 8px;
    pointer-events: none;
    z-index: 0;
}

/* Benefit Number */
.benefit-number {
    position: relative;
    z-index: 1;
    font-family: 'Mariupol', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #F7F1E8;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

/* Benefit Content */
.benefit-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.benefit-text {
    font-family: 'Mariupol', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #F7F1E8;
    margin: 0;
}

/* Navigator Title */
.premium-navigator-title {
    font-family: 'Mariupol', sans-serif;
    font-size: 73px;
    font-weight: 300;
    line-height: 0.84;
    text-align: center;
    color: #F7F1E8;
    margin: 0 0 15px;
    letter-spacing: -4.4px;
    text-transform: lowercase;
}

/* Navigator Subtitle */
.premium-navigator-subtitle {
    font-family: 'Mariupol', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    text-align: center;
    color: rgba(247, 241, 232, 0.9);
    margin: 0 0 5px;
}

/* Compass Container */
.premium-compass-container {
    width: 100%;
    max-width: 352px;
    margin: 0 0 0;
    display: flex;
    justify-content: center;
}

.premium-compass {
    width: 100%;
    height: auto;
    display: block;
}

/* Get Access Button */
.premium-access-btn {
    width: 100%;
    max-width: 342px;
    min-height: 60px;
    margin-top: -70px;
    position: relative;
    z-index: 20;
}

/* ===== KOD SPACE SCREEN (32-124) ===== */
#kod-space-screen {
    background: #18130f;
    min-height: 100vh;
}

.kod-space-container {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    position: relative;
    z-index: 10;
}

/* Main Title */
.kod-space-title {
    font-family: 'TT Nooks', 'Georgia', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.08;
    text-align: left;
    color: #f7f1e8;
    margin: 0 0 15px;
    letter-spacing: -1px;
}

/* Subtitle */
.kod-space-subtitle {
    font-family: 'Mariupol', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    text-align: left;
    color: #f4d6b6;
    margin: 0 0 40px;
}

/* Section Title */
.kod-section-title {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    color: #f7f1e8;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Section Text */
.kod-section-text {
    font-family: 'Mariupol', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    text-align: left;
    color: rgba(247, 241, 232, 0.9);
    margin: 0 0 20px;
}

/* Card Container */
.kod-card-container {
    width: 100%;
    margin: 0 0 35px;
}

.kod-card-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* App Section */
.kod-app-section {
    margin-bottom: 40px;
}

/* Club Section */
.kod-club-section {
    margin-bottom: 35px;
}

/* Benefits List */
.kod-benefits-list {
    margin: 0 0 20px;
}

.kod-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.kod-bullet {
    color: #D54F49;
    font-size: 8px;
    margin-right: 10px;
    margin-top: 6px;
    flex-shrink: 0;
}

.kod-benefit-text {
    font-family: 'Mariupol', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    color: rgba(247, 241, 232, 0.9);
    margin: 0;
}

/* Bottom Text */
.kod-bottom-text {
    font-family: 'Mariupol', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    text-align: center;
    color: rgba(247, 241, 232, 0.9);
    margin: 0 0 25px;
}

/* Closing Statement */
.kod-closing-text {
    font-family: 'Mariupol', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    text-align: center;
    color: rgba(247, 241, 232, 0.9);
    margin: 0 0 15px;
}

/* Welcome Title */
.kod-welcome-title {
    font-family: 'Mariupol', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    color: #f7f1e8;
    margin: 0 0 30px;
    letter-spacing: 1px;
}

/* Video Section */
.kod-video-container {
    width: 100%;
    max-width: 342px;
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.kod-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Trial Button */
.kod-trial-btn {
    width: 100%;
    max-width: 342px;
    min-height: 60px;
    margin: 0 auto;
    display: block;
    white-space: pre-line;
}

/* ===== OCTOBER CLUB SCREEN (32-2) ===== */
#october-club-screen {
    background: #18130f;
    min-height: 100vh;
    overflow-x: hidden;
}

.october-container {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    position: relative;
    z-index: 10;
}

/* Top Badge */
.october-badge {
    display: flex;
    justify-content: center;
    margin: 0 0 20px;
}

.october-badge-text {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #f7f1e8;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    background: rgba(247, 241, 232, 0.1);
    border: 1px solid rgba(247, 241, 232, 0.3);
    border-radius: 20px;
}

/* Main Title */
.october-main-title {
    font-family: 'TT Nooks', 'Georgia', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.08;
    text-align: center;
    color: #f4d6b6;
    margin: 0 0 25px;
    letter-spacing: -1px;
}

/* Month Banner */
.october-month-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 35px;
    position: relative;
    background-image: url('https://storage.daniillepekhin.com/Regina/bioageapp/newimage_2/Mask%20group.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 24px 45px;
    min-height: 180px;
}

.october-banner-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 15px;
}

.october-month-text {
    font-family: 'Mariupol', sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    color: #f7f1e8;
    margin: 0;
    letter-spacing: 2px;
}

.october-new-btn {
    font-family: 'Gilroy', 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #f7f1e8;
    background: transparent;
    border: 1px solid rgba(247, 241, 232, 0.5);
    border-radius: 20px;
    padding: 6px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.october-new-btn:hover {
    background: rgba(247, 241, 232, 0.1);
}

/* Banner Description (inside red banner) */
.october-banner-description {
    font-family: 'Mariupol', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.3;
    text-align: left;
    color: #f7f1e8;
    margin: 0;
}

/* Scroll Section Title - HIDDEN */
.october-scroll-title {
    display: none;
}

/* Activities Image - Ready made image with all text */
.october-activities-image {
    width: 100%;
    margin: 0 0 35px;
    display: flex;
    justify-content: center;
}

.october-scroll-img {
    width: 110%;
    max-width: 110%;
    height: auto;
    display: block;
}

/* Bottom Text */
.october-bottom-text {
    font-family: 'Mariupol', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    text-align: center;
    color: #f7f1e8;
    margin: 0 0 30px;
}

.october-text-gold {
    color: #f4d6b6;
}

/* October Trial Button */
.october-trial-btn {
    width: 100%;
    max-width: 342px;
    min-height: 60px;
    margin: 0 auto;
    display: block;
}
