/* Сброс стандартных отступов */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Main Content */
.main {
    flex: 1;
    padding: 2rem 0;
}

.main h1 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.main p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.features {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.features ul {
    list-style: none;
    padding-left: 1rem;
}

.features li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.features li:before {
    content: "✓";
    color: #667eea;
    position: absolute;
    left: 0;
}

.docs-list {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.docs-list ul {
    list-style: none;
    padding-left: 1rem;
}

.docs-list li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.docs-list li:before {
    content: "📄";
    position: absolute;
    left: 0;
}

/* Footer Styles */
.footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    margin-top: auto;
    text-align: center; /* Центрируем весь текст в футере */
}

.footer-content {
    display: flex;
    flex-direction: column; /* Вертикальное расположение */
    align-items: center; /* Центрируем по горизонтали */
    gap: 2rem;
}

.footer-copyright {
    width: 100%; /* Занимает всю ширину */
}

.footer-copyright p {
    margin: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.footer-copyright p:first-child {
    font-weight: 500;
    font-size: 1.1rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links h3 {
    margin-bottom: 1rem;
    color: #667eea;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
    color: #667eea;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design для футера */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-copyright p {
        font-size: 0.95rem;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links a {
        display: block;
        padding: 0.75rem;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
     
    .main h1 {
        font-size: 2rem;
    }
}


/* Стили для страницы контактов */
.contacts-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
}

.contacts-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contacts-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-time {
    font-size: 0.9rem !important;
    color: #95a5a6 !important;
}

.contact-link {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    color: #667eea;
    text-decoration: none;
    padding: 0.5rem;
    border: 2px solid #667eea;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #667eea;
    color: white;
}

/* Форма обратной связи */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 4rem auto;
    max-width: 7000px;
}

.contact-form-container h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Карта */
.map-placeholder {
    margin: 4rem auto;
    max-width: 900px;
}

.map-placeholder h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-frame {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 соотношение */
    height: 0;
}

.map-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .contacts-title {
        font-size: 2.2rem;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-form-container {
        padding: 2rem;
        margin: 2rem 1rem;
    }
    
    .map-placeholder {
        margin: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .contacts-title {
        font-size: 1.8rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-form-container h2,
    .map-placeholder h2 {
        font-size: 1.5rem;
    }
}

/* Стили для страницы входа и регистрации */
.login-wrapper,
.register-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.login-container,
.register-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    padding: 3rem;
    width: 100%;
    max-width: 450px;
    border: 1px solid #e0e0e0;
}

.login-header,
.register-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-title,
.register-title {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.login-subtitle,
.register-subtitle {
    color: #7f8c8d;
    font-size: 1rem;
}

/* Формы */
.login-form,
.register-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.forgot-link {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Кнопки */
.login-btn,
.register-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.login-btn:hover,
.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-text {
    flex-grow: 1;
    text-align: center;
}

.btn-icon {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Разделитель */
.login-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
    color: #bdc3c7;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.login-divider span {
    position: relative;
    background: white;
    padding: 0 1rem;
    font-size: 0.9rem;
}

/* Социальные кнопки */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.social-btn {
    padding: 0.9rem;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 500;
}

.social-btn:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.google-btn {
    color: #DB4437;
}

.github-btn {
    color: #333;
}

.social-icon {
    font-weight: bold;
    font-size: 0.9rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
}

/* Футер форм */
.login-footer,
.register-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.login-footer a,
.register-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover,
.register-footer a {
    text-decoration: underline;
}

.demo-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: left;
}

.demo-info code {
    background: #e9ecef;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
}

/* Оповещения */
.alert {
    padding: 1rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert-error {
    background: #fee;
    border: 2px solid #fcc;
    color: #c00;
}

.alert-error ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.2rem;
}

.alert-error li {
    margin: 0.3rem 0;
}

/* Flash сообщения */
.flash-message {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 1rem 0;
    animation: slideDown 0.3s ease;
}

.message-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.message-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.message-close:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Меню пользователя */
.user-menu {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.user-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.user-btn i:first-child {
    font-size: 1.2rem;
}

.user-btn i:last-child {
    font-size: 0.8rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    color: #2c3e50;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0.5rem 0;
}

.logout-item {
    color: #e74c3c;
}

/* Адаптивность */
@media (max-width: 768px) {
    .login-container,
    .register-container {
        padding: 2rem;
        max-width: 100%;
    }
    
    .login-title,
    .register-title {
        font-size: 1.8rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .social-login {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .social-btn {
        flex: 1;
        min-width: 150px;
    }
    
    .nav-list {
        flex-wrap: wrap;
    }
    
    .user-menu {
        order: -1;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .dropdown-menu {
        right: auto;
        left: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .login-container,
    .register-container {
        padding: 1.5rem;
        box-shadow: none;
        border: 1px solid #e0e0e0;
    }
    
    .login-title,
    .register-title {
        font-size: 1.5rem;
    }
    
    .form-input {
        padding: 0.9rem;
    }
}

/* Стили для личного кабинета */
.lk-wrapper {
    padding: 2rem 0;
}

.lk-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.lk-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.user-greeting {
    position: relative;
    z-index: 1;
}

.lk-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lk-title i {
    font-size: 3rem;
}

.lk-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.user-status {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.status-badge {
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.status-premium {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.last-login {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* Карточки */
.card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0;
}

.edit-link {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.edit-link:hover {
    color: #764ba2;
    transform: translateX(3px);
}

.card-body {
    padding: 1.5rem;
}

/* Сетка ЛК */
.lk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .lk-grid {
        grid-template-columns: 1fr;
    }
}

/* Профиль */
.profile-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #7f8c8d;
    font-weight: 500;
    font-size: 0.95rem;
}

.info-value {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
}

.status-value {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

/* Статистика */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.stat-item:hover {
    background: #e9ecef;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-icon.balance {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.stat-icon.projects {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.stat-icon.tasks {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.stat-label {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

/* Быстрые действия */
.actions-section {
    margin: 3rem 0;
}

.actions-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .actions-grid {
        grid-template-columns: 1fr;
    }
}

.action-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.action-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.action-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.action-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.action-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin: 0;
}

/* Последние действия */
.activity-section {
    margin: 2rem 0;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.activity-item:hover {
    background: #e9ecef;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.activity-icon.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.activity-icon.info {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.activity-icon.warning {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.activity-icon.primary {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.activity-content {
    flex: 1;
}

.activity-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.activity-time {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Информационная панель */
.info-panel {
    margin: 2rem 0;
}

.info-alert {
    background: linear-gradient(135deg, #2196F3 0%, #21CBF3 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-alert i {
    font-size: 2rem;
    opacity: 0.9;
}

.info-alert div {
    flex: 1;
}

.info-alert strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-alert p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.alert-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.alert-btn:hover {
    background: white;
    color: #2196F3;
    transform: translateY(-2px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .lk-header {
        padding: 1.5rem;
        text-align: center;
    }
    
    .lk-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .user-status {
        justify-content: center;
    }
    
    .card-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .info-alert {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .stat-item {
        justify-content: center;
        text-align: center;
    }
}

