* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(40, 72, 240, .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: hsl(var(--gray-0));
    color: hsl(var(--gray-900));
}

.container {
    background-image: linear-gradient(to bottom, #f779f9, #f67171);
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.profile {
    text-align: center;
    color: white;
    width: 85%;
    max-width: 400px;
    position: relative;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 2px solid #ffffff;
}

h1 {
    font-size: 19px;
    margin-bottom: 8px;
    text-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.25);
    font-weight: 400;
}

.status {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 1;
    text-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.25);
    font-weight: 600;
    padding: 0 40px;
}

.social-icons {
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
}

.social-icons a {
    margin: 0 4px;
    text-decoration: none;
}

.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: rgba(153, 172, 255, 0.92);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 36px;
    padding: 8px;
    min-height: 65px;
    width: 100%;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    text-transform: none;
    box-shadow: none;
    margin: 0 0 1.5% 0; /* Увеличил расстояние между кнопками до 1.5% для эстетики */
    position: relative;
    transition: background-color 0.3s;
}

.main-btn {
    border: 4px solid rgb(255, 255, 255); /* Увеличил рамку для выделения первой кнопки */
    background-color: rgba(100, 149, 237, 0.92); /* Поменял цвет на более заметный (CornflowerBlue) */
    animation: pulse 1.5s infinite; /* Добавил анимацию "дергания" */
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn:hover {
    background-color: rgba(200, 200, 255, 0.92);
}

.btn-thumbnail {
    margin-right: 10px;
    position: absolute;
    left: 10px;
}

.button-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.btn-text {
    flex-grow: 1;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
}

.btn-text br {
    content: " ";
    display: block;
    margin-bottom: 5px;
}

.btn-text::after {
    content: attr(data-text);
    font-size: 12px;
    color: #ccc;
    display: none;
}

:root {
    --gray-0: 0 0% 100%;
    --gray-50: 0 0% 98%;
    --gray-200: 0 0% 93%;
    --gray-300: 0 0% 88%;
    --gray-400: 0 0% 74%;
    --gray-500: 0 0% 62%;
    --gray-700: 0 0% 38%;
    --gray-900: 0 0% 11%;
    --red-500: 349 100% 35%;
    --blue-500: 230 87% 55%;
    --upgrade-orange: 8 100% 62%;
    --upgrade-pink: 323 100% 56%;
    --ai-gradient-stop-1: 203 100% 67%;
    --ai-gradient-stop-2: var(--blue-500);
    --pro-gradient-stop-1: var(--upgrade-orange);
    --pro-gradient-stop-2: var(--upgrade-pink);
    --background: var(--gray-0);
    --foreground: var(--gray-900);
    --card: var(--gray-0);
    --card-foreground: var(--gray-900);
    --popover: var(--gray-0);
    --popover-foreground: var(--gray-900);
    --primary: var(--gray-900);
    --primary-foreground: var(--gray-50);
    --primary-blue: var(--blue-500);
    --primary-blue-foreground: var(--gray-50);
    --secondary: var(--gray-200);
    --secondary-foreground: var(--gray-900);
    --muted: var(--gray-500);
    --muted-foreground: var(--gray-700);
    --accent: var(--gray-200);
    --accent-foreground: var(--gray-900);
    --destructive: var(--red-500);
    --destructive-foreground: var(--gray-0);
    --border: var(--gray-300);
    --input: var(--gray-300);
    --ring: var(--gray-900);
    --chart-1: var(--primary-blue);
    --chart-2: var(--pro-gradient-stop-2);
    --chart-3: var(--ai-gradient-stop-1);
    --chart-4: 280 65% 60%;
    --chart-5: 340 75% 55%;
    --radius: 0.4rem;
    --sidebar-background: var(--gray-50