:root {
  /* === Фиолетовая палитра (Indigo) === */
  --indigo-50: #EEF2FF;
  --indigo-100: #E0E7FF;
  --indigo-200: #C7D2FE;
  --indigo-300: #A5B4FC;
  --indigo-400: #818CF8;
  --indigo-500: #6366F1;
  --indigo-600: #4F46E5;
  --indigo-700: #4338CA;
  --indigo-800: #3730A3;
  --indigo-900: #312E81;
  --indigo-950: #1E1B4B;
}

/* === Сброс и база === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Axiforma', sans-serif;
    background: linear-gradient(135deg, var(--indigo-800), var(--indigo-950));
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: white;
}

/* === Контейнер (как экран телефона) === */
.container {
    background: linear-gradient(180deg, var(--indigo-700), var(--indigo-800));
    width: 100%;
    max-width: 400px;
    min-height: 80vh;
    border-radius: 30px;
    padding: 30px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* === Заголовок === */
.content h1 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.4;
}

/* === Кнопки === */
.services {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-bottom: 30px;
}

.services .button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
}

/* Основная кнопка (прокси) */
.services .button {
    background: linear-gradient(135deg, var(--indigo-500), var(--indigo-600));
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.services .button:hover {
    background: linear-gradient(135deg, var(--indigo-600), var(--indigo-700));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

/* Эффект нажатия для всех кнопок */
.services .button:active {
    transform: translateY(0);
    transition: none;
}

/* === Видео === */
.cuti-birch {
    width: 100%;
    max-width: 200px;
    margin: 0 auto; 
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* === Адаптив === */
@media (max-width: 480px) {
    .container {
        border-radius: 20px;
        padding: 25px 15px;
    }
    
    .content h1 {
        font-size: 20px;
    }
    
    .services .button {
        padding: 14px 20px;
        font-size: 15px;
    }
}