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

html, body {
    height: 100%;
    overflow: hidden; /* убираем скролл body */
    font-family: Arial, sans-serif;
    background: #fff;
    color: #111;
}

.slides {
    height: 100vh;
    overflow-y: auto;          /* скролл только здесь */
    scroll-snap-type: y mandatory;

    -ms-overflow-style: none;  /* IE */
    scrollbar-width: none;     /* Firefox */
}

.slides::-webkit-scrollbar {
    display: none;             /* Chrome/Safari */
}

.slide {
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px;
    transition: background 0.6s ease, color 0.6s ease;
}

.slide.dark {
    background: #111;
    color: #fff;
}

.dots {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 100;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bbb;
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot.active {
    background: #111;
    transform: scale(1.6);
}

/* Контент */
.inner {
    max-width: 800px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

#audio-track {
    background: rgba(0,0,0,0.1); /* светлый фон полосы */
    cursor: pointer;
}

h1 { font-size: 100px; letter-spacing: 8px; font-weight: 300; }
h2 { font-size: 42px; margin-bottom: 20px; font-weight: 400; }
p { font-size: 20px; line-height: 1.6; opacity: 0.8; }

.social { margin-top: 30px; display: flex; gap: 30px; justify-content: center; }
.social a { text-decoration: none; color: inherit; position: relative; transition: opacity 0.4s ease; }
.social a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: currentColor; transition: width 0.4s ease; }
.social a:hover::after { width: 100%; }
.social a:hover { opacity: 0.6; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero {
    background: none;
    transition: background-color 0.5s ease;
}

.music-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    border-radius: 0;
    border: 1px solid #111;
    background: #111;      /* всегда тёмная подложка */
    color: #fff;           /* всегда белый текст */
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    transition: transform 0.3s ease; /* оставим только transform для hover */
    z-index: 200;
}

.music-btn:hover {
    transform: scale(1.1); /* слегка увеличиваем при наведении */
}

.slide.dark ~ .music-btn {
    border-color: #fff;
    color: #fff;
}

.slide.dark + .slide .music-btn { 
    border-color: #fff;
}

/* Лого на первом слайде */
.logo-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.logo-slide .logo {
    width: 400px; /* крупное лого */
    height: auto;
    transition: all 0.6s ease;
    animation: none !important;
    transform: none !important;
}

.logo-slide h1 {
    font-size: 100px;
    font-weight: 300;
    letter-spacing: 6px;
    margin-top: 20px;
}

.logo-slide .tagline {
    font-size: 24px;
    opacity: 0.85;
}

/* Лого после скролла */
.logo-fixed {
    position: fixed;
    top: 20px;
    left: 20px;      /* можно поправить под правый верхний угол */
    width: 100px;    /* уменьшенное лого */
    height: auto;
    z-index: 100;
    transition: all 0.6s ease;
}

/* Урал абзац */
.ural {
    margin-top: 60px;
    font-size: 18px;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

/* Немного плотнее текст в dark-слайде */
.slide.dark p {
    max-width: 700px;
    margin: 0 auto 20px auto;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.5px;
}

h1 {
    font-weight: 200;
    letter-spacing: 10px;
}

h2 {
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

p {
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
}

/* Блок МЫ НЕ — жёстче */
.not-line {
    letter-spacing: 2px;
    font-weight: 400;
}

/* Немного уже текстовый контейнер */
.inner {
    max-width: 700px;
}