.download-app-panel {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    margin-bottom: 24px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-shadow: var(--shadow-md);
    animation: slideInDown 0.5s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.download-app-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}
.download-app-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.download-app-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.download-app-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}
.download-app-text p {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}
.download-app-btn {
    padding: 10px 20px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    flex-shrink: 0;
}
.download-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}
.download-app-btn:active {
    transform: translateY(0);
}
.download-app-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 12px;
    flex-shrink: 0;
}
.download-app-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}
.download-app-panel.hidden {
    display: none;
}
@media (max-width: 768px) {
    .download-app-panel {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px;
    }
    .download-app-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .download-app-info {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .download-app-text p {
        max-width: 100%;
    }
    .download-app-btn {
        width: 100%;
        justify-content: center;
    }
    .download-app-close {
        position: absolute;
        top: 12px;
        right: 12px;
        margin: 0;
        width: 28px;
        height: 28px;
    }
}
@media (max-width: 576px) {
    .download-app-panel {
        margin-bottom: 20px;
    }
    .download-app-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .download-app-text h3 {
        font-size: 15px;
    }
    .download-app-text p {
        font-size: 12px;
    }
    .download-app-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}
:root {
    --primary: #1a5f23;
    --primary-light: #2e7d32;
    --primary-lighter: #4caf50;
    --secondary: #81c784;
    --accent: #a5d6a7;
    --background: #f8faf9;
    --surface: #ffffff;
    --text-primary: #1e3a2a;
    --text-secondary: #5d7c6b;
    --text-tertiary: #8a9b93;
    --border: #e0e7e3;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
    --info: #2196f3;
    --shadow-sm: 0 2px 8px rgba(30, 58, 42, 0.06);
    --shadow-md: 0 4px 16px rgba(30, 58, 42, 0.08);
    --shadow-lg: 0 8px 32px rgba(30, 58, 42, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --sidebar-width: 260px;
    --bottom-nav-height: 64px;
}