/* Сброс отступов и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF;
    color: #474A51;
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

/* Стиль для КАЖДЫЙ ДЕНЬ */
.main-title {
    color: #293133;
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Контейнер для стрелок и цитаты */
.quote-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

/* Белые стрелки по бокам - АБСОЛЮТНО без фона */
.nav-arrow {
    font-size: clamp(1rem, 3.5vw, 1.5rem);
    color: #293133 !important;  /* белый цвет любой ценой */
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    line-height: 1;
    
    /* Полностью убираем любой фон */
    background: none !important;
    background-color: transparent !important;
    
    /* Убираем рамки и обводки */
    border: none !important;
    outline: none !important;
    
    /* Убираем тени и эффекты */
    box-shadow: none !important;
    text-shadow: none !important;
    
    /* Убираем отступы, которые могут создавать фон */
    padding: 0;
    margin: 0;
    
    /* Убираем эффекты при наведении */
    -webkit-tap-highlight-color: transparent;
}

.nav-arrow:hover {
    color: #ffffff !important;
    opacity: 1;
    transform: scale(0.2);
    /* Убираем возможные фоны при наведении */
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Стрелки - чистый символ без фона */
.nav-arrow {
    font-size: clamp(1rem, 5vw, 2rem);
    color: #ffffff;
    cursor: pointer;
    user-select: none;
    line-height: 1;
    
    /* Убираем всё лишнее */
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 20px !important;
    margin: 0 !important;
    display: inline-block !important;
    text-decoration: none !important;
    
    /* Убираем возможные фоны при наведении */
    -webkit-tap-highlight-color: transparent;
}

.nav-arrow:hover {
    color: #293133;
    opacity: 0.8;
    transform: scale(1.2);
    background: transparent !important;
    border: none !important;
}

.nav-arrow:active {
    transform: scale(0.9);
    background: transparent !important;
}

/* Контейнер для стрелок и цитаты */
.quote-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

/* Контейнер для текста */
.quote-wrapper {
    font-size: clamp(0.9rem, 3vw, 1.4rem);
    font-style: italic;
    color: #293133;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Индикатор */
.page-indicator {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

/* Адаптивность для мобильных */
@media (max-width: 600px) {
    .main-title {
        font-size: 2rem;
        letter-spacing: 0.1em;
        margin-bottom: 2rem;
    }
    
    .quote-container {
        gap: 10px;
    }
    
    .nav-arrow {
        font-size: 1rem;
    }
    
    .quote-text {
        font-size: 0.9rem;
    }
}

/* Для очень маленьких экранов - стрелки сверху/снизу */
@media (max-width: 400px) {
    .quote-container {
        flex-wrap: wrap;
    }
    
    .quote-wrapper {
        order: -1;  /* цитата сверху */
        width: 100%;
        margin-bottom: 15px;
    }
    
    .nav-arrow {
        font-size: 3rem;
        flex: 1;
        text-align: center;
    }
}

/* Анимация при смене цитаты */
.quote-text.fade-out,
.quote-author.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.quote-text.fade-in,
.quote-author.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}


/* Контейнер для социальных ссылок */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Стиль каждой ссылки */
.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: #9C9C9C;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Индивидуальные цвета при наведении */
.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
    color: #ff0000;
}

.social-link.boosty:hover {
    background: rgba(255, 87, 0, 0.1);
    border-color: #ff5700;
    color: #ff5700;
}

/* Иконки */
.social-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

/* Текст ссылки */
.social-link span {
    font-weight: 500;
}

/* Адаптивность для мобильных */
@media (max-width: 600px) {
    .social-links {
        gap: 15px;
        margin-top: 30px;
    }
    
    .social-link {
        padding: 8px 15px;
        font-size: 1rem;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 400px) {
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
}

/* Анимация появления */
@keyframes socialAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-links {
    animation: socialAppear 0.8s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}


.quote-text {
    white-space: pre-line;  /* Сохраняет переносы строк из \n */
    /* или */
    white-space: pre-wrap;  /* Сохраняет и переносы, и пробелы */
}
