/* new-index.css - стили для главной страницы "В КАЧАЛКЕ" */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #444444;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    min-height: 100vh;
}

.index-page {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Строка 1: Большой логотип */
.logo-header {
    text-align: center;
    padding: 20px 0 40px 0;
    margin-bottom: 20px;
}

.main-logo {
    width: 180px;
    height: 180px;
    cursor: pointer;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.main-logo:hover {
    transform: scale(1.02);
}

/* Строка 2: Два столбца с увеличенным расстоянием */
.profile-row-two-columns {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    background-color: #333333;
    border-radius: 24px;
    padding: 30px 25px;
}

.profile-avatar-column {
    flex-shrink: 0;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #E9AE67, #c4894a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.avatar-circle:hover {
    transform: scale(1.05);
}

.profile-info-column {
    flex: 1;
}

.user-name-large {
    font-size: 24px;
    font-weight: bold;
    color: #E9AE67;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-bottom: 8px;
}

.user-name-large:hover {
    color: #d4913e;
    text-decoration: underline;
}

.user-login {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 5px;
}

.user-id {
    font-size: 13px;
    color: #888;
}

/* Строка 3: Кнопка "В качалку" - новый дизайн */
.action-buttons {
    margin-bottom: 25px;
}

.action-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #E9AE67, #c4894a);
    color: #222;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.action-btn:hover {
    background: linear-gradient(135deg, #d4913e, #b87a35);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.action-btn:active {
    transform: translateY(0);
}

/* Строка 4: Кнопка "Выйти" - новый дизайн */
.logout-section {
    text-align: center;
}

.logout-btn {
    background: rgba(220, 53, 69, 0.15);
    border: 2px solid #dc3545;
    color: #dc3545;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
    letter-spacing: 1px;
}

.logout-btn:hover {
    background-color: #dc3545;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.logout-btn:active {
    transform: translateY(0);
}

/* Бургер меню */
.burger-menu {
    position: fixed;
    top: 15px;
    left: 20px;
    width: 30px;
    height: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1000;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu:hover span {
    background-color: #E9AE67;
}

/* Адаптив */
@media (max-width: 768px) {
    .index-page {
        padding: 30px 15px;
    }
    
    .main-logo {
        width: 140px;
        height: 140px;
    }
    
    .logo-header {
        padding: 15px 0 30px 0;
    }
    
    .profile-row-two-columns {
        gap: 25px;
        padding: 20px;
    }
    
    .avatar-circle {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    
    .user-name-large {
        font-size: 20px;
    }
    
    .action-btn {
        padding: 14px;
        font-size: 18px;
    }
    
    .logout-btn {
        padding: 10px 20px;
        font-size: 14px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .main-logo {
        width: 110px;
        height: 110px;
    }
    
    .logo-header {
        padding: 10px 0 25px 0;
    }
    
    .profile-row-two-columns {
        gap: 15px;
        padding: 15px;
    }
    
    .avatar-circle {
        width: 65px;
        height: 65px;
        font-size: 32px;
    }
    
    .user-name-large {
        font-size: 16px;
    }
    
    .user-login {
        font-size: 11px;
    }
    
    .user-id {
        font-size: 10px;
    }
    
    .action-btn {
        padding: 12px;
        font-size: 16px;
    }
    
    .logout-btn {
        padding: 8px 16px;
        font-size: 13px;
        max-width: 160px;
    }
}