/* Общие настройки */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: "Segoe UI", Tahoma, sans-serif;
    overflow: hidden;
}

/* Фон в стиле Vista/7 Aurora */
body {
    background: #004687;
    background-image: 
        radial-gradient(at 0% 0%, hsla(203, 80%, 40%, 1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(150, 60%, 45%, 1) 0, transparent 50%), 
        radial-gradient(at 100% 100%, hsla(200, 80%, 50%, 1) 0, transparent 50%), 
        radial-gradient(at 0% 100%, hsla(180, 70%, 40%, 1) 0, transparent 50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Основное окно Aero Glass */
.aero-window {
    width: 420px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 
                inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* Глянцевый блик сверху окна */
.aero-window::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

/* Полоска заголовка */
.title-bar {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
}

.window-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.window-controls {
    display: flex;
    gap: 5px;
}

.win-btn {
    width: 28px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}

.btn-close:hover {
    background: #e81123;
}

/* Тело окна */
.window-body {
    padding: 25px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.avatar-wrapper {
    width: 80px;
    height: 80px;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    background: #fff;
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 22px;
    font-weight: 500;
}

.description {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

.aero-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    margin: 20px 0;
}

/* Сетка кнопок-ссылок */
.links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.aero-button {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    text-align: center;
    border-radius: 5px;
    color: white;
    transition: all 0.2s;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.aero-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.window-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 11px;
    opacity: 0.6;
}

